Questions

Q:

What has feet and legs and nothing else?

Answer

Stocking is long sock that women wore which has legs and feet and nothing else.

Report Error

View answer Workspace Report Error Discuss

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

1 2483
Q:

The term ageism refers to

A) judging people on the basis of chronological age B) the demographics of the population pyramid
C) the veneration of the elderly D) the view of society held by older people
 
Answer & Explanation Answer: A) judging people on the basis of chronological age

Explanation:

The term ageism refers to judging people on the basis of chronological age. It is a discrimination against individuals or groups on the basis of their age.

Report Error

View Answer Report Error Discuss

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

1 2483
Q:

Operating system is the most common type of

A) Application software B) Word processing
C) System software D) Communication software
 
Answer & Explanation Answer: C) System software

Explanation:

Operating system is the most common type of System software.

Report Error

View Answer Report Error Discuss

3 2482
Q:

The notable hardness of bone is attributed to

A) the presence of inorganic hydroxyapatites B) the presence of glycoproteins
C) the presence of collagen fibers D) the presence of cartilage
 
Answer & Explanation Answer: A) the presence of inorganic hydroxyapatites

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2482
Q:

Look at the underlined part of each sentence. Below each sentence are given three possible substitutions for the underlined part. If one of them (a), (b) or (c) is better than the underlined part, indicate your response on the Answer Sheet against the corresponding letter. If none of the substitutions imporves the sentence, indicate (d) as your response on the Answer Sheet.

The chairman with the other members of the board are touring Europe these days.

A) have been on touring B) is touring
C) have toured D) no improvement
 
Answer & Explanation Answer: B) is touring

Explanation:

The main subject ‘The Chairman’ is singular, hence singular verb ‘is touring’ will be used.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2482
Q:

Each item consists of six sentences of a passage. The first and sixth sentences are given in the beginning as S1 and S6. The middle four sentences in each have been jumbled up and labelled as P, Q, R and S. You are required to find the proper sequence of the four sentences and mark your response accordingly on the Answer Sheet.

S1 :The weak have no place here, in this life or in any other life. Weakness leads to slavery.
S6 :This is the great fact : strength is life, weakness is death. Strength is felicity, life eternal, immortal; weakness is constant strain and misery : weakness is death.
P :They dare not approach us, they have no power to get a hold on us, until the mind is weakened.
Q : Weakness leads to all kinds of misery, physical and mental. Weakness is death.
R : But they cannot harm us unless we become weak, until the body is ready and predisposed to receive them.
S :There are hundreds of thousands of microbes surrounding us.The correct sequence should be

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

Explanation:
QSRP is the correct order in which sentences should be arranged.
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2482
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 2482
Q:

What is a drawback of MVT?

Answer

It does not have the features like



  1. ability to support multiple processors

  2. virtual storage

  3. source level debugging

Report Error

View answer Workspace Report Error Discuss

0 2481