Write an SQL statement that creates the Transcript table.

What will be an ideal response?

```
CREATE TABLE Transcript (
StudId INTEGER,
CrsCode CHAR(6),
Semester CHAR(6),
Grade CHAR(1),
PRIMARY KEY (StudId, CrsCode, Semester) )
```

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1. In a For loop the programmer must know the exact number of iterations the loop must perform before writing the code. 2. While and For loops are considered pretest loops because they test the condition before processing the statement or statements in the loop body. 3. A condition-controlled loop can be used to iterate the body of the loop a specific number of times. 4. In the following pseudocode counter is the accumulator. For counter = 1 to 6 Set numberWidgets = numberWidgets + counter End For

Computer Science & Information Technology

Discuss "virtual reality."

What will be an ideal response?

Computer Science & Information Technology