Database Management System (3330703) MCQs

MCQs of Introduction to Structured Query Language

Showing 41 to 50 out of 60 Questions
41.

Guess the output of following query; select emp_name,emp_dep,emp_salary from emp where emp_salary>18000 OR emp_dep='computer';

(નીચેની ક્વેરીનું આઉટપુટ guess કરો ; select emp_name,emp_dep,emp_salary from emp where emp_salary>18000 OR emp_dep='computer';)

(a)

It returns details of those employees who are from computer department

(અહી કોમ્પ્યુટર ડીપાર્ટમેન્ટ માં વર્ક કરતા એમ્પ્લોય ની માહિતી મળશે)

(b)

It return details of those employees either whose salary is >18000 and who are from computer department

(અહી કોમ્પ્યુટર ડીપાર્ટમેન્ટ માં વર્ક કરતા અને જેમની સેલેરી >18000 હશે તે એમ્પ્લોય ની માહિતી મળશે)

(c)

It return details of those employee either whose salary is >18000 or who are from computer department

(અહી કોમ્પ્યુટર ડીપાર્ટમેન્ટ માં વર્ક કરતા અથવા જેમની સેલેરી >18000 હશે તે એમ્પ્લોય ની માહિતી મળશે)

(d)

It return details of those employee whose salary is >18000

(અહી  જેમની સેલેરી >18000 હશે તેવા એમ્પ્લોય ની માહિતી મળશે)

Answer:

Option (c)

42.

Guess the output of following query; select emp_name from emp where joining_date between '05/01/2018' and '08/02/2020';

(નીચેની ક્વેરીનું આઉટપુટ guess કરો ; select emp_name from emp where joining_date between '05/01/2018' and '08/02/2020';)

(a)

Returns name of those employee who had joining between 1-May-2018 to 2-Aug-2020

(તેવા એમ્પ્લોય ની માહિતી મળશે જેમણે 1-May-2018 થી 2-Aug-2020 ની વચ્ચે જોઈનીંગ કરેલું હોય છે)

(b)

Returns name of those employee who had joining between 5-Jan-2018 to 8-Feb-2020

(તેવા એમ્પ્લોય ની માહિતી મળશે જેમણે  5-Jan-2018 થી 8-Feb-2020 ની વચ્ચે જોઈનીંગ કરેલું હોય છે)

(c)

Returns name of those employee who has done joining from 1-May-2018 to 2-Aug-2020

(તેવા એમ્પ્લોય ની માહિતી મળશે જેમણે જોઈનીંગ 1-May-2018 થી 2-Aug-2020 સુધી માં કરેલું હોય)

(d)

Returns name of those employee who has done joining from 5-Jan-2018 to 8-Feb-2020

(તેવા એમ્પ્લોય ની માહિતી મળશે જેમણે જોઈનીંગ 5-Jan-2018 થી 8-Feb-2020 સુધી માં કરેલું હોય)

Answer:

Option (c)

43.

Which of the following query is true ?

(નીચે ના માંથી કઈ ક્વેરી સાચી છે ?)

(a)

select name from emp where city in ('Rajkot','Morbi','Jamnagar');

(b)

select name from emp where city in 'Rajkot','Morbi','Jamnagar';

(c)

select name from emp where city in 'Rajkot,Morbi,Jamnagar';

(d)

select name from emp where city in ('Rajkot,Morbi,Jamnagar');

Answer:

Option (a)

44.

LIKE and Concatenation are ________ operators

(LIKE અને Concatenation  ________ ઓપરેટર્સ છે)

(a)

Logical

(લોજીકલ)

(b)

Bitwise

(બીટવાઈઝ)

(c)

Character

(કેરેકટર્સ)

(d)

Relational

(રીલેશનલ)

Answer:

Option (c)

45.

Like operator performs _______ matching and = operator performs _______ matching

(Like ઓપરેટર _______  મેચિંગ અને = ઓપરેટર ______ મેચિંગ પરફોર્મ કરે છે)

(a)

pattern,pattern 

(b)

pattern, exact

(c)

exact, pattern

(d)

exact, exact

Answer:

Option (b)

46.

If we want to compare a single value with set of values then which operator we can use ?

(જયારે આપણે એક વેલ્યુ ને સેટ ઓફ વેલ્યુસ સાથે કમ્પેર કરવી હોય ત્યારે ક્યાં ઓપરેટર નો ઉપયોગ કરવો જોઈએ ?)

(a)

=

(b)

!=

(c)

LIKE

(d)

IN

Answer:

Option (d)

47.

Guess the output of the following query; select round (36.67,1) from dual

(નીચેની ક્વેરીનું આઉટપુટ guess કરો ; select round (36.67,1) from dual)

(a)

36.6

(b)

36.7

(c)

36

(d)

37

Answer:

Option (b)

48.

Guess the output of the following query; select floor (-89.23), ceil (-89.23) from dual

(નીચેની ક્વેરીનું આઉટપુટ guess કરો ; select floor (-89.23), ceil (-89.23) from dual)

(a)

-90, -89

(b)

-89, -90

Answer:

Option (a)

49.

Guess the output of the following query; select floor (89.23), ceil (89.23) from dual

(નીચેની ક્વેરીનું આઉટપુટ guess કરો ; select floor (89.23), ceil (89.23) from dual)

(a)

90, 89

(b)

89, 90

Answer:

Option (b)

50.

Guess the output of the following query; select substr('Database Management System',10,12) from dual

(નીચેની ક્વેરીનું આઉટપુટ guess કરો ; select substr('Database Management System',10,12) from dual)

(a)

Database M

(b)

Database Man

(c)

Management

(d)

Management S

Answer:

Option (d)

Showing 41 to 50 out of 60 Questions