Answer the following statements true (T) or false (F)
1. Once you have created an instance of a structure, you can access its fields using the dot operator (a period).
2. You can use the assignment operator (=) to assign one structure object to another.
3. Unlike other types of objects, you cannot pass a structure object as an argument to a method.
4. You cannot perform comparison operations directly on structure objects.
5. When you create a structure array, each element of the array is structure instance and the fields of each instance are initialized to either zero or null (for fields that are reference variables).
1. TRUE
2. TRUE
3. FALSE
4. FALSE
5. TRUE
You might also like to view...
The order of operations for __________ __________ is NOT first, then AND, then OR.
Fill in the blank(s) with correct word
Windows XP recognizes __________ different priority levels.
a. 8 b. 16 c. 32 d. 64
Complete the program below so that it computes the price of a piece of glass. Pieces of glass are usually priced based on the type of glass and the area of the piece, but there is a minimum charge of $2.00. For clear glass (glass type 1), the charge is $6.00 per square meter; for frosted glass (type 2), the price is $10.00 per square meter. For example, the cost of a 0.25-square-meter piece of clear glass is $2.00 since 0.25 * $6.00 is $1.50, an amount less than the minimum charge. The price of a 2.4-square-meter piece of frosted glass is $24.00 (2.4 * $10.00). You do not need to do error checking in the program.
```
#include
When analyzing a file created in Microsoft Word you see that the file was printed four days earlier than it was supposedly created. Which of the following circumstances could cause this, yet be perfectly innocent in nature?
a. The file was created on one machine, copied to a flash drive, then copied to this machine and finally printed. b. The file was opened remotely from another machine running Microsoft Windows and then saved back to its original location. c. The user used the Move function instead of the copy function to make a copy of the file on its new location. d. Nothing innocent can do this. Anything that changes the create date is malevolent in nature.