Thursday, May 21, 2020

MS VB.net






Visual Basic .Net


Multiple Choice Questions Set  1 Visual Basic .Net  

 1.       Which language is not a true object-oriented programming language?
            a.)  VB.NET
b.)  VB 6
c.)  C++
d.)  C#
e.)  Java
Answer:  b                                                                   Level: Easy
 2.       A GUI:
            a.)  uses buttons, menus, and icons.
b.)  should be easy for a user to manipulate.
c.)  stands for Graphic Use Interaction.
d.)  Both a and b.
e.)  All of the above.
Answer:   d                                                                  Level: Moderate
 3.       Visual Studio .NET provides which feature:
            a.)  debugging.
b.)  application deployment.
c.)  syntax checking.
d.)  Both a and b.
e.)  All of the above.
Answer:  e                                                                   Level: Easy

 4.       What does IDE stand for?                                
            a.)  Integrated Development Environment
b.)  Integrated Design Environment
c.)  Interior Development Environment
d.)  Interior Design Environment
e.)  None of the above.
Answer:  a                                                                   Level: Moderate
 5.       Which type of project can a developer choose in the New Project dialog box?
            a.)  Visual Basic Projects
b.)  Visual C# Projects
c.)  Visual C++ Projects
d.)  Both a and b.
e.)  All of the above.
Answer:  e                                                                   Level: Easy
 6.       Which is not a main component of the Visual Studio IDE?
            a.)  Solution Explorer
b.)  Tool Box
c.)  Start Menu
d.)  Designer Window
e.)  Properties Window
Answer:  c                                                                   Level: Easy
 7.       Which does the solution explorer not display?
            a.)  Form Properties
b.)  Reference Folder
c.)  Form File
d.)  Assemble File
e.)  All are part of the solution explorer.
Answer:  a                                                                   Level: Easy
 8.       Which is true about the name and text property of a control?
            a.)  They are the same when the control is first created.
b.)  The text property changes to match any changes in the name property.
c.)  The name property changes to match any changes in the text property.
d.)  They are never the same unless the programmer makes it that way.
e.)  They are not allowed to be the same and an error will occur if they are.
Answer:  a                                                                   Level: Hard
 9.       For which task does the IDE provide multiple ways to accomplish the task?                                
            a.)  Putting a control on the form
b.)  Running the program
c.)  Activating the property window for a control
d.)  Both a and b.
e.)  All of the above.
Answer:  e                                                                   Level: Moderate
 10.       Which are the standard prefixes for the Button and Combo box controls respectively?
            a.)  btn and chb
b.)  btn and cbo
c.)  bto and chb
d.)  bto and cbo
e.)  cmd and cbo
Answer:  b                                                                   Level: Moderate
11.       Which are the standard prefixes for the text box and label controls respectively?
            a.)  tex and lbl
b.)  tex and lab
c.)  txb and lbl
d.)  txb and lab
e.)  txt and lab
Answer:  c                                                                   Level: Moderate
12.       Which task is accomplished in the Code editor?
            a.)  Adding forms to the project
b.)  Adding controls to the form
c.)  Adding event procedures to the form
d.)  Both a and b.
e.)  All of the above.
Answer:  c                                                                   Level: Moderate
13.       Which is not a feature of a GUI that makes learning a program easy for users?
            a.)  Online help
b.)  WYSIWYG formatting
c.)  Dialog boxes
d.)  Detailed key strokes and commands
e.)  Icons
Answer:  d                                                                   Level: Easy
14.       An object is composed of:                                
            a.)  properties.
b.)  methods.
c.)  events.
d.)  Both a and b.
e.)  All of the above.
Answer:   e                                                                  Level: Easy
15.       Which statement about objects is true?
            a.)  One object is used to create one class.
b.)  One class is used to create one object.
c.)  One object can create many classes.
d.)  One class can create many objects.
e.)  There is no relationship between objects and classes.
Answer:  d                                                                   Level: Moderate
16.       Which is not true about forms and controls in Visual Basic?
            a.)  They are pre-built.
b.)  They are graphical objects.
c.)  New versions of the classes must be created with each project.
d.)  Buttons can be created with the drag and drop method.
e.)  All of the above are true.
Answer:  c                                                                   Level: Moderate
17.       Which is an example of Visual Basic Objects?
            a.)  Control objects
b.)  ASP.NET
c.)  ADO.NET
d.)  Both a and b.
e.)  All of the above.
Answer:  e                                                                   Level: Moderate
18.       The .Net class library:
            a.)  contains over 25,000 classes.
