• Home
  • Ask a Question
  • About
  • Contact
  • Advertise
  • Sitemap
MENU

Naz MCQ

A blog about multiple choice questions with their answers.

  • Home
  • QuizMC
  • Translate
Archive for May 2017

To close an application's form in code, you use the statement __________.

May 08, 2017 Add Comment

To close an application's form in code, you use the statement __________.





a. Close();
b. Close.This();
c. Close()
d. this.Close();





Answer: D

Programmers commonly use blank lines and indentations in their code to create a sense of __________.

May 08, 2017 Add Comment

Programmers commonly use blank lines and indentations in their code to create a sense of __________.




a. logic
b. visual organization
c. documentation
d. program flow







Answer: B

A__________ can occupy multiple consecutive lines in a program.

May 08, 2017 Add Comment

A__________ can occupy multiple consecutive lines in a program.




a. block comment
b. square comment
c. multiline comment
d. machine comment







Answer: A

A(an) __________ appears on one line in a program.

May 08, 2017 Add Comment

A(an) __________ appears on one line in a program.



a. inline comment
b. line comment
c. forward comment
d. block comment






Answer: B

Most controls have a __________ property that determines whether the control is visible on the form at run time.

May 08, 2017 Add Comment

Most controls have a __________ property that determines whether the control is visible on the form at run time.



a. Render
b. Viewable
c. Visible
d. Draw







Answer: C

______ is the image's width to height ratio.

May 08, 2017 Add Comment

______ is the image's width to height ratio.




a. Aspect ratio
b. Size ratio
c. Projection ratio
d. Area ratio






Answer: A

The PictureBox control's __________ property specifies how the control's image is to be displayed.

May 08, 2017 Add Comment

The PictureBox control's __________ property specifies how the control's image is to be displayed.






a. RenderMode
b. DrawMode
c. SizeMode
d. ImageMode





Answer: C

Once you have created a PictureBox control, you use its __________ property to specify the image that it will display.

May 08, 2017 Add Comment

Once you have created a PictureBox control, you use its __________ property to specify the image that it will display.




a. Image
b. Source
c. DrawSource
d. ImageList





Answer: A

You can use a(n) __________ control to display a graphic image on a form.

May 08, 2017 Add Comment

You can use a(n) __________ control to display a graphic image on a form.





a. Graphics
b. PictureBox
c. Drawing
d. ImageBox






Answer: B

______ is a feature of Visual Studio that provides automatic code completion as you write programming statements.

May 08, 2017 Add Comment

______ is a feature of Visual Studio that provides automatic code completion as you write programming statements.





a. AutoCode
b. AutoComplete
c. IntelliSense
d. IntelliCode






Answer: C

The standard notation for referring to a control's property in code is __________.

May 08, 2017 Add Comment

The standard notation for referring to a control's property in code is __________.



a.ControlName.PropertyName
b.ControlName=PropertyName
c.PropertyName.ControlName
d.PropertyName=ControlName






Answer: A

The equal sign (=) is known as the __________.

May 08, 2017 Add Comment

The equal sign (=) is known as the __________.




a. equality symbol
b. assignment operator
c. equality operator
d. property position






Answer: B

In code, you use a(n) __________ to store a value in a control's property.

May 08, 2017 Add Comment

In code, you use a(n) __________ to store a value in a control's property.




a. Click event
b. method call
c. assignment statement
d. Boolean value





Answer: C

The __________ property can be used to change the text's alignment in the label.

May 08, 2017 Add Comment

The __________ property can be used to change the text's alignment in the label.





a. TextPosition
b. AutoAlign
c. TextCenter
d. TextAlign






Answer: D

Label controls have a(n) __________ property that controls the way they can be resized.

May 08, 2017 Add Comment

Label controls have a(n) __________ property that controls the way they can be resized.




a. Stretch
b. AutoSize
c. Dimension
d. Fixed






Answer: B

A __________ property can be set to one of two possible values: True or False.

May 08, 2017 Add Comment

A __________ property can be set to one of two possible values: True or False.




a. Boolean
b. Logical
c. Binary
d. Dual





Answer: A

The __________ property allows you to set the font, font style, and size of the control's text.

May 08, 2017 Add Comment

The __________ property allows you to set the font, font style, and size of the control's text.



a. Style
b. AutoSize
c. Text
d. Font








Answer: D

When you want to display text on a form, you use a __________ control.

May 08, 2017 Add Comment

When you want to display text on a form, you use a __________ control.




a. Button
b. PictureBox
c. label
d. TextBox





Answer: C

The time during which an application is executing is referred to as __________.

May 08, 2017 Add Comment

The time during which an application is executing is referred to as __________.




a. go time
b. design time
c. execution
d. run time






Answer: D

The time during which you build the GUI and write the application's code is referred to as __________.

May 08, 2017 Add Comment

The time during which you build the GUI and write the application's code is referred to as __________.



a. run time
b. design time
c. code time
d. planning







Answer: B

A piece of data that is written into a program's code is a(n) ___________.

May 08, 2017 Add Comment

A piece of data that is written into a program's code is a(n) ___________.





a. identifier
b. specifier
c. keyword
d. literal






Answer: D

A(n) __________ marks the end of a programming statement in C#.

May 08, 2017 Add Comment

A(n) __________ marks the end of a programming statement in C#.





a. semicolon
b. period
c. hyphen
d. underscore




Answer: A

In programming we use the term string to mean __________.

May 08, 2017 Add Comment

In programming we use the term string to mean __________.



a. many lines of code
b. parallel memory locations
c. string of characters
d. virtually anything






Answer: C

The statement MessageBox.Show("Hello World"); is an example of a(n) __________.

May 08, 2017 Add Comment

The statement MessageBox.Show("Hello World"); is an example of a(n) __________.





a. method call
b. namespace
c. Click event
d. event handler





Answer: A

A(n) __________ is a method that executes when a specific event takes place while an application is running.

May 08, 2017 Add Comment

A(n) __________ is a method that executes when a specific event takes place while an application is running.




a. action process
b. event handler
c. runtime procedure
d. event method






Answer: B

A namespace is container that holds_____.

May 08, 2017 Add Comment

A namespace is container that holds_____.





a.methods
b. names
c. spaces
d. classes






Answer: D

A file that contains program code is called a(n) __________.

May 08, 2017 Add Comment

A file that contains program code is called a(n) __________.





a. destination code file
b. executable file
c. machine language file
d. source code file





Answer: D

The __________ property holds the text that is displayed on the face of the button.

May 08, 2017 Add Comment

The __________ property holds the text that is displayed on the face of the button.




a.Name
b. Text
c. Tag
d. Face





Answer: B

_________ is the name of the blank form that Visual Studio initially creates in a new project.

May 08, 2017 Add Comment

_________ is the name of the blank form that Visual Studio initially creates in a new project.



a. Form1
b. Main
c. New1
d. Blank





Answer: A

The small squares that appear on the right edge, bottom edge, and lower-right corner of a form's bounding box are called __________.

May 08, 2017 Add Comment

The small squares that appear on the right edge, bottom edge, and lower-right corner of a form's bounding box are called __________.




a. sizing hooks
b. form edges
c. bounding tags
d. sizing handles





Answer: D

A(n) __________ is the thin dotted line that encloses an object in the Designer.

May 08, 2017 Add Comment

A(n) __________ is the thin dotted line that encloses an object in the Designer.




a. selection marker
b. control binder
c. bounding box
d. object container





Answer: C
Subscribe to: Posts (Atom)

Search your questions here...

Trending Questions

  • The U.S. unemployment rate is a key economic indicator because most of us need jobs to maintain our standard of living. A criterion used to calculate the unemployment rate is _________.
    The U.S. unemployment rate is a key economic indicator because most of us need jobs to maintain our standard of living. A criterion used t...
  • Robert Redford created The Sundance Film Festival, where talented, young directors and producers can submit their films for review and possible screening. The festival attracts thousands of tourists each year, employs many others at various capacities, and provides important exposure to up-and-coming artists who may otherwise not be able to get their works noticed. Ultimately, the festival provides social and economic benefit for many. Adam Smith believed that one's self-directed gain would eventually create prosperity for many, and called the process the ___________.
    Robert Redford created The Sundance Film Festival, where talented, young directors and producers can submit their films for review and pos...
  • Dress code for a presentation includes all of the following except:
    Dress code for a presentation includes all of the following except: a. Dress slightly dressier than the audience. b. Always wear shor...

Blog Archive

  • May 2017 (31)
  • April 2017 (451)

Label

GEB GEB Chapter 11 GEB Chapter 12 GEB Chapter 5 GEB Chapter 6 GEB Chapter 7 GEB Chapter 8 Retail Strategy Retail Structure Starting out with Visual C#
Powered by Blogger.
Copyright © 2015 Naz MCQ | Term Of Service | Disclaimer | Privacy Policy | DMCA