Q. . . . . . . . . is used to separate related controls from other controls in the form.

  • (A) GroupBox
  • (B) GroupBox tool
  • (C) View Window
  • (D) Groups
πŸ’¬ Discuss
βœ… Correct Answer: (A) GroupBox

Q. In the following code, the while loop will execute if strId would have been . . . . . . . .
Do While strId Like "###*"

  • (A) 123ABC
  • (B) Fgh2
  • (C) Xzya
  • (D) Xyza
πŸ’¬ Discuss
βœ… Correct Answer: (A) 123ABC

Q. VB is the example of. . . . . . . .software .

  • (A) backhand
  • (B) front end
  • (C) o.s
  • (D) none of these.
πŸ’¬ Discuss
βœ… Correct Answer: (B) front end

Q. The . . . . . . . . allows us to browse through the various properties, events and methods that are made available to us

  • (A) properties window
  • (B) project explorer
  • (C) object
  • (D) object browser
πŸ’¬ Discuss
βœ… Correct Answer: (D) object browser

Q. What will be in Msg after the following code is evaluated?
If 3>6 AndAlso 7>4 then
Msg="Hi"
Else
Msg="Bye"
EndIf

  • (A) Hi
  • (B) Bye
  • (C) True
  • (D) False
πŸ’¬ Discuss
βœ… Correct Answer: (B) Bye

Q. The intSales array is declared as follows: Dim intSales() As Integer = {10000, 12000, 900, 500, 20000}. The statement intSales(3) = intSales(3) + 10 will .

  • (A) replace the 500 amount with 10
  • (B) replace the 500 amount with 510
  • (C) replace the 900 amount with 10
  • (D) replace the 900 amount with 910
πŸ’¬ Discuss
βœ… Correct Answer: (B) replace the 500 amount with 510

Q. The . . . . . . . . indicates the purpose of the menu element.

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

Q. . . . . . . . . structure can handle conditions with multiple outcomes in an easier manner

  • (A) select case control
  • (B) next
  • (C) if condition
  • (D) nested
πŸ’¬ Discuss
βœ… Correct Answer: (A) select case control

Q. The . . . . . . . . is used to show quick reference to the various elements of a project namely form, classes and modules

  • (A) mdi
  • (B) project explorer
  • (C) menu bar
  • (D) toolbox
πŸ’¬ Discuss
βœ… Correct Answer: (B) project explorer

Q. In . . . . . . . . , The size of array always remains the same-size doesn't change during the program execution.

  • (A) if ... then ..else
  • (B) do while
  • (C) dynamic array
  • (D) fixed array
πŸ’¬ Discuss
βœ… Correct Answer: (D) fixed array