What is wrong with this code?
``` int Money4Me( int dollars )
{
int pennies, coins;
coins = dollars * 100;
}```
A. The function name is invalid.
B. There is no return type.
C. You can’t have math statements inside a function.
D. Nothing is wrong with it.
B
You might also like to view...
Answer the following statements true (T) or false (F)
1. You can only add values of the string data type to a List Box control. 2. If a List Box is empty, the Items.Count property equals ?1. 3. The while loop gets its name from the way it works: While a Boolean expression is true, do some task. 4. If you are writing a while loop that has only one statement in its body, you do not have enclose the statement inside curly braces. 5. By indenting the statements in the body of a loop, you visually set the loop body apart from the surrounding code.
You can ________ a grouped object in a different file format so it can be used in another program
Fill in the blank(s) with correct word
Which of the following is a protocol that does not depend on acknowledgement of receipt from the sender?
A. TCP B. HTTP C. UDP D. IP
When looking at a byte of information in binary, such as 11101100, what is the first bit on the left referred to as??
A. ?major significant bit (MSB) B. least significant bit (LSB) C. ?most significant bit (MSB) D. ?leading significant bit (LSB)