Home > BCA > Quizzes > Dot Net Architecture
Dot Net Architecture
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 23% Most missed: “Which of the following is NOT a reason for using procedures?”
Dot Net Architecture
Time left 00:00
25 Questions

1. Which of the following arithmetic operations has the highest level of precedence?
2. Suppose a variable is passed by value to a parameter of a Sub procedure, and the parameter has its value changed inside the Sub procedure. What will the value of the variable be after the Sub procedure has executed?
3. Which Case clause will be true whenever the value of the selector in a Select Case block is greater than or equal to 7?
4. Which one of the following is true about arguments and parameters?
5. The arguments appearing in a Call statement must match the parameters in the appropriate Sub or Function header in all but one of the following ways. Which one?
6. What property of controls tells the order they receive the focus when the tab key is pressed during run time?
7. Suppose that the selector in a Select Case block is the string variable myVar. Which of the following is NOT a valid Case clause?
8. Which of the following expressions has as its value the words
9. Which of the following is true?
10. Keywords in Visual Basic are words that
11. What type of items are valid for use in the value list of a Case clause?
12. Sizing Handles make it very easy to resize virtually any control when developing applications with Visual Basic. When working in the Form Designer, how are these sizing handles displayed?
13. What value will be assigned to the numeric variable x when the following statement is executed? x = 2 + 3 * 4
14. Asc(
15. Suppose a variable is passed by reference to a parameter of a Sub procedure, and the parameter has its value changed inside the Sub procedure. What will the value of the variable be after the Sub procedure has executed?
16. Variables appearing in the header of a Function procedure are called ____________.
17. Constructs in which an If block is contained inside another If block are called:
18. Which value for x would make the following condition true: Not (x >= 5)
19. Visual Basic responds to events using which of the following?
20. What will be the output of the following statement? txtBox.Text = FormatCurrency(1234.567)
21. What is the proper syntax when using a message dialog box?
22. Variables declared inside a procedure are said to have ________________.
23. Different items appearing in the same value list of a Select Case block must be separated by a ____________.
24. Each individual variable in the list student(0), student(1), student(2) is known as a(n)
25. The three main logical operators are ________, _________, and ________.