Here are the answers to your questions:
Question 24:
The intersection of a row and column in a spreadsheet is called a(n) cell.
Question 25:
Which most properly uses the SUM function to sum the values in cells A1 through A4?
Answer: =SUM(A1:A4)
Question 26:
If cell C1 has a formula that correctly computes the sum of cells A1 and B1, and A1 contains 55 and B1 contains 11, then C1 will be 66. If A1's content is then changed to 20, what happens?
Answer: C1 immediately changes to 31.
Question 27:
If cell A1 contains 55 and cell B1 contains 11, which entry into cell C1 results in 66?
Answer: = A1 + B1
Question 28:
A spreadsheet cell contains 'B1 + B2'. What type of value is this?
Answer: Formula
Question 29:
A spreadsheet's columns and rows are labeled with letters and numbers. Which represents the cell 5 rows down and 3 columns to the right?
Answer: C5
Question 30:
A special-purpose programming language designed for managing data held in a relational database management system (RDBMS) is called:
Answer: SQL
Question 31:
Which SQL statement would retrieve all records where the major is Information Technology?
Answer: SELECT * FROM Student WHERE major = 'Information Technology';
Question 32:
An individual piece of data, such as a student's last name, stored in a database table is called a _____.
Answer: field
Question 33:
A user runs a command to find all entries in a database whose "year" field is 2016. Such a command is called a _____.
Answer: query
Question 34:
Which is most suitable to serve as the primary key for employee records in a database?
Answer: The employee's unique identification number
Question 35:
What would be the first word of an SQL instruction used to list all people in a database who are 21 years old?
Answer: SELECT
Question 36:
Data _____ refers to the accuracy of the data in a database.
Answer: integrity
Question 37:
Each row of a database consists of an employee's id number, name, hire date, and salary. The entire row is known as a ____.
Answer: record
Question 38:
A user wishes to keep a record of all employees that work at a company, and to quickly be able to get answers to questions like "Which employees earn over $50,000?" or "How many employees live in California?". Which application is best suited?
Answer: Database app
Question 39:
Which SQL statement would retrieve only the first and last name values for all tuples?
Answer: SELECT first, last FROM Student;
Question 40:
Which SQL statement would retrieve all tuples and attributes?
Answer: SELECT * FROM Student;
Feel free to ask if you have more questions or need clarification!