Q. . . . . . . . . is a numeric variable used for counting something.

  • (A) Accumulator
  • (B) Counter
  • (C) Positive
  • (D) Negative
πŸ’¬ Discuss
βœ… Correct Answer: (B) Counter

Q. Radio button in an interface is labeled using . . . . . . . . property.

  • (A) Text
  • (B) Caption
  • (C) Name
  • (D) Label
πŸ’¬ Discuss
βœ… Correct Answer: (A) Text

Q. . . . . . . . . is a counter-controlled loop.

  • (A) For..next loop
  • (B) Do..while loop
  • (C) While loop
  • (D) If statement
πŸ’¬ Discuss
βœ… Correct Answer: (A) For..next loop

Q. . . . . . . . . is used to converting a string to uppercase.

  • (A) toUpper
  • (B) toLower
  • (C) toUpperCase
  • (D) toLowerCase
πŸ’¬ Discuss
βœ… Correct Answer: (A) toUpper

Q. . . . . . . . . are the characteristics that describe the object.

  • (A) Classes
  • (B) Attributes
  • (C) Objects
  • (D) Instances
πŸ’¬ Discuss
βœ… Correct Answer: (B) Attributes

Q. The . . . . . . . . keyword is necessary only in a dual-alternative selection structure.

  • (A) Alternative
  • (B) Next
  • (C) Dual
  • (D) Else
πŸ’¬ Discuss
βœ… Correct Answer: (D) Else

Q. The . . . . . . . . keyword tells the computer to pass the variable's address rather than its contents.

  • (A) ByRef
  • (B) ByVal
  • (C) ByAdd
  • (D) ByPoint
πŸ’¬ Discuss
βœ… Correct Answer: (A) ByRef

Q. Vb allows programmers to define a data type before start the program it is called . . . . . . . .

  • (A) explicit
  • (B) implicit
  • (C) dim
  • (D) none of these
πŸ’¬ Discuss
βœ… Correct Answer: (A) explicit

Q. A . . . . . . . . is an item of data whose values do not change while the application is running.

  • (A) Literal constant
  • (B) Variable
  • (C) Auto variable
  • (D) Extern variable
πŸ’¬ Discuss
βœ… Correct Answer: (A) Literal constant

Q. Which of the following statements prevents a form from being closed?

  • (A) e.Cancel = False
  • (B) e.Cancel = True
  • (C) e.Close = False
  • (D) sender.Close = False
πŸ’¬ Discuss
βœ… Correct Answer: (B) e.Cancel = True