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

1. A variable declared inside a Do loop cannot be referred to outside of the loop.
2. The following are equivalent While and Until statements.
```
While (num > 2) And (num < 5)
Until (num <= 2) Or (num >= 5)
```
3. A Do…Loop Until block is always executed at least once.
4. A counter variable is normally incremented or decremented by


1. T
2. T
3. T
4. T

Computer Science & Information Technology

You might also like to view...

Where can you not declare a variable in a C++ program?

a) Within the parameter list of a function definition b) Within the block of a void function. c) Within the argument list of a function call d) Within a block nested within another block e) Within the block of a value returning function.

Computer Science & Information Technology

CASE STUDY D-1Jim has created a new flyer advertise a concert that his band is giving on Friday night. He created a logo in Illustrator and would now like to include that logo on his flyer. Jim would like to edit the logo once he has included it in InDesign. To do this, he must ____ it to bring the logo in from Illustrator.

A. place B. insert C. copy and paste D. none of the above

Computer Science & Information Technology

When you set a baseline for the master project, each task inserted at the master project level, as well as every summary task that represents a(n) subproject, is updated with the baseline field values.

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

Computer Science & Information Technology

Which protocol is used to remotely access the whole desktop of another computer?

A. Telnet B. Secure Shell C. Virtual Network Computing (VNC) D. HyperText Transfer Protocol (HTTP)

Computer Science & Information Technology