Module 4 Flashcards

1
Q

What is a Parent Class?

A

A classs from which child classes derive properties and behaviors from.

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

What is a Black Box?

A

Something that hides what happens between the input and output.

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

What is an Access Modifier?

A

A keyword that modifies what parts of the program can access a particular thing.

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

What is Private?

A

An access modifier that protect some section of code from random access.

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

What is Public?

A

An access mofifier used to denote that a piece of code is available to any other part of the program.

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

What is ALM?

A

Application Lifecycle Management.

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

Give an example of an ALM.

A
  1. Requirements gathering.
  2. Architecture planning.
  3. Development.
  4. Test.
  5. Deploy.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is Server Side?

A

The operations that happen in the server to provide the request from the client side.

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

What is a Console?

A

An input/output device for a computer.

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

What is a Directory?

A

A Listing of information in an organized manner.

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

What is a Service?

A

A system which supplies something to other systems.

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

What is Authorization?

A

To check if a specific individual is allowed to access something.

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

What is Active Diretory?

A

A software from Microsoft that provides central authentication and authorization services for computers.

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

What is a Batch File?

A

A file containing a list of instructions to be carried out in order. Most often used in the Windows.

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

What is MS-DOS

A

Microsoft Disk Operating System.

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

What is Data Redudancy?

A

Data stored in more than one table in the database.

15
Q

What is Data Normalization?

A

The process of organizing the tables in order to eliminate data redundancy.

16
Q

What is 1NF?

A

First Normal.

Maximum possible level of normalization of a data base.

17
Q

What is a Primary Key in a database?

A

A piece of data used to uniquely identify a specific row in a database table.

18
Q

What is a Foreign Key?

A

A column in one table that holds the data from a primary key in another, related table.

19
Q

What is Oracle?

A

A software company specialized in the development of database products.

20
Q

What is Data Integrity?

A

The accuracy and consistency of the stored data.

Ex: a field age should allow only input of numbers, not text.

21
Q

How a table in a database can be related to an object in a program?

A

Each row in a particular table might correspond to a particular object of a certain type.

22
Q

What is O/RM?

A

Object Relational Mapping.

A program that maps between objects in a program and tables in a database. When you modify an object in the program, you can use the O/RM to modify the data in the database that correspond to that object.

22
Q

What is Entity Framework?

A

An O/RM program. Used with C# language.

23
Q

Give an Example how Entity Framerowk could work.

A

You could create a whole database, with many tables, and the Entity Framework could automatically create all the C# classes and methods needed to create, read, update and delete data in the database.

24
Q

What is a Parameter of a method?

A

The data the method needs to perform its task.

25
Q

What is an Argument of a method.

A

The data that is passed from the calling program to the called program so it can perform its task.

26
Q

What is LBA?

A

Line of Business Application.

Purpose-built piece of software that helps a company in whatever their line of business is.