Solved

Consider the Code: Public Void SetName(string AccountName)

Question 7

Multiple Choice

Consider the code:
Public void SetName(string accountName)
{
Name = accountName;// store the account name
}
Which of the following statements is false


A) The first line of each method declaration is the method header.
B) The method's return type (which appears to the left of the method's name) specifies the type of data the method returns to its caller after performing its task.
C) The return type void indicates that when SetName completes its task, it does not return any information to its calling method.
D) A method requires one or more parameters that represent the data it needs to perform its task.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions