Answer: Motherboard i tuink
Explanation:
Assuming that Jenny is using MS Excel, the best way to look at both rows would be with the help of the "Freeze Panes" feature found in the View tab of the dashboard.
Jenny would simply have to select row 17 and click on "Freeze Panes". Once the panes are locked, Jenny will then have access to scroll down to row 345 with row 17 still showing its values.
Answer:
SELECT Ssn,
Last_name
FROM employees
WHERE position = supervisor;
Explanation:
SELECT is an SQL query statement that is used to initiate the display of wanted variables.
The names of the variables often succeed the SELECT statement and they are separated by commas.
FROM is an SQL query statement that indicates the table fro which the selected variables be displayed.
WHERE is used to filter your search and return only rows that meet the criteria.
; signifies the end of a query and calls for an execution.
Answer: Inheritance
Explanation: Inheritance is the feature that is displayed by the class where it happens to acquire the properties of the other classes and exhibit it. the inheriting nature of the class is seen in two different categories -superclass and subclass. It is a concept that is usually followed in the object -oriented programming. The reason for the inheritance is to reuse the element and their properties of other class.