Questions

Q:

Pop music appeals to which type of audience?

A) A broad audience B) North American-born individuals only
C) An old audience D) A niche audience
 
Answer & Explanation Answer: A) A broad audience

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2313
Q:

Gravitational force is maximum at which place

A) Poles B) Tropic of cancer
C) Tropic of capricorn D) Equator
 
Answer & Explanation Answer: A) Poles

Explanation:

Gravitational force is the force that binds everything at the surface of the earth. Gravitational force is maximum at Poles.

Report Error

View Answer Report Error Discuss

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

5 2313
Q:

Plants that are more rare today are

A) Hydrophytes B) Xerophytes
C) Mesophytes D) None of the above
 
Answer & Explanation Answer: A) Hydrophytes

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2313
Q:

Whose part is the International Bureau of Education

A) UNESCO B) UNIDO
C) IMF D) None of these
 
Answer & Explanation Answer: A) UNESCO

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

1 2313
Q:

Improve the bracketed part of the sentence.
We (are looking forward for) a positive response from you.

A) are looking forward to B) have been looking forward at
C) should look forward at D) No improvement
 
Answer & Explanation Answer: A) are looking forward to

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2313
Q:

In each of the questions, four alternatives are given for the Idiom/Phrase. Choose the alternative which best expresses the meaning of the Idiom/Phrase and click the button corresponding to it.

To pull a long face

A) Looked happily B)  Looked surprised
C)  Looked sad D)  Looked calm
 
Answer & Explanation Answer: C)  Looked sad

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT

1 2313
Q:

Who was the architect of Taj Mahal?

A) Ustad Ahmad Lahouri B) Norman Foster
C) Henry Irwin D) Ustad Ghani Utbuddin
 
Answer & Explanation Answer: A) Ustad Ahmad Lahouri

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Places
Exam Prep: Bank Exams

14 2312
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 2312