github

Made bySaurav Hathi

CSE - Practice Test -49

Q1:

Visual Basic responds to events using which of the following?
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q2:

When the user clicks a button, _________ is triggere
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q3:

What property of controls tells the order they receive the focus when the tab key is pressed during run time?
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q4:

Sizing Handles make it very easy to resize virtually any control when developing applications with Visual Basi When working in the Form Designer, how are these sizing handles displayed?
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q5:

The Properties window plays an important role in the development of Visual Basic applications. It is mainly used
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q6:

When creating a new application in Visual Basic, you are asked to supply a name for the program. If you do not specify a name, a default name is XXXXX XXXXX is this default name?
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q7:

Which of the properties in a control’s list of properties is used to give the control a meaningful name?
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q8:

An algorithm is defined as:
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q9:

A variable declared inside an event procedure is said to have local scope
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q10:

A variable declared outside of an event procedure is said to have class-level scope.

 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q11:

What is the correct statement when declaring and assigning the value of 100 to an Integer variable called numPeople
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q12:

Which of the following arithmetic operations has the highest level of precedence?
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q13:

What value will be assigned to the numeric variable x when the following statement is executed? x = 2 + 3 * 4
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q14:

Which of the following is a valid name for a variable?
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q15:

Keywords in Visual Basic are words that
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q16:

To continue a long statement on another line, use:
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q17:

What is the proper syntax when using a message dialog box?
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q18:

What will be the output of the following statement? txtBox.Text = FormatCurrency(1234.567)
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q19:

The following lines of code are correct. If age >= 13 And <20 Then txtOutput.Text = “You are a teenager.” End If
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q20:

Given that x = 7, y = 2, and z = 4, the following If block will display “TRUE”. If (x > y) Or (y > z) Then txtBox.Text = “TRUE” End If
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q21:

Asc(“A”) is 65. What is Asc(“C”)?
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q22:

Asc(“A”) is 65. What is displayed by txtBox.Text = Chr(65) &amp; “BC”?
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q23:

Which of the following expressions has as its value the words “Hello World? surrounded by quotation marks?
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q24:

Which of the following is true?
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options:
Q25:

Pseudocode is
 

Tags:
Kalsee_CSE
Section:
CSE Miscellaneous
Options: