VB FINAL Flashcards

1
Q

A(n) ____ form is a page displayed in a browser that requests data from the user.

1) ASP
2) ISP
3) Web
4) indexed

A

3) Web

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

A Web ____ is a computer that stores Web documents and makes them available to users over the Internet.

1) server
2) broadband
3) client
4) baseline

A

1) server

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

A Web page that displays information such as text and pictures with no interactivity is called a ____ Web page.

1) standard
2) dynamic
3) static
4) nonindexed

A

3) static

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

A Web page that allows users to enter information is considered a(n) ____ Web page.

1) static
2) interactive
3) standard
4) dynamic

A

4) dynamic

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Creating a Web application is similar to creating a(n) ____ application.

1) data-driven
2) Windows
3) inactive
4) hosted

A

2) Windows

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

The ____-side computer is the computer that will deliver the Web page to the user’s computer.

1) user
2) host
3) client
4) server

A

4) server

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

The ____-side computer is the computer that is requesting the Web page.

1) server
2) user
3) client
4) host

A

3) client

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

The ASP.NET 4.0 technology used with Visual Basic 2010 creates a(n) ____.

1) interactive search post
2) concatenated server post
3) active server page
4) interactive server party

A

3) active server page

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

The ____ file is a master page file that provides an overall layout for the site with headers, buttons, and footers.

1) Page.template
2) Site.master
3) Index.template
4) Default.htm

A

2) Site.master

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

A ____ page is designed to create a consistent layout for the pages in your application.

1) master
2) default
3) key
4) super

A

1) master

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

If you change the color or title of a ____ page, all the pages in the site will reflect that same color and title.

1) master
2) super
3) key
4) default

A

1) master

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

If you prefer to design a Web page without using starter templates, select ____ before you name the project when you create a new Web Site project.

1) No template
2) ASP.NET Empty Web Site
3) Without Master Page
4) all of the above

A

2) ASP.NET Empty Web Site

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

A graphic image can be shown on a ASP.NET 4.0 Web form by using a(n) ____ object.

1) Image
2) Graphic
3) Visual
4) PictureBox

A

1) Image

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

The ____ property of a Button object contains the name of the button.

1) Name
2) ButtonTitle
3) ID
4) ButtonCaption

A

3) ID

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

The name of a CheckBox object is stored in its ____ property.

1) ID
2) Name
3) BoxCaption
4) BoxTitle

A

1) ID

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

The ____ property of a CheckBox indicates whether a CheckBox has been checked.

1) This
2) Selected
3) Checked
4) Chosen

A

3) Checked

17
Q

Using a set of RadioButton controls is preferred to using a set of ____ controls when only one choice should be made from a set of options.

1) CheckBox
2) TextArea
3) TextLink
4) ChoiceBox

A

1) CheckBox

18
Q

The prefix ____ is used when naming a CheckBox object.

1) ckb
2) ckc
3) chk
4) cbx

A

3) chk

19
Q

The ____ object displays the days in each month as appropriate for the year.

1) Planner
2) Calendar
3) DayRunner
4) Month

A

2) Calendar

20
Q

The ____ property of the Calendar object references the date the user clicked in the Calendar object.

1) DateClicked
2) SelectedDate
3) ThisDate
4) DateSelected

A

2) SelectedDate

21
Q

Use the ____ property of the Calendar object to reference the current date.

1) TodaysDate
2) ThisDate
3) Current
4) Today

A

1) TodaysDate

22
Q

The ____ object verifies that the object on a Web form contains data.

1) EmptyObject
2) ObjectNull
3) RequiredFieldValidator
4) ObjectRequired

A

3) RequiredFieldValidator

23
Q

The ____ property of a RequiredFieldValidator object contains the message that the user will see if invalid data has been entered on a Web form.

1) ErrorInformationDisplay
2) ValidMessage
3) InvalieInfo
4) ErrorMessage

A

4) ErrorMessage

24
Q

The prefix ____ is used when naming a RequiredFieldValidator object on a Web form.

1) rfv
2) rfl
3) flv
4) fld

A

1) rfv

25
Q

The ____ object should be used to ensure that the user enters data in a field.

1) RequiredFieldValidator
2) RegularExpressionValidator
3) RangeValidator
4) CompareValidator

A

1) RequiredFieldValidator

26
Q

The ____ property contains the name of the object to be validated when using the RangeValidator control.

1) ControlToCompare
2) ControlToValidate
3) MinimumValue
4) Type

A

2) ControlToValidate

27
Q

The ____ validation control can be used to ensure that the user enters a value between 1 and 100, for example.

1) RangeValidator
2) CompareValidator
3) RequiredFieldValidator
4) RegularExpressionValidator

A

1) RangeValidator

28
Q

The ____ property of a RangeValidator control on a Web form contains the smallest acceptable value of the range.

1) MinimumValue
2) MinimumRange
3) RangeVal
4) LowerLimit

A

1) MinimumValue

29
Q

Use the ____ property of a validation control on a Web form to explain to the user what value is requested.

1) InvalidDataMessage
2) ErrorType
3) InvalidMessage
4) ErrorMessage

A

4) ErrorMessage

30
Q

The ____ property of a RangeValidator control on a Web form matches the data type of the value.

1) DataType
2) ControlToValidate
3) DataValue
4) Type

A

4) Type