Find name of the supervisor for employee number 433.

Use the N2 Corporation database tables to design the following subqueries. (Use the spooling method to capture all queries and results in the CHAP8SP1.LST file.)

```
SQL> SELECT Lname, Fname
2 FROM employee
3 WHERE EmployeeId =
4 (SELECT Supervisor
5 FROM employee
6 WHERE EmployeeId = 433);

LNAME FNAME
--------------- ---------------
Dev Derek
```

Computer Science & Information Technology

You might also like to view...

A(n) ____ occurs when only a few ending lines of an element appear at the top of a page, while the bulk of the content appears on the preceding page.

A. widow B. orphan C. child D. parent

Computer Science & Information Technology

What might the output look like?

``` #include int main() { int x, *x_ptr = &x; *x_ptr = 10; cout << “ “ << x << “ “ << &x << “ “ << x_ptr << “ “ << *x_ptr; } ``` A. 10 10 0012FF60 0012FF60 B. 10 0012FF60 10 0012FF60 C. 0012FF60 10 10 0012FF60 D. 10 0012FF60 0012FF60 10

Computer Science & Information Technology