Questions

Q:

How many years ago earth is believed to be originated?

Answer

 4600 million

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

0 2224
Q:

Acceleration is the rate of change of

A) Speed B) Velocity
C) Jerk D) Jounce
 
Answer & Explanation Answer: B) Velocity

Explanation:

The rate of change of velocity is called as Acceleration.

Report Error

View Answer Report Error Discuss

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

10 2224
Q:

The fish that can taste with its whole body?

A) Tropical cockroach B) Arctic tern
C) Catfish D) Koala
 
Answer & Explanation Answer: C) Catfish

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

3 2223
Q:

Glass is made of the mixture of

A) sand and silicates B) quartz and sand
C) mica and quartz D) mica and silicates
 
Answer & Explanation Answer: A) sand and silicates

Explanation:

A glass is made of liquid sand. You can make glass by heating ordinary sand and made into a liquid and mix with silicates to form a glass.

Report Error

View Answer Report Error Discuss

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

6 2222
Q:

When driving in reverse you should

A) Unbuckle your seat belt so you can reverse as quickly as possible B) Take care and never reverse for a greater distance and time than is necessary
C) Put your hazard warning lights on and perform the manoeuvre as quickly as possible to minimise danger D) Sound your horn to warn other drivers
 
Answer & Explanation Answer: B) Take care and never reverse for a greater distance and time than is necessary

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 2222
Q:

What compound directly provides energy for cellular work?

A) ATP B) ADP
C) NADP D) NADH
 
Answer & Explanation Answer: A) ATP

Explanation:

ATP - Adinosine Triphosphate is the compound that directly provides energy for cellular work.

Report Error

View Answer Report Error Discuss

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

1 2222
Q:

There is no reason (that life may exist) P (in great profusion) Q (why we should not be willing to think) R (in other worlds) S

The correct sequence should be

A) R S P Q B) P Q S R
C) R P Q S D) R Q S P
 
Answer & Explanation Answer: C) R P Q S

Explanation:

Since, the sentence starts talking about the reason; R will be the continuing statement as it goes with the flow of the statement. The continuing statement talks about the existing of life i.e. P. Thus, all other options are eliminated. The correct formation would be, ‘There is no reason why we should not be willing to think that life may exist in great profusion in other worlds.’

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2222
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 2221