Questions

Q:

I crawl on the earth and rise on a pillar?

What am I?

Answer

A SHADOW can crawl on the earth and can rise on the pillar.

Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles Exam Prep: CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

4 2109
Q:

The Second World War ended in

Answer

1945 AD

Report Error

View answer Workspace Report Error Discuss

Subject: World History

1 2109
Q:

The first attempt in printing was made in England by

A) James Watt B) Isaac Newton
C) William Caxton D) James Arkwright
 
Answer & Explanation Answer: C) William Caxton

Explanation:

The first attempt in printing was made in England by William Caxton.

 

The_first_attempt_in_printing_was_made_in_England_by1552110131.jpg image

 

William Caxton was an English merchant, diplomat, and writer. He is thought to be the first person to introduce a printing press into England, in 1476, and as a printer was the first English retailer of printed books.

Report Error

View Answer Report Error Discuss

Filed Under: World History
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

0 2108
Q:

While running DOS on a PC, which command would be used to duplicate the entire diskette?

Answer

diskcopy

Report Error

View answer Workspace Report Error Discuss

1 2108
Q:

The fastest century record in one day cricket hold by

A) Chris Gayle B) A B Devilliers
C) Rohit Sharma D) Shahid Afridi
 
Answer & Explanation Answer: B) A B Devilliers

Explanation:

The fastest century record in one day International cricket was hold by South Africa Batsman A.B.Divilliers against West Indies on Jan 18, 2015 in Johannesburg. It was 100 in 31 balls.

Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

15 2108
Q:

Thirty white horses on a red hill, first they champ, then they stamp, then they stand still.

What are they?

Answer

They are teeth. 

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: GRE , GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

0 2107
Q:

The only bird which can fly backward is

A) Parrot B) Albatross
C) Penguin D) Humming
 
Answer & Explanation Answer: D) Humming

Explanation:

Humming bird is the smallest bird and the only bird which can fly in backwards in the world.

Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

11 2107
Q:

A subquery in an sql select statement.

Answer

A Subquery or Inner query or a Nested query is a query within another SQL query and embedded within the WHERE clause.


Subqueries are most frequently used with the SELECT statement. The basic syntax is as follows::


SELECT column_name [, column_name ]
FROM table1 [, table2 ]
WHERE column_name OPERATOR
(SELECT column_name [, column_name ]
FROM table1 [, table2 ]
[WHERE])



A subquery is used to return data that will be used in the main query as a condition to further restrict the data to be retrieved.


Subqueries can be used with the SELECT, INSERT, UPDATE, and DELETE statements along with the operators like =, <, >, >=, <=, IN, BETWEEN, etc.


 


There are a few rules that subqueries must follow −


 


1. Subqueries must be enclosed within parentheses.


2. A subquery can have only one column in the SELECT clause, unless multiple columns are in the main query for the subquery to compare its selected columns.


3. An ORDER BY command cannot be used in a subquery, although the main query can use an ORDER BY. The GROUP BY command can be used to perform the same function as the ORDER BY in a subquery.


4. Subqueries that return more than one row can only be used with multiple value operators such as the IN operator.


5. The SELECT list cannot include any references to values that evaluate to a BLOB, ARRAY, CLOB, or NCLOB.


6. A subquery cannot be immediately enclosed in a set function.


7. The BETWEEN operator cannot be used with a subquery. However, the BETWEEN operator can be used within the subquery.

Report Error

View answer Workspace Report Error Discuss

0 2107