Questions

Q:

Which state introduces a new Open Online Learning Programme 'KOOL'?

A) Kerala B) Telangana
C) Uttar Pradesh D) Tamil Nadu
 
Answer & Explanation Answer: A) Kerala

Explanation:

The Kerala Infrastructure and Technology for Education (KITE) is the platform that can be used to train teachers, students and the general public. KOOL is a major step by the State of Kerala to become Indias first complete digital state in Education.

 

KOOL has been designed in a MOOC (Massive Open Online Course model), which is becoming popular worldwide.

Report Error

View Answer Report Error Discuss

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

1 2288
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 2287
Q:

Rearrange the parts of the sentence in correct order:
At one level,
P - ­the law in understanding
Q - ­such cases of violence
R­ - one senses the limits of

A) RQP B) PQR
C) RPQ D) QRP
 
Answer & Explanation Answer: C) RPQ

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2287
Q:

Who has become the 1st Indian transgender to be honoured with Padma Shri?

A) Kalki Subramaniam B) Madhu Kinnar
C) Narthaki Nataraj D) Rudrani Chettri
 
Answer & Explanation Answer: C) Narthaki Nataraj

Explanation:

Narthaki Nataraj has become the 1st Indian transgender to be honoured with Padma Shri.

Report Error

View Answer Report Error Discuss

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

0 2287
Q:

All India Radio was founded in

A) 1935 B) 1931
C) 1930 D) 1927
 
Answer & Explanation Answer: C) 1930

Explanation:

All India Radio founded in 1930.

With over 420 radio stations in about 23 languages & 179 dialects.

AIR is one of the largest radio broadcasters in world.

It also has 99.19% population coverage & 18 FM channels.

Report Error

View Answer Report Error Discuss

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

2 2287
Q:

The diploid generation of the plant life cycle always

A) produces eggs and sperm B) produces spores
C) is called the gametophyte D) develops from a spore
 
Answer & Explanation Answer: B) produces spores

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2287
Q:

The head mirror used by ENT doctors is

A) plano-convex B) convex
C) concave D) plane
 
Answer & Explanation Answer: C) concave

Explanation:

The head mirror used by ENT doctors is concave.

Report Error

View Answer Report Error Discuss

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

4 2287
Q:

What would be the output of the following program?

main()

{

  extern int i;

   i = 20;

  printf( "%d", sizeof(i) );

}

Answer

extern int i is a declaration and not a definition, hence Error occured.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2286