Database and SQL Quiz

Database and SQL Quiz

University

39 Qs

quiz-placeholder

Similar activities

QUIZ BASIS DATA KELAS 12 RPL (2024)

QUIZ BASIS DATA KELAS 12 RPL (2024)

12th Grade - University

40 Qs

UNIT1 and Unit2 MCQ-DBMS

UNIT1 and Unit2 MCQ-DBMS

University

40 Qs

SQL_T3

SQL_T3

University

41 Qs

[Sun*_Internship] Web Backend Quizzes

[Sun*_Internship] Web Backend Quizzes

University

35 Qs

Test dot: Programowania

Test dot: Programowania

KG - University

40 Qs

BDL_MI

BDL_MI

University

35 Qs

SQL

SQL

University

35 Qs

DBMS Unit 1

DBMS Unit 1

University

40 Qs

Database and SQL Quiz

Database and SQL Quiz

Assessment

Quiz

Computers

University

Medium

Created by

Varsha Thakur

Used 4+ times

FREE Resource

39 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Consider the following schema - STUDENTS (student_code, first_name, last_name, email, phone_no, date_of_birth, honours_subject, percentage_of_marks); Which of the following query would display all the students whose first name starts with the character ‘A’?

select first_name from students where first_name like ‘A%’;

select first_name from students where first_name like ‘%A’;

select first_name from students where first_name like ‘%A%’;

select first_name from students where first_name like ‘A’;

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

You have a relation called "Employees" that contains information about employees, including their salaries. You want to find the average salary of all employees. Which relational algebra operation would you use?

SELECT

PROJECT

AGGREGATE

JOIN

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

With SQL, how can you return the number of not null records in the "Persons" table?

SELECT COUNT() FROM Persons

SELECT COLUMNS() FROM Persons

SELECT COLUMNS(*) FROM Persons

SELECT COUNT(*) FROM Persons

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

You have a "Products" relation that contains information about products, including their prices. You want to find the products with a price greater than $100. What relational algebra operation would you use?

SELECT

PROJECT

JOIN

DIFFERENCE

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

SQL query to find the temperature in increasing order of all cities.

SELECT city FROM weather ORDER BY temperature

SELECT city, temperature FROM weather

SELECT city, temperature FROM weather ORDER BY temperature

SELECT city, temperature FROM weather ORDER BY city

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

In a database, you have a "Sales" relation that contains information about sales transactions, including the salesperson's name. You want to find the distinct names of salespeople who made sales. What relational algebra operation would you use?

SELECT

PROJECT

UNION

DISTINCT

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

You have a "Students" relation that contains information about students, including their ages. You want to find the average age of all students. Which relational algebra operation would you use?

SELECT

PROJECT

AGGREGATE

JOIN

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?