Which SQL standard was the first to be divided into three levels, Entry SQL, Intermediate SQL, and Full SQL?

a. SQL/86
b. SQL/89
c. SQL/92
d. SQL/99


c. SQL/92

Computer Science & Information Technology

You might also like to view...

Given the array: int hours[8]; which for loop will cycle through each value correctly and assign the values: 1, 2, 3, 4, 5, 6, 7, 8 ?

```A. for(int i=0; i<8; ++i); { hours[i] = i; } B. for(int i=0; i<8; ++i){ hours[i+1] = i; } C. for(int i=0; i<8; ++i){ hours[i] = i + 1; } D. for(int i=0; i<7; ++i){ hours[i] = i + 1; }```

Computer Science & Information Technology

Groups are added to a section of the report called the ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

Which of the following is a text editor that MacOS users may use??

A. ?TypeText B. ?Snagit C. ?Notepad D. ?TextEdit

Computer Science & Information Technology

The term “____” is used to describe interesting occurrences that happen while a program is running.

A. event B. class C. method D. algorithm

Computer Science & Information Technology