πŸ“Š .NET Programming
Q. The proper operator precedence, from first to last, is
  • (A) logical, comparison, and arithmetic.
  • (B) arithmetic, comparison, and logical.
  • (C) arithmetic, logical, and comparison.
  • (D) comparison, arithmetic, and logical.
πŸ’¬ Discuss
βœ… Correct Answer: (B) arithmetic, comparison, and logical.
πŸ“Š .NET Programming
Q. With A = False and B = True, which statement evaluates as True?
  • (A) A AND A
  • (B) A AND B
  • (C) B AND A
  • (D) B AND B
πŸ’¬ Discuss
βœ… Correct Answer: (D) B AND B
πŸ“Š .NET Programming
Q. In the For…Next statement the default value for the Step is
  • (A) -1
  • (B) 0
  • (C) 1
  • (D) 2
πŸ’¬ Discuss
βœ… Correct Answer: (C) 1
πŸ“Š .NET Programming
Q. Which is a type of procedure found in VB.Net?
  • (A) Event
  • (B) Function
  • (C) Sub
  • (D) All of the above
πŸ’¬ Discuss
βœ… Correct Answer: (D) All of the above
πŸ“Š .NET Programming
Q. A sub procedure is valuable because it:
  • (A) makes code easier to maintain.
  • (B) splits the logic to solve a problem into small, manageable units.
  • (C) limits the number of times the code can be accessed.
  • (D) Both a and b.
πŸ’¬ Discuss
βœ… Correct Answer: (D) Both a and b.
πŸ“Š .NET Programming
Q. Which method will return the number of elements in an array?
  • (A) Dimension
  • (B) Length
  • (C) Number
  • (D) Size
πŸ’¬ Discuss
βœ… Correct Answer: (B) Length
πŸ“Š .NET Programming
Q. What is required to reference an element in an array?
  • (A) Array name
  • (B) Index value of the element
  • (C) Element value
  • (D) Both a and b
πŸ’¬ Discuss
βœ… Correct Answer: (D) Both a and b
πŸ“Š .NET Programming
Q. Which method will arrange the elements of an array in alphabetical order?
  • (A) Arrange
  • (B) Assemble
  • (C) Order
  • (D) Sort
πŸ’¬ Discuss
βœ… Correct Answer: (D) Sort
πŸ“Š .NET Programming
Q. Which dialog control allows the user to zoom in on a document?
  • (A) PrintDialog
  • (B) PrintPreview
  • (C) PageSetupDialog
  • (D) Both a and b
πŸ’¬ Discuss
βœ… Correct Answer: (B) PrintPreview

Jump to