b.)  uses namespaces to manage all of the classes.
c.)  has the System.Form namespace for classes used in Windows-based application.
d.)  Both a and b.
e.)  All of the above.
Answer:  d                                                                   Level: Hard
19.       Which is not a property of the Common control class?
            a.)  Show
b.)  BackColor
c.)  Font
d.)  ForeColor
e.)  Name
Answer: a                                                                    Level: Easy
20.       Which property determines whether a control is displayed to the user?
            a.)  Hide
b.)  Show
c.)  Visible
d.)  Enabled
e.)  Cursor
Answer:  c                                                                   Level: Hard
21.       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.
e.)  All of the above.
Answer:  d                                                                   Level: Moderate
22.       The CancelButton property belongs to which object?
            a.)  Button
b.)  Form
c.)  Label
d.)  TextBox
e.)  Timer
Answer: b                                                                    Level: Moderate
23.       A click event procedure stud for the label control can be created by:
            a.)  selecting the object and event from the code editor window’s drop-down boxes.
b.)  typing the code in the code editor window.
c.)  by double clicking the control.
d.)  Both a and b.
e.)  All of the above.
Answer:  e                                                                   Level: Moderate
24.       In event-driven programming an event is generated by:                                
            a.)  the system.
b.)  a user’s action.
c.)  the program itself.
d.)  Both a and b.
e.)  All of the above.
Answer:  e                                                                   Level: Moderate
25.       Which is not a common control event?
            a.)  Click
b.)  SingleClick
c.)  DoubleClick
d.)  MouseMove
e.)  MouseDown
 
Answer:  b                                                                   Level: Easy
26.       The Tick event is found only in which object?
a.)  Form
b.)  Button
c.)  TextBox
d.)  Label
e.)  Timer
 
Answer:  e                                                                   Level: Easy
27.       The Activated event is found only in which object?
a.)  Form
b.)  Button
c.)  TextBox
d.)  Label
e.)  Timer
 
Answer:  a                                                                   Level: Easy
28.       The Rnd statement will generate a(n):
a.)  decimal value between 0.01 and 1.00.
b.)  integer value between 0.01 and 1.00.
c.)  decimal value between 0.0 and 1.0.
d.)  integer value between 0.0 and 1.0.
e.)  decimal value between 0.0 and up to 1.0, but not including 1.0.
 
Answer:  e                                                                   Level: Moderate
29.       The analysis phase of software development involves:
a.)  collecting the requirements about what the program will accomplish.
b.)  creating a detailed plan on how the program will accomplish the requirements.
c.)  writing the software with a program such as VB.NET.
d.)  Both a and b.
e.)  All of the above.
 
Answer:  a                                                                   Level: Moderate
30.       Which phase of project development typically costs the most?
a.)  Analysis
b.)  Design
c.)  Implementation
d.)  Maintenance
e.)  Documentation
Answer:  d                                                                   Level: Easy


31.       Which Do…Loop statement should be used to process test scores where a test score over 100 is a signal to stop the processing?
            a.)  Do While Score > 100
b.)  Do Until Score > 100
c.)  Loop While Score > 100
d.)  Loop Until Score > 100
e.)  All of the above are valid for this situation.
Answer:  b                                                                   Level: Hard
32.       In the For…Next statement the default value for the Step is:
            a.)  -1
b.)  0
c.)  1
d.)  2
e.)  There is no default for the step value.
Answer:  c                                                                   Level: Easy
33.       The For…Next Loop is used when:
            a.)  a choice is made based on a Boolean condition.
b.)  a block of statements is executed an unknown number of times.
c.)  a block of statements is executed a known number of times.
d.)  Both a and b.
e.)  All of the above.
Answer:  c                                                                   Level: Easy
34.       The advantage of For…Next loops over Do…Loops is that they are:
            a.)  easier to read and maintain.
b.)  less prone to being infinite loops.
c.)  good for working with arrays.
d.)  Both a and b.
e.)  All of the above.
Answer:  e                                                                   Level: Moderate
35.       Which is not a valid Exit statement?                                
            a.)  Exit Do
b.)  Exit For
c.)  Exit Form
d.)  Exit Select
e.)  Exit Sub
Answer:  c                                                                   Level: Moderate
36.       A sentinel value:
            a.)  is used to prevent infinite loops.
