?In the code below, what is the scope of the num1 variable?
?
int num1;
int main()
{
   cin >> num1;
   cout << num1 *.10;
?
  ... more code here ...
}

A. the program lifetime
B. ?local
C. ?until the cout function finishes
D. ?global


Answer: B

Computer Science & Information Technology

You might also like to view...

Once a client has access to a resource, it uses ___________ to exchange data and control information with the resource.

A) ?resource-specific interfaces B) ?eCos C) ?open sources D) ?resource requests

Computer Science & Information Technology

In C#, Java, and Objective-C, String objects are immutable, meaning that after strings are created, they can't be changed. Therefore, the following code is illegal:String str1 = "abc";str1 = str1 + "123";

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

Computer Science & Information Technology

To organize your diagnostic process when tracing cabling, use these very simple aids to keep track of your progress on the patch panel. Hint: You can purchase these at any office supply store.

A. multimeter B. labels C. voltage event recorder D. Fox and Hound

Computer Science & Information Technology

If an assigned task is ____________________, then the task belongs to that person to complete.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology