Database Administration Questions


Q:

O_er_t_o_

Complete the missing letters of the given word.

A) Ordination B) Oterration
C) Ovvulation D) Operation
 
Answer & Explanation Answer: D) Operation

Explanation:
Report Error

View Answer Report Error Discuss

16 9630
Q:

Which dml command is used in conjunction with @@identity?

A) INSERT and UPDATE B) UPDATE and DELETE
C) SCOPE_IDENTITY and IDENT_CURRENT D) Commit and rollback
 
Answer & Explanation Answer: C) SCOPE_IDENTITY and IDENT_CURRENT

Explanation:

Using automatically incrementing IDENTITY columns is very popular with database developers. You don’t need to explicitly calculate unique surrogate keys when inserting new data, the IDENTITY column functionality does that for you. The IDENTITY feature also allows you to specify useful Seed and Increment properties. When you use an INSERT statement to insert data into a table with an IDENTITY column defined, SQL Server will generate a new IDENTITY value.

 

You can use the @@IDENTITY variable and the SCOPE_IDENTITY and IDENT_CURRENT functions to return the last IDENTITY value that has been generated by SQL Server. This is very useful when you need to return the key for the row that has just been inserted, back to the caller.

Report Error

View Answer Report Error Discuss

20 9519
Q:

Buses start from a bus terminal with a speed of 20 km/hr at intervals of 10 minutes. What is the speed of a man coming from the opposite direction towards the bus terminal if he meets the buses at intervals of 8 minutes?

A) 5 kmph B) 6 kmph
C) 7.5 kmph D) 8 kmph
 
Answer & Explanation Answer: A) 5 kmph

Explanation:

Let p be the speed of man in kmph

According to the given data in the question,

Distance travelled by bus in 10 min with 20 kmph == Distance travelled by man in 8 min with (20 + p) kmph in opposite direction

=> 20 x 10/60 = 8/60 (20 + p)

=> 200 = 160 + 8p

=> p = 40/8 = 5 kmph.

Report Error

View Answer Report Error Discuss

14 9505
Q:

The cricket match proved to be a big draw. (Idioms & Phrases)

A) a huge attraction B) a game without any result
C) a keen contest D) a lovely spectacle
 
Answer & Explanation Answer: A) a huge attraction

Explanation:

Here it is an idiom that says The cricket match proved to be a big draw means it stands as a huge attraction.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

2 9453
Q:

18 tens 20 ones =

A) 1820 B) 180
C) 200 D) 160
 
Answer & Explanation Answer: C) 200

Explanation:

18 tens 20 ones, the given stateent can be split into

18 tens = 18 x 10 = 180

20 ones = 20 x 1 = 20

 

Then add both => 180 + 20 = 200

 

Hence, 18 tens 20 ones = 200.

Report Error

View Answer Report Error Discuss

12 9388
Q:

Who is the primary Author of HTML?

A) Sabeer Bhatiya B) Tim Berners-Lee
C) Brendan Eich D) Google Inc.
 
Answer & Explanation Answer: B) Tim Berners-Lee

Explanation:

The primary Author of HTML is Tim Berners-Lee, a scientist and academic, with the assistance of his colleagues at CERN, an international scientific organization based in Geneva, he did this. Berners-Lee invented the World Wide Web in 1989 at CERN.

Report Error

View Answer Report Error Discuss

5 9363
Q:

Three taps I, J and K can fill a tank in 20,30and 40 minutes respectively. All the taps are opened simultaneously and after 5 minutes tap A was closed and then after 6 minutes tab B was closed .At the moment a leak developed which can empty the full tank in 70 minutes. What is the total time taken for the completely full ?

A) 24.315 minutes B) 26.166 minutes
C) 22.154 minutes D) 24 minutes
 
Answer & Explanation Answer: B) 26.166 minutes

Explanation:

Upto first 5 minutes I, J and K will fill => 5[(1/20)+(1/30)+(1/40)] = 65/120


For next 6 minutes, J and K will fill => 6[(1/30)+(1/40)] = 42/120


So tank filled upto first 11 minutes = (65/120) + (42/120) = 107/120
So remaining tank = 13/120


Now at the moment filling with C and leakage @ 1/60 per minute= (1/40) - (1/70) = 3/280.
So time taken to fill remaining 13/120 tank =(13/120) /(3/280) = 91/6 minutes

 

Hence total time taken to completely fill the tank = 5 + 6 + 91/6 = 26.16 minutes.

Report Error

View Answer Report Error Discuss

13 9352
Q:

The digital computer was developed primarily in

A) USA B) UK
C) Russia D) Japan
 
Answer & Explanation Answer: A) USA

Explanation:

A digital computer accepts, processes and outputs data in digitized forms. The digital computer was developed primarily in Unites States of America.

Report Error

View Answer Report Error Discuss

28 9293