b.)  must be a negative value.
c.)  signals the end of a list of data.
d.)  Both a and b.
e.)  All of the above.
Answer:  c                                                                   Level: Easy
37.       Which function should be used to validate that input is not a string before performing arithmetic operations?
            a.)  IsArithmetic
b.)  IsNotString
c.)  IsNumeric
d.)  IsString
e.)  IsValue
Answer:  c                                                                   Level: Moderate
38.       Which is not a type of error programmers look for?
            a.)  Logic
b.)  Runtime
c.)  Superficial
d.)  Syntax
e.)  All are errors programmers look for.
Answer:  c                                                                   Level: Easy
39.       Which action will raise an exception?
            a.)  Dividing by zero.
b.)  Assigning the string “Hi” to an integer variable.
c.)  Accessing an empty CD drive.
d.)  Both a and b.
e.)  All of the above.
Answer:  e                                                                   Level: Easy
40.       An Exception is another name for a:                                 
            a.)  compile error.
b.)  logic error.
c.)  runtime error.
d.)  superficial error.
e.)  syntax error.
Answer:  c                                                                   Level: Moderate
41.       What is the most number of states a CheckBox can have?
            a.)  0
b.)  1
c.)  2
d.)  3
e.)  4
Answer: d                                                                    Level: Moderate
42.       What is the standard prefix for the name of a CheckBox?
            a.)  chb
b.)  chk
c.)  ckb
d.)  ckx
e.)  cbx
Answer: b                                                                    Level: Easy
43.       A CheckBox can also appear as a(n):
            a.)  button.
b.)  RadioButton.
c.)  ScrollBar.
d.)  Both a and b.
e.)  All of the above.
Answer:  a                                                                   Level: Easy
                                                                                       
44.       What is the standard prefix for the name of a RadioButton?
            a.)  rad
b.)  rab
c.)  rdo
d.)  rdb
e.)  rbt
Answer: a                                                                    Level: Easy
45       How many RadioButtons in a Group Box can be selected at the same time?                                 
            a.)  0
b.)  1
c.)  2
d.)  3
e.)  4
Answer:  b                                                                   Level: Easy
46.       Which event is activated when a RadioButton is selected?
            a.)  Checked
b.)  CheckedChanged
c.)  Selected
d.)  SelectedChanged
e.)  SelectionChanged
Answer:  b                                                                   Level: Moderate

Multiple Choice Questions Set  2 Visual Basic .Net  
Multiple Choice Questions Set  2
 1.       Which is not an integer data type?
            a.)  Single
b.)  Byte
c.)  Short
d.)  Integer
e.)  Long
Answer:  a                                                                   Level: Moderate
 2.       Which is a numeric data type?
            a.)  Floating point
b.)  Integer
c.)  Boolean
d.)  Both a and b.
e.)  All of the above.
Answer:  d                                                                   Level: Moderate
 3.       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
e.)  z, a, Z, A
Answer:  d                                                                   Level: Moderate
 4.       The Date data type does not hold which type of information.
            a.)  Seconds
b.)  Hours
c.)  Days
d.)  Months
e.)  Quarters
Answer:  e                                                                   Level: Easy
 5.       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.
e.)  All of the above.
Answer:  d                                                                   Level: Moderate
 6.       Which is a valid statement for declaring a variable?
            a.)  Const Form As Integer
b.)  Const myForm As Integer
c.)  Dim Form As Integer
d.)  Dim myForm As Integer
e.)  All of the above.
Answer:  d                                                                   Level: Moderate
 7.       VB.Net identifiers:
            a.)  are case sensitive.
b.)  can begin with an underscore.
c.)  can begin with a number.
d.)  Both a and b.
e.)  All of the above.
Answer: b                                                                    Level: Moderate
 8.       The name of a constant:
            a.)  must both begin with a letter and be all upper case.
b.)  does not have to begin with a letter but must be all upper case.
c.)  must begin with a letter but can be upper or lower case.
d.)  does not have to begin with a letter and be either upper or lower case.
e.)  None of the above.
Answer:  d                                                                   Level: Moderate
 9.       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.
e.)  logical, arithmetic, comparison.
Answer:  b                                                                   Level: Moderate
10.       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
e.)  None are true.
Answer:  d                                                                   Level: Easy
11.       With A = False and B = True, which statement evaluates as False?
            a.)  A OR A
b.)  A OR B
c.)  B OR A
d.)  B OR B
e.)  None are true.
Answer:  a                                                                   Level: Easy
12.       Which operator is evaluated first?
            a.)  NOT
