If you enter a start date with the task, the due date automatically changes to match the start date.
Answer the following statement true (T) or false (F)
True
Computer Science & Information Technology
You might also like to view...
PowerPoint includes a ________ that compares words in the presentation to a built in dictionary
Fill in the blank(s) with correct word
Computer Science & Information Technology
List output from the following queries. (Uses tables created in the Chapter 4 Lab Activity)
1. SELECT INITCAP(First) || ‘ ’ || INITCAP(Last) “Student Name” FROM student; 2. SELECT COUNT(DISTINCT (MajorId)) FROM student; 3. SELECT Building, SUM(Capacity) TOTCAP FROM location GROUP BY Building ORDER BY TOTCAP DESC; 4. SELECT UPPER(Lname), UPPER(Fname), (SYSDATE – HIREDATE) DAYS FROM employee ORDER BY DAYS; 5. SELECT Building, AVG (Capacity) FROM location GROUP BY Building HAVING AVG (Capacity) > 25;
Computer Science & Information Technology