Q. MS-access or oracle is the example of . . . . . . . . software.

  • (A) back end
  • (B) front end
  • (C) mathematical
  • (D) none of these
πŸ’¬ Discuss
βœ… Correct Answer: (A) back end

Q. . . . . . . . . property removes the title bar elements.

  • (A) Control Box property
  • (B) Minimize property
  • (C) Maximize property
  • (D) Close property
πŸ’¬ Discuss
βœ… Correct Answer: (A) Control Box property

Q. . . . . . . . . argument in the Substring syntax specifies number of characters you want to access.

  • (A) numCharToAccess
  • (B) CharAccess
  • (C) numAccess
  • (D) ToAccess
πŸ’¬ Discuss
βœ… Correct Answer: (A) numCharToAccess

Q. What value is stored in the count variable when the loop ends?

Code:
For count As Integer = 5 to 9 Step 5
MessageBox.Show("Hi")
Next count
  • (A) 10
  • (B) 9
  • (C) 8
  • (D) 7
πŸ’¬ Discuss
βœ… Correct Answer: (A) 10

Q. Where you enter the event procedure's code?

  • (A) Event window
  • (B) Properties window
  • (C) Code Editor Window
  • (D) Action Window
πŸ’¬ Discuss
βœ… Correct Answer: (C) Code Editor Window

Q. The intSales array is declared as follows: Dim intSales(,) As Integer = {{1000, 1200, 900, 500, 2000}, {350, 600, 700, 800, 100}}. The intSales(1, 3) = intSales(1, 3) + 10 statement will . . . . . . . .

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

Q. When you place . . . . . . . . control into the form and run the program, you will be able to select different drives from your compute

  • (A) drive list box
  • (B) picture box
  • (C) list box
  • (D) dirlist box
πŸ’¬ Discuss
βœ… Correct Answer: (A) drive list box

Q. What will be the content of Text after the code is executed with id=2?

Code:
If id==1 Then
    Text="Janet";
Elseif id==2 OrElse id==3 Then
   Text="Mark"
ElseIF id==4 Then
    Text="Jerry"
Else
  Text="Sue ";
EndIf
  • (A) Janet
  • (B) Mark
  • (C) Jerry
  • (D) Sue
πŸ’¬ Discuss
βœ… Correct Answer: (B) Mark

Q. You create a Public property using a . . . . . . . . procedure.

  • (A) SetProp
  • (B) Property
  • (C) Access
  • (D) SetAccess
πŸ’¬ Discuss
βœ… Correct Answer: (B) Property

Q. What will be the output of the following Visual Basic code, If the intnumber variable is 90?

Code:
If intnumber<=100 Then
   Intnumber=intnumber*2;
Else
   Intnumber=intnumber*3;
EndIf
  • (A) 156
  • (B) 234
  • (C) 180
  • (D) 270
πŸ’¬ Discuss
βœ… Correct Answer: (C) 180