b.)  AND
c.)  XOR
d.)  OR
e.)  They are always evaluated left-to-right.
Answer:  a                                                                   Level: Moderate
13.       The left side of an assignment statement will hold:
            a.)  a variable.
b.)  an object property.
c.)  an expression.
d.)  Both a and b.
e.)  All of the above.
Answer:  d                                                                   Level: Easy
14.       The right side of an assignment statement will hold:
            a.)  a variable.
b.)  an object property.
c.)  an expression.
d.)  Both a and b.
e.)  All of the above.
Answer:  c                                                                   Level: Easy
15.       Which function will return the monthly payments of a loan?
            a.)  Pay (Rate, PV, Nper)
b.)  Pmt (Rate, Nper, PV)
c.)  FV (Rate, Nper, Pmt)
d.)  FV (Rate, Nper, PV)
e.)  None of the above.
Answer:  b                                                                   Level: Easy
16.       Which function returns the numbers represented in the string “$56.7”?
            a.)  Abs
b.)  CDbl
c.)  Int
d.)  Rnd
e.)  Val
Answer:  b                                                                   Level: Moderate
17.       What will the function Val ($165.30) return?
            a.)  0
b.)  165
c.)  165.30
d.)  $165.30
e.)  An error
Answer:  a                                                                   Level: Easy
18.       Which function displays a pop-up window?
            a.)  MsgBox
b.)  InputBox
c.)  TextBox
d.)  Both a and b.
e.)  All of the above.
Answer:  d                                                                   Level: Easy
19.       Which is true about the prompt argument?                                
            a.)  It can be made of multiple values concatenated into one string.
b.)  It can include the vbCrLf constant.
c.)  It can include the ampersand symbol to concatenate strings.
d.)  Both a and b.
e.)  All of the above.
Answer:  e                                                                   Level: Easy
20.       In order to process a number typed in a TextBox the programmer must:
            a.)  use the Val function to convert the Text value.
b.)  use the CDbl function to convert the Text value.
c.)  use the IsNumeric function to convert the Text value.
d.)  Both a and b.
e.)  All of the above.
Answer:  d                                                                   Level: Moderate
21.       Which TextBox method does not use the clipboard?
            a.)  Clear
b.)  Copy
c.)  Cut
d.)  Paste
e.)  All of these methods use the clipboard.
Answer:  a                                                                   Level: Easy
22.       Which TextBox property should always be changed first?
            a.)  AcceptsReturn
b.)  BorderStyle
c.)  Font
d.)  Name
e.)  Text
Answer: d                                                                    Level: Moderate
23.       Which is not a valid value for the ListBox SectionMode Property?
            a.)  None
b.)  One
c.)  MultiSimple
d.)  MultiExtended
e.)  All of the above.
Answer:  e                                                                   Level: Moderate
24.       Setting the SelectedIndex property of a ListBox to -1 will:                                 
            a.)  cause an error.
b.)  cannot be done.
c.)  de-select any selected item.
d.)  Both a and b.
e.)  All of the above.
Answer:  c                                                                   Level: Hard
25.       Which method of a ListBox will remove just one item at a time?
            a.)  Items.RemoveAt
b.)  Item.RemoveAt
c.)  Items.ClearAt
d.)  Item.ClearAt
e.)  Items.Clear
 
Answer:  a                                                                   Level: Moderate
26.       The Items property of a ComboBox:
            a.)  is a collection of items.
b.)  is the same as the Items property of a ListBox.
c.)  contains methods and properties.
d.)  Both a and b.
e.)  All of the above.
Answer:  e                                                                   Level: Moderate
27.       Which value for the ComboBox DropDownStyle property allows a user to type in data?
            a.)  DropDown
b.)  DropDownSimple
c.)  DropDownList
d.)  Both a and b.
e.)  All of the above.
Answer:  a                                                                   Level: Moderate
28.       Which two controls combined to form the ComboBox control?
            a.)  ListBox and TextBox
b.)  ListBox and InputBox
c.)  ListBox and MsgBox
d.)  Label and TextBox
e.)  Label and InputBox


Answer:  a                                                                   Level: Easy

No comments:

Post a Comment

Tally

  अकाउंटिंग आधुनिक व्यवसाय का आकार इतना विस्तृत हो गया है कि इसमें सैकड़ों , सहस्त्रों व अरबों व्यावसायिक लेनदेन होते र...