Questions

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 2314
Q:

Who is called 'the father of modern African writing " novelist?

Answer

Chinua Achebe.

Report Error

View answer Workspace Report Error Discuss

1 2314
Q:

M is a 7 letter word, M is impossible for GOD, The poor have M and The rich look for M from the poor, If you eat M you will die, M is more important than your life. I swear i will give you M if you get the answer. What is M?

Answer

The required 7 letter English word is NOTHING.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: Bank Exams

7 2313
Q:

What is a Multi-homed Host?

Answer

It is a host that has a multiple network interfaces and that requires multiple IP addresses is called as a Multi-homed Host

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

1 2313
Q:

Glass is made of the mixture of

A) sand and silicates B) quartz and sand
C) mica and quartz D) mica and silicates
 
Answer & Explanation Answer: A) sand and silicates

Explanation:

A glass is made of liquid sand. You can make glass by heating ordinary sand and made into a liquid and mix with silicates to form a glass.

Report Error

View Answer Report Error Discuss

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

6 2313
Q:

What are sources of energy during exercise?

A) blood sugars B) muscle glycogen
C) intramuscular triacylglycerols D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

The sources of energy during exercise are muscle glycogen, blood sugar, blood fatty acids and intramuscuar triacylglycerols.

running-573762_6401540290351.jpg image

Report Error

View Answer Report Error Discuss

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

3 2312
Q:

Which keyboard shortcut bolds selected text?

A) CTRL + I B) SHIFT + CTRL + S
C) CTRL + B D) CTRL + SHIFT + I
 
Answer & Explanation Answer: C) CTRL + B

Explanation:

CTRL + B is computer keyboard shortcut bolds selected text.

CTRL + I is used for making the selected text italic

SHIFT + CTRL + S used for SAVE AS option for any document or file.

Report Error

View Answer Report Error Discuss

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

4 2312
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 2312