Questions

Q:

The main source of organic matter in soil is

A) bacteria B) fungi
C) water D) plants
 
Answer & Explanation Answer: D) plants

Explanation:

The main source of organic matter in soil is the plant and animal tissue that decompose at each level of breakdown.

Report Error

View Answer Report Error Discuss

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

5 2416
Q:

Is CST applicable on freight charges?

Answer

CST is not payable on outward freight (if charged separately) and outward insurance if property in goods passes to buyer at the time of despatch.


 


It means that Sale price does not include Freight charges will not attract CST when shown separately in they Invoice. But goods & freight show in one invoice CST will attractive.

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Economy Exam Prep: Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2416
Q:

In the following question, some part of the sentence may have errors. Find out which part of the sentence has an error and select the appropriate option. If a sentence is free from error, select ‘No Error’.

Progress in life depends (1)/ a good deal under crossing (2)/ one threshold after another. (3)/ No error (4)

A) 1 B) 2
C) 3 D) 4
 
Answer & Explanation Answer: B) 2

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams
Job Role: Bank Clerk

0 2416
Q:

What is the general formula for a straight-chain alkane?

A) C2nH2n+3. B) CnH2n+2
C) CnH2n D) CnH3n+2.
 
Answer & Explanation Answer: B) CnH2n+2

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2416
Q:

In the given question, a part of the sentence is printed in bold. Below the sentence, three alternatives to the bold part are given which may help improve the sentence. Choose the option that reflects the correct use of the phrase in the context of the sentence. In case the given sentence is correct, your answer is (E) i.e. No correction required.

There is little room for free and open inquiry, and fundamental values and cultural norms remain largely unquestioned.

I. There is a little room for free and open inquiry

II. There is the little room for free and open inquiry

III. There is lessening room for free and open inquiry

A) Only I B) Only II
C) Only III D) Both I and III
 
Answer & Explanation Answer:

Explanation:
'Little' carries a negative connotation and means hardly any or negligible. 'A little' carries a positive connotation and means 'some'. Since second part of the sentence mentions that 'fundamental values and cultural norms remain largely unquest ioned', it can be concluded that something negative is being talked about. Thus, there would be no option for free and open inquiry.
Report Error

View Answer Report Error Discuss

Filed Under: English

0 2415
Q:

A sentence has been given in Direct/Indirect Speech. Out of the four given alternatives, select the one which best expresses the same sentence in Indirect/Direct Speech
 
The lawyer said to them, “Call the witness."

A)

The lawyer asked for the witness

B)

The witness be called by the lawyer

C)

The lawyer called the witness

D)

The lawyer commanded them to call the witness

 
Answer & Explanation Answer: D)

The lawyer commanded them to call the witness



Explanation:
Report Error

View Answer Report Error Discuss

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

1 2415
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 2415
Q:

Short term side effects of alcohol and other drugs include

A) Temporary blindness B) Disrupted sleep
C) Forgetfulness D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Short term side effects of alcohol and other drugs include forgetfulness, temporary blindness and disrupted sleep.

Report Error

View Answer Report Error Discuss

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

1 2415