Ict Flashcards

(67 cards)

1
Q

four main concepts in the area of object oriented programming

A

abstraction
encapsulation
inheritance
polymorphism

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

is a view of an entity that includes only those aspects that are relevant for a particular situation

A

abstraction

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

what are the employee information that a programmer needs to have

A

full name
address
employee id
Salary
Incsalary

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

is to contain or encapsulate the properties and methods of an abstraction, and expose only those portions that are absolutely necessary

A

encapsulation

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

is a fundamental feature of an object oriented programming

A

Inheritance

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

what are the different combinations in object oriented programming languages

A

single inheritance
multilevel inheritance
hierarchical inheritance
multipath inheritance
multiple inheritance

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

what are the eight common controls that intrinsic validation

A

radio button
checkbox
checked list box
list box
date time picker
month calendar
masked textbox
text box

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

is one of the crucial features of vb.net and one of the key concepts of object oriented programming

A

polymorphism

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

is a method of software design and construction

A

object oriented programming

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

is a combination of code and data that can be treated as a unit

A

object

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

describes the variables, properties, procedures, and events of an object

A

class

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

is something that an object does

A

method

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

is a method of the combo box object that adds a new entry to a combo box

A

add

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

are instances of classes

A

objects

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

refers to ensuring the entered data is acceptable

A

validation

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

is an action recognized by an object such as clicking the mouse or pressing a key

A

event

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

is the process of checking the data entered by the user before that data is saved

A

input validation

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

is a member of a class that acts as an intermediary to a member variable of the class

A

property

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

what are the three rules in using a read only property

A

declaration context
combined modifiers
assigning a value

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

this keyword is used to indicate that the properties value can be accessed but it cannot be changed

A

read only

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

this feature is used most frequently to overload the constructor

A

overloading

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

are a special kind of sub procedure

A

constructors

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

restricts entry to on or off

A

radio button

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

restricts entry to checked or unchecked

A

checkbox

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
provides a list of valid entries
checked list box
24
provides a list of valid entries (graphic and text)
list box
25
restricts to entry to date or times
date time picker
26
restricts entry to a range updates
month calendar
27
restricts data input to format data output
masked textbox
28
set properties to restrict or modify data entry
text box
29
is the essential or native facility of vb that validates user input
intrinsic validation
30
four properties of text boxes intrinsic validation
password char max length read only character casing
31
heights or masks characters that can be entered into a text box
password char
32
sets the maximum number of characters that can be entered into a text box
max length
33
provides a predetermined valid answer
read only
34
sets all characters in a text box to uppercase or lowercase
character casing
35
is the process of validating the fields on a form all at once
form level validation
36
what are the three form level validation
independent content validation required field validation conditional field validation
37
is ideal for input value validation
validating event
38
is the routine process of locating and removing computer program bugs, error or abnormalities, which is methodically handled by software programmers via debugging tools
debugging
39
what are the types of errors
syntax errors runtime errors logic errors
40
are the most common types of error and also known as compilation error
syntax errors
41
appear only after compiling the code
runtime errors
42
appear once the application is in use
logic errors
43
works with all visual studio programming languages and their associated libraries
debugger
44
is one of the most used tools in vb.net
immediate window
45
what are the two ways of handling exemptions
structured exception handling unstructured exception handling
46
this statement provides a way to handle some or all possible errors that may occur in a given block of code while the program is still running
try catch finally
47
refers to the way users interact with the website or an application
user interface
48
works by allowing the developer to issue commands as one or more lines of text to a program
character user interface
49
interacts with the users through various components called controls
graphical user interface
50
is located at the menu bar and contains a list of related commands
menu
51
elements of menu
menu heading menu items sub menu
52
is the container for menu structure of the forms
menu heading
53
represent the individual parts of the menu
menu items
54
contains the subdivision of the menu item
submenu
55
control represents the container for the menu structure
menu strip
56
is a horizontal bar, typically at the bottom of the screen or window, showing information about a document being edited or a program running
status bar
57
control provides an area where the application can display brief status information, usually at the bottom of the form
status strip
58
has become a standard feature in many windows based applications
toolbar
59
discontrol this place a series of buttons, dropdowns and other tools
tool strip
60
what are the most commonly used controls in vb.net
list box checkbox combo box date time picker
61
this control this place a list of choices wherein users can select
list box
62
this control let's let's the users choose one of several choices
combo box
63
this control allows the users to make multiple selections from a number of options like true or false and yes or no
checkbox
64
this control allows the user to display and collect date and time from the user with the specified format
date time picker
65
is a control that consists of other controls
container