Q. The . . . . . . . . operator is used to divide two integers.

  • (A) Addition
  • (B) Red
  • (C) Subtraction
  • (D) Integer division
πŸ’¬ Discuss
βœ… Correct Answer: (D) Integer division

Q. If the txtPrice control contains the value 75, what value will the variable=Decimal.TryParse (txtPrice.Text,decPrice) method return?

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

Q. When a checkbox's . . . . . . . . property is set to true, it can both accept and display multiple lines of text.

  • (A) Multiline Property
  • (B) ReadOnly Property
  • (C) ReadWrite Property
  • (D) ScrollBars Property
πŸ’¬ Discuss
βœ… Correct Answer: (A) Multiline Property

Q. . . . . . . . . uses short phrases to describe the steps the procedure must take.

  • (A) Pseudocode
  • (B) Source code
  • (C) Flowchart
  • (D) Algorithm
πŸ’¬ Discuss
βœ… Correct Answer: (A) Pseudocode

Q. the main property of check box is . . . . . . . ..

  • (A) list
  • (B) check
  • (C) value
  • (D) text
πŸ’¬ Discuss
βœ… Correct Answer: (B) check

Q. . . . . . . . . statement is the last statement in the function.

  • (A) Footer
  • (B) Header
  • (C) Return
  • (D) Call
πŸ’¬ Discuss
βœ… Correct Answer: (C) Return

Q. When an expression contains more than one operator with same priority, then they are evaluated according their . . . . . . . .

  • (A) Precedence
  • (B) Associativity
  • (C) Binary
  • (D) Unary
πŸ’¬ Discuss
βœ… Correct Answer: (B) Associativity

Q. What happens when a procedure containing the following statements ends?

Code:
Dim decSales As Decimal=12.2
Static decTotal As Decimal=13.5
  • (A) Both values lose their values
  • (B) Dim variable loses its value
  • (C) Static variable loses its value
  • (D) Both variables retain their values
πŸ’¬ Discuss
βœ… Correct Answer: (B) Dim variable loses its value

Q. The condition must be a . . . . . . . . expression.

  • (A) Integer
  • (B) Double
  • (C) Boolean
  • (D) Short
πŸ’¬ Discuss
βœ… Correct Answer: (C) Boolean

Q. It is inappropriate to assign access keys to . . . . . . . .

  • (A) Text boxes
  • (B) Label controls
  • (C) Timer
  • (D) Button
πŸ’¬ Discuss
βœ… Correct Answer: (B) Label controls