Database Management System (3330703) MCQs

MCQs of Database Integrity Constraints

Showing 21 to 30 out of 40 Questions
21.

If a table ACADEMIC contains null value for the column SEMESTER, now we executing following query then guess the output

ALTER TABLE ACADEMIC MODIFY SEMESTER NUMBER(1) NOT NULL UNIQUE;

જો ACADEMIC ટેબલ માં SEMESTER નામ ની કોલમ null વેલ્યુ ધરાવે છે, હવે આપણે નીચે આપેલ ક્વેરી એક્ષીક્યુટ કરીએ તો તેનું આઉટપુટ જણાવો

ALTER TABLE ACADEMIC MODIFY SEMESTER NUMBER(1) NOT NULL UNIQUE;

(a)

It will set not null constraint for that column

તે કોલમ માટે not null કન્સ્ટ્રેઈન્ટ અપ્લાય થશે

(b)

It will set unique constraint for that column

તે કોલમ માટે unique કન્સ્ટ્રેઈન્ટ અપ્લાય થશે

(c)

It will set not null and unique constraint for that column

તે કોલમ માટે not null અને unique કન્સ્ટ્રેઈન્ટ અપ્લાય થશે

(d)

Error 

Answer:

Option (d)

22.

Is it advisable to apply unique key on the column on which reference key is applied?

(જે કોલમ પર reference  key અપ્લાય કરેલી છે તે કોલમ પર unique key પણ અપ્લાય કરવું હિતાવહ છે ?)

(a)

YES

(b)

NO

Answer:

Option (b)

23.

Primary Key = _______ + Unique

(a)

NOT NULL

(b)

NULL

(c)

CHECK

(d)

NILL

Answer:

Option (a)

24.

How many primary key can be there in one relation ?

(એક રીલેશન માં કેટલી પ્રાયમરી કી હોય શકે છે ?)

(a)

1

(b)

2

(c)

3

(d)

As much as required 

(જરૂરિયાત હોય તે પ્રમાણે)

Answer:

Option (a)

25.

Composite Primary key contains _______ columns

(કમ્પોસાઈટ પ્રાયમરી કી માં _______ કોલમ હોય છે)

(a)

1

(b)

More than 1 

Answer:

Option (b)

26.

Generally primary key contains _____ type of values

(જનરલી પ્રાયમરી કી _______ પ્રકારની વેલ્યુ ધરાવે છે)

(a)

Character

(b)

Numeric 

(c)

Numeric + Character

(d)

Byte

Answer:

Option (b)

27.

Primary key's data changes frequently

(પ્રાયમરી કી નો ડેટા વારંવાર ચેન્જ થાય છે)

(a)

TRUE

(b)

FALSE

Answer:

Option (b)

28.

Which of the following can be used as a Primary key

(નીચે ના માંથી ક્યાં એટ્રીબ્યુટ ને પ્રાયમરી કી તરીકે ઉપયોગ કરી શકાય છે)

(a)

Aadhar Card Number

(b)

Email ID 

(c)

Account Number

(d)

Mobile Number

Answer:

Option (a)

29.

Only one candidate key can be primary key

(એક જ કેન્ડીડેટ કી પ્રાયમરી કી હોય શકે)

(a)

TRUE

(b)

FALSE

Answer:

Option (a)

30.

Which of the following is perfect primary key query to reduce the duplication of data ?

(ડેટા નું  ડુપ્લીકેશન ઘટાડવા નીચે ના માંથી કઈ ક્વેરી પરફેક્ટ પ્રાયમરી કી તરીકે રીપ્રેસેન્ટ થશે?)

(a)

create table academic (roll_no number(20) primary key,department_name varchar(20),name varchar(20), semester number(1), spi number(4,2));

(b)

create table academic (roll_no number(20),department_name varchar(20),name varchar(20), semester number(1), spi number(4,2), constraint pk_aca primary key (roll_no,name));

(c)

create table academic (roll_no number(20),department_name varchar(20),name varchar(20), semester number(1), spi number(4,2), constraint pk_aca primary key (roll_no,name,semester,branch));

(d)

create table academic (roll_no number(20),department_name varchar(20),name varchar(20), semester number(1), spi number(4,2), constraint pk_aca primary key (roll_no,name,semester));

Answer:

Option (c)

Showing 21 to 30 out of 40 Questions