Q. . . . . . . . . is the process of putting two string together.

  • (A) concatenation
  • (B) grouping
  • (C) remove
  • (D) none of these
πŸ’¬ Discuss
βœ… Correct Answer: (A) concatenation

Q. Programmers use . . . . . . . . known as loops.

  • (A) Repetition structure
  • (B) Conditional structure
  • (C) Goto
  • (D) Unconditional structure
πŸ’¬ Discuss
βœ… Correct Answer: (A) Repetition structure

Q. A timer control is instantiated using . . . . . . . .

  • (A) Timer tool
  • (B) Control tool
  • (C) Stopwatch tool
  • (D) Timer Control Tool
πŸ’¬ Discuss
βœ… Correct Answer: (A) Timer tool

Q. . . . . . . . . method is used to sort an array in visual basic.

  • (A) Array.arrange()
  • (B) Array.arrayArrange()
  • (C) Array.Sort()
  • (D) Array.sortAscending()
πŸ’¬ Discuss
βœ… Correct Answer: (C) Array.Sort()

Q. In VB, array is divided into 3 types, the second type is . . . . . . . .

  • (A) single dimension
  • (B) double dimension
  • (C) poly dimension
  • (D) multi dimension
πŸ’¬ Discuss
βœ… Correct Answer: (B) double dimension

Q. Which of the following is used to convert a number from one data type to another in visual studio?

  • (A) Literal constant
  • (B) Object
  • (C) Convert class
  • (D) Parser
πŸ’¬ Discuss
βœ… Correct Answer: (C) Convert class

Q. . . . . . . . . is used to open the sequential file access for append.

  • (A) CreateText method
  • (B) AppendText method
  • (C) OpenText method
  • (D) WriteText method
πŸ’¬ Discuss
βœ… Correct Answer: (B) AppendText method

Q. You specify each item to display in a list box using the Items collection's. . . . . . . .

  • (A) Add method
  • (B) Subtract method
  • (C) Divide method
  • (D) Multiply method
πŸ’¬ Discuss
βœ… Correct Answer: (A) Add method

Q. The actions such as click, double-click, scrolling etc are . . . . . . . .

  • (A) Events
  • (B) Functions
  • (C) Procedures
  • (D) Actions
πŸ’¬ Discuss
βœ… Correct Answer: (A) Events

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

Code:
For intCount As Integer = 4 To 11 Step 2
MessageBox.Show("Hello")
Next intCount
  • (A) 10
  • (B) 11
  • (C) 12
  • (D) 13
πŸ’¬ Discuss
βœ… Correct Answer: (C) 12