Database Management System (3330703) MCQs

MCQs of Introduction to Structured Query Language

Showing 51 to 50 out of 60 Questions
51.

Guess the output of the following query; select length('I love database system') from dual;

(નીચેની ક્વેરીનું આઉટપુટ guess કરો ; select length('I love database system') from dual;)

(a)

22

(b)

18

(c)

21

(d)

23

Answer:

Option (a)

52.

Guess the output of the following query; select mod(100,-3) from dual

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

(a)

Error

(b)

1

(c)

-1

(d)

0

Answer:

Option (b)

53.

You need to display the names of the employees who have the letter 'a' in their name and the letter 'a' at the second position in their city name. Which query would give the required output?

(તેવા એમ્પ્લોય ના નામ ડિસ્પ્લે કરો કે જેમના નામ નો પહેલો લેટર 'a' અને તે જે સીટી માંથી બેલોન્ગ કરે છે તે સીટી ના નામ માં બીજો લેટર 'a' હોય , તો તેના માટે નીચે ના માંથી કઈ ક્વેરી સાચી છે ?)

(a)

select * from staff_details where staff_name like '%' and staff_address like '_a%';

(b)

select * from staff_details where staff_name like 'a_' and staff_address like '_a%';

(c)

select * from staff_details where staff_name like 'a%' and staff_address like '_a';

(d)

select * from staff_details where staff_name like 'a%' and staff_address like '_a%';

Answer:

Option (d)

54.

Guess the output of the following query

select months_between('05/01/2019','08/18/2018') from dual;

નીચેની ક્વેરીનું આઉટપુટ guess કરો

select months_between('05/01/2019','08/18/2018') from dual;

(a)

8

(b)

8.45

Answer:

Option (b)

55.

Guess the output of the following query

select next_day('02/22/2020','Saturday') from dual

નીચેની ક્વેરીનું આઉટપુટ guess કરો

select next_day('02/22/2020','Saturday') from dual

(a)

03/01/2020

(b)

02/29/2020

(c)

02/23/2020

(d)

02/28/2020

Answer:

Option (b)

56.

From set of values if we want to find minimum value then which function we can use ?

(સેટ ઓફ વેલ્યુસ માંથી મીનીમમ વેલ્યુ શોધવા માટે નીચે ના માંથી ક્યાં ફંક્શન નો ઉપયોગ કરી શકાય ?)

(a)

MIN

(b)

MINIMUM

(c)

LEAST

(d)

LAST

Answer:

Option (c)

57.

Guess the output of the following query

select rpad(round('8547.123'),8,'*') FROM dual;

 

નીચેની ક્વેરીનું આઉટપુટ guess કરો

select rpad(round('8547.123'),8,'*') FROM dual;

 

(a)

8547****

(b)

8547.123*

(c)

****8547

(d)

*8547.123

Answer:

Option (a)

58.

Which of the following is a Case-Conversion Character function?

(નીચે ના માંથી કયું કેરેક્ટર ફંક્શન કેસ સેન્સીટીવ છે ?)

(a)

SUBSTR

(b)

INITCAP

(c)

CONCAT

(d)

REPLACE

Answer:

Option (b)

59.

Which of the following commands allows you to substitute a value whenever a NULL or non-NULL value is encountered in an SQL query?

(નીચે ના માંથી  ક્યાં કમાંડ ની મદદ થી  SQL ક્વેરી માં જયારે NULL અથવા non-NULL વેલ્યુ આપવામાં આવશે ત્યારે તેની વેલ્યુ સબસ્ટીટયુટ કરી શકાશે ?)

(a)

NVL

(b)

NVL2

(c)

NULIF

(d)

NULLIF

Answer:

Option (b)

60.

_______ functions works similar to the IF-THEN-ELSE logic

(__________ ફંક્શન એ IF-THEN-ELSE  લોજીક ની જેમ વર્ક કરશે)

(a)

NVL

(b)

NVL2

(c)

DECODE

(d)

NULLIF

Answer:

Option (c)

Showing 51 to 50 out of 60 Questions