Summary Flashcards
What is called the the path that goes from the start point of the program to the end point?
The path of execution.
What is Abstract data?
Data where we are only concerned about what it is supposed to do, not about how it does it.
Ex: the brakes of a car.
What is Machine instruction?
Bult-in actions that the CPU can perform.
What is Opcode?
- Short for Operation code.
- Is a part of machine isntruction.
- A set of binary numbers that specifies the exact operation to be performed.
Ex: In a machin instruction like: 0111011010, the first three digits “011” would be the opcode. This could mean “Add a number to an earlier number”. The other part could be the number to be add to the earlier number.
Bit pattern?
A particular layout of bits used to represent numbers, character, etc.
Ex: 100 0001 represent the letter “A”.
ASCII?
American Standard Code for Information Interchange.
A standard chart that represent characters using binay codes.
How many digits ASCII uses to represent each character?
7.
RDBMS?
Relational Database Management System.
A type of computer program used to manage relational database.
Query?
A specific instruction to a computer to search through a database and collect all data that matches a certain criteria.
SQL?
Structured Query Language.
A language to monitor and handle databases.
T-SQL?
Transact-structured query language.
A language Microsoft made to add additional functionality to SQL.
SQL server?
Short for Microsoft Structured Query Language Server.
Is a RDBMS developed by Microsoft.
What is Unit Test?
- unit, individually, independently, checked.
A teste where a unit is individually and independently checked for proper operation.
What is a unit in a unit test?
The smallest testable parts of an application.
What is UAT?
User Acceptance Testing.
A phase in software development where the software is given to the intended audience to be tested for functionality.
What is the first meaning o mapping?
Establishing a connection from one computer to another computer or device in a network.
What is the second meaning o mapping?
The correspondence from elements of a set of data to the elements of another set of data in a table.
What is a Field?
- Space in a data structure that is reserved for a particular information.
- The smallest unit of information a user can access.
- Have certain attributes associated with them (numbers, text, etc.)
Ex: cells in a table.