IT Trainer Questions


Q:

What grows when it eats but dies when it drinks?

Answer

A fire grows when it eats but dies when it drinks.

Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles Exam Prep: AIEEE , Bank Exams , GRE
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

12 6052
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

9 6041
Q:

80% of 900 + 162 x 4 x ? = 113 - 99

A) 0.5 B) 1
C) 4 D) 0
 
Answer & Explanation Answer: A) 0.5

Explanation:

80x900/100 + 256 x 4 x ? = 1331 - 99

720 + 1024 x ? = 1232

? = 1232 - 720/1024

? = 512/1024 = 0.5

? = 0.5 

Report Error

View Answer Report Error Discuss

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

11 6039
Q:

abcdefghijklmnopqrstuvwxyz Riddle

What sentence contains all abcdefghijklmnopqrstuvwxyz?

Answer

The Quick Brown Fox Jumped Over The Lazy Dog  is the sentence which contains all 26 alphabets i.e, from a to z.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer , Project Manager

14 6022
Q:

Ishikha got married 9 years ago. Today her age is 4/3 times her age at the time of marriage. At present her daughter’s age is one-sixth of her age. What was her daughter’s age three years ago?

A) 4 years B) 3 years
C) 2 years D) 1 year
 
Answer & Explanation Answer: B) 3 years

Explanation:

Let Ishika and her daughter present ages be p and q

 From the given data, 

p = 4/3(p - 9)

 => p = 36 years 

Hence, Ishika's present age = 36 years and

Her daughter's present age = 1/6 x 36 = 6 years 

Now, required her daughter’s age three years ago = 6 - 3 = 3 years.

Report Error

View Answer Report Error Discuss

13 6005
Q:

Which of the following is Not an Operating System?

A) UNIX B) Windows NT
C) C++ D) DOS
 
Answer & Explanation Answer: C) C++

Explanation:

C++ is not an Operating System.

 

An Operating System is a collection of system programs that manages all the other programs application programs in a computer as well as the allocation and use of hardware resources such as the CPU, Memory and the Hard Disk Drive.

It acts as an interface between the hardware and the user level program.

It controls and facilitates the overall operation of a computer. 

 

Here

UNIX : UNIX is a popular multi-user, multitasking operating system (OS) developed at Bell Labs.

 

Windows NT : Windows NT is a family of operating systems produced by Microsoft, the first version of which was released in July 1993.

 

DOS : DOS is Disk Operating System. The term DOS can refer to any operating system.

 

C++ : C++ is a programming language and computing platform.

 

Hence, C++ is not an Operating System.

Report Error

View Answer Report Error Discuss

10 5994
Q:

What do you understand by - 'If K is there L has to be there'

A) K & L will always be together B) K is not there, then L will not be there
C) k is there, then L will also be there D) K & L will always be not together
 
Answer & Explanation Answer: C) k is there, then L will also be there

Explanation:

This would not mean that K and L will always be together. It just implies that, if K is there, then L will also be there.

At the same time, it can happen that L is there but K isn't.

Remember, the condition is on K, not on L.

Report Error

View Answer Report Error Discuss

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

17 5983
Q:

The ratio of K’s and M’s ages is 4: 5. If the difference between the present age of M and the age of K, 5 years hence is 3 years, then what is the difference and total of present ages of K and M?

A) 8, 72 yrs B) 16, 65 yrs
C) 12, 84 yrs D) 10, 60 yrs
 
Answer & Explanation Answer: A) 8, 72 yrs

Explanation:

Let the present ages be K,M

Given K/M = 4/5

5K - 4M = 0 ......(1)

Also given that,

M - (K + 5) = 3

M - K = 8 .........(2)


Then, by solving (1) & (2)

M = 40 yrs and K = 32 yrs

Hence, Total of ages = 40 + 32 = 72 yrs

Difference of ages = 40 - 32 = 8 yrs.

Report Error

View Answer Report Error Discuss

3 5973