Home / Faculty / .NET Programming / 1

.NET Programming

Admin - Vinay Kumar
Created on - 22 Apr 23

.

Home

MCQs

Notes

Q. Which does the solution explorer not display?

(A) Form Properties
(B) Reference Folder
(C) Form File
(D) Assemble File
Share This:  

Login to Share this question in Groups.

Q. The Button control can be activated

(A) programmatically through the click event.
(B) by clicking the button with the mouse.
(C) with the form’s DefaultButton property.
(D) Both a and b.
Share This:  

Login to Share this question in Groups.

Q. Which sequence of char data types is listed from lowest to highest?

(A) a, A, z, Z
(B) a, z, A, Z
(C) A, a, Z, z
(D) A, Z, a, z
Share This:  

Login to Share this question in Groups.

Q. The Boolean data type

(A) is unsigned.
(B) has two states.
(C) is displayed by the program as yes or no.
(D) Both a and b.
Share This:  

Login to Share this question in Groups.

Q. VB.Net identifiers

(A) are case sensitive.
(B) can begin with an underscore.
(C) can begin with a number.
(D) Both a and b.
Share This:  

Login to Share this question in Groups.

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.
Share This:  

Login to Share this question in Groups.

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
Share This:  

Login to Share this question in Groups.

Q. Which operator is evaluated first?

(A) NOT
(B) AND
(C) XOR
(D) OR
Share This:  

Login to Share this question in Groups.

Q. In the For…Next statement the default value for the Step is

(A) -1
(B) 0
(C) 1
(D) 2
Share This:  

Login to Share this question in Groups.

Q. Which is a type of procedure found in VB.Net?

(A) Event
(B) Function
(C) Sub
(D) All of the above.
Share This:  

Login to Share this question in Groups.