Answer the following statements true (T) or false (F)
1. The statement
c = d;
checks to see if variables c and d have the same value
2. If x is a type double variable and n is of type int, the following assignment statements are
equivalent.
x = n;
x = (double)n;
3. If the value of x is 735, the statement
printf("%4d", x);
will display four blanks followed by 735.
4. The value of the expression
x + y * z * z
is always the same as the value of
x + ((y * z) * z)
5. A type char literal is enclosed in single quotes.
1. False
2. True
3. False
4. True
5. True
You might also like to view...
Which of these is the process that allows access of a specific resource to a specific account?
a. Authentication b. Authorization c. Logging in d. Identification
Which of the following network protocols is used to resolve FQDNs to IP addresses?
A. DNS B. FTP C. DHCP D. APIPA