Vb Quiz #1

30 Questions | Attempts: 488
Share

SettingsSettingsSettings
Visual Basic Quizzes & Trivia

Terminology and procedures after completing of Web Browser Project.


Questions and Answers
  • 1. 

    Graphic User Interface.

    • A.

      Solution Explorer

    • B.

      IDE

    • C.

      GUI

    • D.

      EXE

    Correct Answer
    C. GUI
  • 2. 

    Which function key will open the properties window in VB express?

    • A.

      F1

    • B.

      F5

    • C.

      F7

    • D.

      F4

    Correct Answer
    D. F4
  • 3. 

    It's definition is the rules of a programming language.

    • A.

      Sub routines

    • B.

      Syntax

    • C.

      Events

    • D.

      Procedures

    Correct Answer
    B. Syntax
  • 4. 

    All of the following are panels in the VB environment except...

    • A.

      History

    • B.

      Tools Box

    • C.

      Solution Explorer

    • D.

      Properties

    Correct Answer
    A. History
  • 5. 

    __________ are the attributes of an object that control the object's appearance and behavior.

    • A.

      Object-oriented programming

    • B.

      Events

    • C.

      Strings

    • D.

      Properties

    Correct Answer
    D. Properties
  • 6. 

    This is what is displayed when a program runs successfully.

    • A.

      Debug errors

    • B.

      Form

    • C.

      Images

    • D.

      Form Designer

    Correct Answer
    B. Form
  • 7. 

    _______ is the general shape of the characters used to display text.

    • A.

      TextBox

    • B.

      Style

    • C.

      Font

    • D.

      Size & Color

    Correct Answer
    C. Font
  • 8. 

    An application can display multiple ______________.

    • A.

      Forms

    • B.

      Images

    • C.

      Text

    • D.

      All of the above

    Correct Answer
    D. All of the above
  • 9. 

    ___________ are actions to which an object can respond:  examples include clicking, double-clicking and scrolling.

    • A.

      Procedures

    • B.

      Events

    • C.

      Sub Routines

    • D.

      Methods

    Correct Answer
    B. Events
  • 10. 

    All are including in the 3 step process of programming except....

    • A.

      Code and debug

    • B.

      Create graphics

    • C.

      Set the properties

    • D.

      Design the interface

    Correct Answer
    B. Create graphics
  • 11. 

    ___________ are directions given to the computer.

    • A.

      Programs

    • B.

      Applications

    • C.

      Assignments

    • D.

      Sequences

    Correct Answer
    A. Programs
  • 12. 

    A ___________ control can be added to a form by the drop/drag method or the double-clicking method.

    • A.

      Form

    • B.

      Directory

    • C.

      Tool

    • D.

      Procedure

    Correct Answer
    C. Tool
  • 13. 

    ___________ controls are used to display text that the user is not allowed to edit while the application is running.

    • A.

      TextBox

    • B.

      Title

    • C.

      TextMask

    • D.

      Label

    Correct Answer
    D. Label
  • 14. 

    The ___________ __________ ____________ is where forms are created in an application.

    • A.

      Code designer window

    • B.

      Form designer window

    • C.

      Design window interface

    • D.

      Code window interface

    Correct Answer
    B. Form designer window
  • 15. 

    The __________ ___________ is what you see and interact with when using an application.

    • A.

      User interface

    • B.

      Web based app

    • C.

      Form window

    • D.

      Source file

    Correct Answer
    A. User interface
  • 16. 

    The ______ function key will open the code editor window of a form.

    • A.

      F4

    • B.

      F3

    • C.

      F5

    • D.

      F7

    Correct Answer
    D. F7
  • 17. 

    A ____________ is a predefined VB procedure that you can call upon when needed.

    • A.

      Class

    • B.

      Method

    • C.

      Event

    • D.

      Procedure

    Correct Answer
    B. Method
  • 18. 

    _____________ contain code that defines what the controls look like and what task they can perform.

    • A.

      Forms

    • B.

      Projects

    • C.

      Controls

    • D.

      Solutions

    Correct Answer
    C. Controls
  • 19. 

    ___________ can be zero or more characters enclosed in quotations marks.

    • A.

      Strings

    • B.

      Values

    • C.

      Constants

    • D.

      Integers

    Correct Answer
    A. Strings
  • 20. 

    ________ will run a program and __________ + ________ will allow you to toggle between the form window and code window.

    • A.

      F2, control + tab

    • B.

      F5, control + shift

    • C.

      F5, control + Tab

    • D.

      F3, alt + tab

    Correct Answer
    C. F5, control + Tab
  • 21. 

    Which one do you like?

    • A.

      Option 1

    • B.

      Option 2

    • C.

      Option 3

    • D.

      Option 4

    Correct Answer
    A. Option 1
  • 22. 

    DIM  num1 as Single  is an example of a written statement for declaring a variable.   In the statement which is the datatype?

    • A.

      DIM

    • B.

      Num1

    • C.

      As

    • D.

      S s Single

    Correct Answer
    D. S s Single
  • 23. 

    Which property of a control sets the background color?

    • A.

      Forecolor

    • B.

      Text

    • C.

      Background

    • D.

      Backcolor

    Correct Answer
    D. Backcolor
  • 24. 

    How many characters are there in a hexidecimal color code?

    • A.

      7

    • B.

      5

    • C.

      6

    • D.

      4

    Correct Answer
    C. 6
  • 25. 

    What event is used to give the computer instructions when a user click's on a radio button during runtime?

    • A.

      Checkedchanged

    • B.

      Pushchanged

    • C.

      Checked

    • D.

      Radiochanged

    Correct Answer
    A. Checkedchanged
  • 26. 

    What is the color of comments?

    • A.

      Blue

    • B.

      Green

    • C.

      Red

    • D.

      Black

    Correct Answer
    B. Green
  • 27. 

    Which property for a textbox allows the textbox to accept more than 1 line of data entry?

    • A.

      Autosize

    • B.

      Index

    • C.

      Items

    • D.

      Multiline

    Correct Answer
    D. Multiline
  • 28. 

    If....Then....Else....End IF involve _________________ statement instructions based on a set of criteria being met.

    • A.

      Criteria

    • B.

      Parameter

    • C.

      Conditional

    • D.

      Variable

    Correct Answer
    C. Conditional
  • 29. 

    This control is used for titles/captions.

    • A.

      Label

    • B.

      Title

    • C.

      Textbox

    • D.

      Text

    Correct Answer
    A. Label
  • 30. 

    All of the following are methods that we have used so far except.....

    • A.

      .clear

    • B.

      .text

    • C.

      .vb exclamation

    • D.

      .focus

    Correct Answer
    C. .vb exclamation

Quiz Review Timeline +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 20, 2014
    Quiz Edited by
    ProProfs Editorial Team
  • Jan 31, 2013
    Quiz Created by
    Dana Tull
Back to Top Back to top
Advertisement
×

Wait!
Here's an interesting quiz for you.

We have other quizzes matching your interest.