How many bytes of memory are used in MS Visual C++ for
the datatype double ?

A. 1
B. 4
C. 8
D. 2


C

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1. If the initial value is greater than the terminating value in a For...Next loop, the statements within are still executed one time. 2. When one For...Next loop is contained within another, the name of the counter variable for each For...Next loop may be the same. 3. A For...Next loop cannot be nested inside a Do loop. 4. The following code segment is valid. ``` If (firstLetter >"A") Then For x As Integer = 1 to 100 lstBox.Items.Add(x) Next End If ``` 5. In a For...Next loop, the initial value should be greater than or equal to the terminating value if a negative step is used and the body of the loop is to be executed at least once.

Computer Science & Information Technology

Assume a class is to be derived from Jeopardy, e.g., JuniorJeopardy. The new class should inherit all data members. Which key word in the Jeopardy class would need to change to make this possible?

A. public to private B. protected to public C. private to public D. public to protected

Computer Science & Information Technology

The Office ________ is a temporary storage area maintained by Office that can hold up to 24 items

Fill in the blank(s) with correct word

Computer Science & Information Technology

If Pete, an administrator, is blocking port 22, which of the following protocols will this affect?

A. SNMP B. SSH C. SMTP D. FTP E. Telnet F. SCP

Computer Science & Information Technology