Questions

Q:

In the following question, out of the four alternatives, select the alternative which is the best substitute of the words/sentence.

Expel someone from a property, especially with the support of the law

A) Genial B) Evict
C) Cordial D) Convivial
 
Answer & Explanation Answer: B) Evict

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: CAT , GRE , TOEFL
Job Role: Bank Clerk , Bank PO

0 2328
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.

He took a loan of hundred rupees from me.

A) debt B) demand
C) advance D) no improvement
 
Answer & Explanation Answer: D) no improvement

Explanation:

No improvement is required. Loan is a temporary provision of money, usage is correct. Debt is an obligation. Demand is a claim to something owed. Advance is a supply in expectation of repayment.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2328
Q:

An electron and a proton starting from rest get accelerated through potential difference of 100kV. The final speeds of the electron and the proton are Ve and Vp respectively. Which of the following relations is correct?

A) Ve > Vp B) Ve < Vp
C) Ve = Vp D) Cannot be determined
 
Answer & Explanation Answer: A) Ve > Vp

Explanation:

Both when accelerated through a potential difference of 100KV, they will have the same energy. The mass of the electron is less than the mass of a proton, hence it will move faster(momentum).

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

3 2328
Q:

Which one of the following is the cause for a change in the season?

A) Earth’s Rotation and Revolution B) Earth’s Rotation
C) Earth’s Revolution D) None of the above
 
Answer & Explanation Answer: C) Earth’s Revolution

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2327
Q:

The ratio of volume of a cone to that of a cylinder if cylinder radius is reduced by 4 times and its height increased by 8 times of that of the cone, is - 

A) 3:2 B) 2:3
C) 5:7 D) 7:5
 
Answer & Explanation Answer: B) 2:3

Explanation:

Ans. Let radius of the base and height of the cone be ‘r’ & ‘h’ respectively.

Then volume of cone = πr2h/3 For cylinder, radius is reduced by 4 times = r/4 And,  height is increased by 8 folds = 8h Volume of cylinder = πR2H = π(r/4)2 (8h) = (16/8)πr2h = πr2h/2 Ratio of volume of cone to volume of cylinder = (πr2h/3) : (πr2h/2) Or, Ratio = 2 : 3.

Report Error

View Answer Report Error Discuss

1 2327
Q:

The Regent (released Voltaire) P (having discovered that he had imprisoned) Q (Ran innocent man and gave him a pension) S

The correct sequence should be

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

Explanation:

Since, the starting statement carries a subject; the next statement will carry a verb i.e. Q follows as it mentioned the discovery of the Regent. R will bethe continuing statement which states what he actually discovered. P follows next as it talked about the reaction of the Regent after the discovery. And S would be the concluding statement and thus form a coherent paragraph.

The correct formation would be, ‘The Regent having discovered that he had imprisoned an innocent man released Voltaire and gave him a pension.’

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2327
Q:

The Earth's population has ________since the turn of the century

A) Stayed the same B) doubled
C) trebled D) multiplied ten times
 
Answer & Explanation Answer: C) trebled

Explanation:

The population increases in geometrical progression and has crossed the 5 billion mark. The united nations estimate an average growth rate of 1.5% per annum.

Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2326
Q:

Write a program to generate the Fibonacci series in c?

Answer

 #include<stdio.h>
int main(){
    int k,r;
    long int i=0l,j=1,f;

    //Taking maximum numbers form user
    printf("Enter the number range:");
    scanf("%d",&r);

    printf("FIBONACCI SERIES: ");
    printf("%ld %ld",i,j); //printing firts two values.

    for(k=2;k<r;k++){
         f=i+j;
         i=j;
         j=f;
         printf(" %ld",j);
    }
 
    return 0;
}

Sample output:
Enter the number range: 15
FIBONACCI SERIES: 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2326