Data Analytics Internship Quiz 10

Data Analytics Internship Quiz 10

Professional Development

50 Qs

quiz-placeholder

Similar activities

YB4 ProfEd - Action Research

YB4 ProfEd - Action Research

Professional Development

50 Qs

QBO Certification Exam Practice

QBO Certification Exam Practice

Professional Development

45 Qs

INT-10, FINAL WRITTEN EXAM, MAY 24TH

INT-10, FINAL WRITTEN EXAM, MAY 24TH

Professional Development

50 Qs

INTENSIVE  8 FINAL EXAM

INTENSIVE 8 FINAL EXAM

Professional Development

45 Qs

FINAL WRITING EXAM-INTENSIVE 9TH

FINAL WRITING EXAM-INTENSIVE 9TH

Professional Development

50 Qs

EVA University 2nd Batch Selection

EVA University 2nd Batch Selection

Professional Development

50 Qs

FLOW

FLOW

Professional Development

50 Qs

NSDA_CO_L3_Preparation_02

NSDA_CO_L3_Preparation_02

Professional Development

50 Qs

Data Analytics Internship Quiz 10

Data Analytics Internship Quiz 10

Assessment

Quiz

Professional Development

Professional Development

Hard

Created by

Vindhya Gaddam

Used 3+ times

FREE Resource

50 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following is used to modify the data stored in the database?

select

check

insert into

update

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the major difference in the operation of the UNION and UNION ALL clause in SQL?

Union returns unique data and UNION ALL returns all possible cases.

Union all returns unique data while Union returns all the possible cases.

Both return the same set of data, difference is observed in the versions only.

None of the above

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which type of join is the query written below?
SELECT *
FROM tableName1
INNER JOIN tableName2
ON tableName1.matchingColumn = tableName2.matchingColumn ;

Inner Join

Left Join

Outer Join

Right Join

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the data definition commands in SQL known as popularly?

DML

UML

RDBMS

DDL

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the query below is used to put a value in a variable we need to define for our SQL query?

Id = 6;

SET @id = 6;

SET #id = 6;

SET id = 6;

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Write a query to find the company domain mail-id of each employee at DataFlair. Given the company domain being @dataflair.com.

USE DataFlair; SELECT name ,concat('@dataflair.com',name) AS Official_mail_id FROM DataFlair;

USE DataFlair; SELECT name ,strcmp(name,'@dataflair.com') AS Official_mail_id FROM DataFlair;

USE DataFlair; SELECT name ,concat(name,'@dataflair.com') AS Official_mail_id FROM DataFlair;

All of these are correct.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

We can’t use subqueries with which of the clauses given below?

SELECT

UPDATE

DELETE

None of these

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?