Q. The name of the class file ends with . . . . . . . .

  • (A) .cla
  • (B) .class
  • (C) .vb
  • (D) None of the above
πŸ’¬ Discuss
βœ… Correct Answer: (B) .class

Q. The number of choices the user can select is controlled by the list box's . . . . . . . .

  • (A) SelectionModeProperty
  • (B) Select Property
  • (C) Check Property
  • (D) IsSelect Property
πŸ’¬ Discuss
βœ… Correct Answer: (A) SelectionModeProperty

Q. What will be in text, if Intid contains 3?

Code:
Select Case Intid
Case 1
  Text="Jannet"
Case 2 to 4
  Text="Mark"
Case 5, 7
  Text="Jerry"
Case Else
  Text="Sue"
End Select
  • (A) Jannet
  • (B) Mark
  • (C) Jerry
  • (D) Sue
πŸ’¬ Discuss
βœ… Correct Answer: (B) Mark

Q. . . . . . . . . is used to check the condition with step by step by in this also we the condition more than one .

  • (A) end if condition
  • (B) next
  • (C) else if ladder
  • (D) nested
πŸ’¬ Discuss
βœ… Correct Answer: (C) else if ladder

Q. The intSales array is declared as follows: Dim intSales() As Integer = {10000, 12000, 900, 500, 20000}. Which of the following If clauses determines whether the intSub variable contains a valid subscript for the array?

  • (A) If intSales(intSub) >= 0 AndAlso intSales(intSub) < 4 Then
  • (B) If intSales(intSub) >= 0 AndAlso intSales(intSub) <= 4 Then
  • (C) If intSub >= 0 AndAlso intSub < 4 Then
  • (D) If intSub >= 0 AndAlso intSub <= 4 Then
πŸ’¬ Discuss
βœ… Correct Answer: (B) If intSales(intSub) >= 0 AndAlso intSales(intSub) <= 4 Then

Q. A . . . . . . . . computer requests web pages from the server.

  • (A) Server
  • (B) Host
  • (C) Client
  • (D) Router
πŸ’¬ Discuss
βœ… Correct Answer: (C) Client

Q. A nested selection structure can be contained in . . . . . . . . of another selected structure.

  • (A) Only in the truth part
  • (B) Only in the false part
  • (C) Either in truth or in false part
  • (D) Both in truth and in false part
πŸ’¬ Discuss
βœ… Correct Answer: (D) Both in truth and in false part

Q. What is the correct syntax to designate a default button?

  • (A) Form.default=button1
  • (B) Form.defaultButton=button1
  • (C) Form.AcceptButton=button1
  • (D) Form.focused=button1
πŸ’¬ Discuss
βœ… Correct Answer: (C) Form.AcceptButton=button1

Q. The position of an item in a list box depends on which of the following property of the value stored in the list box's?

  • (A) Unsorted property
  • (B) Sorted property
  • (C) Descending Property
  • (D) Ascending property
πŸ’¬ Discuss
βœ… Correct Answer: (B) Sorted property

Q. . . . . . . . . displays the commands that are required to build an application. it is used to display the menus of the particular application

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