Questions

Q:

What is the percentage of oxygen in Al2(SO4)3?

A) 57.7% B) 56.1%
C) 53.1% D) 52.6%
 
Answer & Explanation Answer: B) 56.1%

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

1 2334
Q:

In the following question, out of the four alternatives, select the alternative which best expresses the meaning of the idiom/phrase.

Lend me your ear

A) To politely ask for someone's full attention B) Begging someone to listen to your grievances
C) When nobody is willing to hear your side of the story D) Call someone for severe scolding.
 
Answer & Explanation Answer: A) To politely ask for someone's full attention

Explanation:
Report Error

View Answer Report Error Discuss

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

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

Project Management Processes

What is the underlying concept for the interaction among the project management processes?

Answer

Plan-do-check-act cycle

Report Error

View answer Workspace Report Error Discuss

0 2333
Q:

Difference between Union and Union all?

Answer

The difference between Union and Union all is that Union all will not eliminate duplicate rows, instead it just pulls all rows from all tables fitting your query specifics and combines them into a table. A UNION statement effectively does a SELECT DISTINCT on the results set.

Report Error

View answer Workspace Report Error Discuss

10 2333
Q:

"Sultan Johor Cup" is associated with ______.

A) Hockey B) Cricket
C) Football D) Golf
 
Answer & Explanation Answer: A) Hockey

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

0 2332
Q:

What is Mail Gateway

Answer

It is a system that performs a protocol translation between different electronic mail delivery protocols

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

0 2331
Q:

In the following question, out of the four alternatives, select the alternative which best expresses the meaning of the idiom/phrase.

 

To quit on someone

 

A) To fire someone from a job. B) To cheat with someone.
C) To give up on a difficult person. D) To stop helping someone, especially when the support is needed.
 
Answer & Explanation Answer: D) To stop helping someone, especially when the support is needed.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2331