Questions

Q:

When does land breeze occur?

A) Fall B) Winter
C) Both A & B D) Hot summer
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Land breezes are more common during winter and fall season. It occurs as it becomes night, the air on the land colls fast and air on the water surface are warmth than that and begin to rise.

Report Error

View Answer Report Error Discuss

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

3 2334
Q:

Which memory is stored permanently?

A) RAM B) Computer cache
C) Hard drive D) All of the above
 
Answer & Explanation Answer: C) Hard drive

Explanation:

The memory which can be retained even the power is off is called as Permanent memory or Persistent memory. Computer's hard drive is an example of permanent memory and computer's cache or RAM are examples of temporary memory.

Report Error

View Answer Report Error Discuss

2 2334
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:

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:

Which one among the following stars is nearest to the earth?

A) Proxima Centauri B) Sirius
C) Arcturus D) Spica
 
Answer & Explanation Answer: A) Proxima Centauri

Explanation:

Proxima Centauri is the nearest star to the Earth.

Report Error

View Answer Report Error Discuss

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

14 2332
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