100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.6 TrustPilot
logo-home
Other

COS1512 Assignment 1 memo 2024

Rating
-
Sold
6
Pages
7
Uploaded on
19-04-2024
Written in
2023/2024

COS1512 Assignment 1 memo 2024

Institution
Course









Whoops! We can’t load your doc right now. Try again or contact support.

Written for

Institution
Course

Document information

Uploaded on
April 19, 2024
Number of pages
7
Written in
2023/2024
Type
Other
Person
Unknown

Subjects

Content preview

COS1512-24-Y  Welcome Message  Assessment 1

QUIZ




Started on Friday, 19 April 2024, 6:53 PM
State Finished
Completed on Friday, 19 April 2024, 7:56 PM
Time taken 1 hour 3 mins
Grade 7.00 out of 10.00 (70%)


Question 1

Incorrect

Mark 0.00 out of 1.00




The assert statement

Select one:
tests conditions or assumptions that should not occur in a program to prevent runtime errors
will display an error message when the condition in the statement is not true and abort the program. 

All of the other options are valid.

can be turned on and off in a program



The assert statement tests conditions or assumptions that should not occur in a program to prevent runtime errors using a
boolean expression. If the result of the boolean expression is not true, the program will abort. The assert statement can be
turned on and off in a program using the #define NDEBUG directive.

The assert statement tests conditions or assumptions that should not occur in a program to prevent runtime errors using a
boolean expression. If the result of the boolean expression is not true, the program will abort. The assert statement can be
turned on and off in a program using the #define NDEBUG directive.

The correct answer is: All of the other options are valid.

, Question 2

Incorrect

Mark 0.00 out of 1.00




Base your answer to this question on the highlighted directives at the beginning of the program.
The program below will abort and display that the assertion has failed
#define NDEBUG
#include <cassert >

int main()
{
int x = 7;
/* Some big code in between and let's say x
is accidentally changed to 9 */
x = 9;
// Programmer assumes x to be 7 in rest of the code
assert(x==7);
/* Rest of the code */
return 0;
}



Select one:
True 

False



The assert statement tests conditions or assumptions that should not occur in a program to prevent runtime errors using a
boolean expression. If the result of the boolean expression is not true, the program will abort. The assert statement can be
turned on and off in a program using the #define NDEBUG directive. In this program assert is turned off (NDEBUG is on) and
although the assertion will be false, the program will not abort.

The correct answer is 'False'.




Question 3
Correct

Mark 1.00 out of 1.00




To ensure that a test score score is valid, i.e. >= 0 and <= 100, we can use the following statement


Select one:
assert(!(0 <= score || score <= 100));
assert(score >= 0 && score <= 100); 
assert(score >= 0 || score <= 100);
assert(!(0 <= score && score <= 100));



The assert statement tests conditions or assumptions that should not occur in a program to prevent runtime errors using a
boolean expression. If the result of the boolean expression is not true, the program will abort.
See Savitch Chapter 5 section 5.5 General Debugging Techniques, the assert macro

The assert statement tests conditions or assumptions that should not occur in a program to prevent runtime errors using a
boolean expression. If the result of the boolean expression is not true, the program will abort.

See Savitch Chapter 5 section 5.5 General Debugging Techniques, the assert macro

The correct answer is:
assert(score >= 0 && score <= 100);

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
foxNotes Acsess Business Academy
Follow You need to be logged in order to follow users or courses
Sold
112
Member since
2 year
Number of followers
63
Documents
35
Last sold
3 months ago
saveNotes

5.0

5 reviews

5
5
4
0
3
0
2
0
1
0

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Frequently asked questions