Most likely data type for this value: 43.22
What is floating point?
Character set most likely used to represent international text data.
What is Unicode?
IP protection that prohibits Jay from burning a copy of his Guardians of the Galaxy blu-ray disc for a friend.
What is copyright?
Value that can change when a program is executed.
What is a variable?
Name one advantage of a RDBMS over a flat file system.
What are: scalability, enforcement of data types; links between tables, number of concurrent users?
Most likely data type for this value: 221-B Baker Street
What is String?
Notational system that uses two digits, also known as base 2.
What is binary?
Software can be protected by these two IP protections.
What are copyright and patent?
Presents machine code in human-readable text.
What is assembly language?
This column contains unique values for each record and will be used to relate a table to other tables.
What is a primary key?
When data is transferred over a network or between computer components, connection speed is measured in this:
Notational system that allows you to represent the largest values with the fewest digits.
What is hexadecimal notation?
When data analytics software produces graphs, charts, or other human-friendly products that help with business insights, this is:
What is meaningful reporting?
One advantage and one disadvantage of compiled code.
What are better speed and platform dependence?
This kind of database is non-relational and semi-structured. It uses JSON (JavaScript Object Notation) to organize information.
What is a Key/Value Pair database?
Processor speed for a modern CPU is measured in this unit.
What is GHz?
What is 3?
Comparing the cost of a security solution with the likelihood and potential cost of a data breach.
What is Return on Security Investment (ROSI)?
What is: function can return a value to the program?
UPDATE TableName changes column values. It is a Data _________ Language command.
What is Manipulation?
Number of bits in 2KB
What is 16,000?
The number 17 in hexadecimal notation.
What is 11?
Data analytics software detects that visitors to an online dating site spend more time on profiles with higher-definition photographs. This is an example of:
What is data correlation?
Result produced by the following code:
Do While i <= 25
i=i+1
print i
Loop
What is: print (display) numbers from 1 to 25?
SQL query that will display all records from a table called Students in which the value in a field called Program is IT.
What is:
SELECT * FROM Students
WHERE Program='IT';