Q. When you group together related variables, the group is referred to as . . . . . . . .

  • (A) Array
  • (B) List
  • (C) Relation
  • (D) Variable group
πŸ’¬ Discuss
βœ… Correct Answer: (A) Array

Q. Which menu provides option for manipulating the control's on the form?

  • (A) Format menu
  • (B) Control Menu
  • (C) Manipulate Menu
  • (D) Property List
πŸ’¬ Discuss
βœ… Correct Answer: (A) Format menu

Q. What will be the content of num, after code execution; if before code execution num has value 200?

  • (A) 0
  • (B) 200
  • (C) 400
  • (D) 600
πŸ’¬ Discuss
βœ… Correct Answer: (B) 200
Explanation: If num<=100
num=num*2;
ElseIf num>500
Num=num*3;
Endif

Q. A . . . . . . . . is a file that contains program instructions called code.

  • (A) Source file
  • (B) Object file
  • (C) Executable file
  • (D) Program file
πŸ’¬ Discuss
βœ… Correct Answer: (A) Source file

Q. . . . . . . . . in the syntax gives the format you want to use.

  • (A) formatString
  • (B) format
  • (C) numericVariableName
  • (D) toString
πŸ’¬ Discuss
βœ… Correct Answer: (A) formatString

Q. . . . . . . . . variables of a class are not visible to applications that use the instance of that class.

  • (A) Public
  • (B) Private
  • (C) Default
  • (D) Static
πŸ’¬ Discuss
βœ… Correct Answer: (B) Private

Q. To delete . . . . . . . . you must delete the contents of the form's text property.

  • (A) Title bar
  • (B) Properties window
  • (C) Text in text box
  • (D) Text in level
πŸ’¬ Discuss
βœ… Correct Answer: (A) Title bar

Q. Which of the following is false?

  • (A) A function can return one or more values to the statement that invoked it
  • (B) A procedure can accept one or more items of data passed to it
  • (C) The parameter List in a procedure header is optional
  • (D) At times, a memory location inside the computer's internal memory may have more than one name
πŸ’¬ Discuss
βœ… Correct Answer: (A) A function can return one or more values to the statement that invoked it

Q. An object is the . . . . . . . . of the class.

  • (A) Instance
  • (B) Class
  • (C) Object
  • (D) User
πŸ’¬ Discuss
βœ… Correct Answer: (A) Instance

Q. The most common event associated with the command button is the Click event,

  • (A) TRUE
  • (B) Void
  • (C) ---
  • (D) ---
πŸ’¬ Discuss
βœ… Correct Answer: (A) TRUE