Questions

Q:

A man standing close to the platform at a railway station experiences a pulling force towards a fast moving train because of __________ .

A) gravitational force between train and man B) illusion of the man
C) the centripetal force D) pressure difference due to fast moving air in between
 
Answer & Explanation Answer: D) pressure difference due to fast moving air in between

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics

0 2409
Q:

Zip files use what type of compression?

A) Lossless B) Lossy
C) Any of the above D) None of the above
 
Answer & Explanation Answer: A) Lossless

Explanation:

ZIP file is an archive file format that supports lossless data compression. Lossless is a fairly popular data compression method that is used in a number of different applications. Files can become corrupted when they are transferred over the internet in an uncompressed format. It enables devices to transmit or store the same amount of data in fewer bits.

Report Error

View Answer Report Error Discuss

4 2409
Q:

Mortar is a mixture of

A) cement B) water
C) sand D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Mortar is a mixture of cement or lime as a binder, sand and water.

Report Error

View Answer Report Error Discuss

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

2 2409
Q:

India has longest international border with which country?

A) Bhutan B) Nepal
C) Bangladesh D) Pakistan
 
Answer & Explanation Answer: C) Bangladesh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

1 2409
Q:

Another name for false productivity is

A) making poor decisions B) filling your mind with negative self-talk
C) driving toward success D) spinning your wheels
 
Answer & Explanation Answer: D) spinning your wheels

Explanation:

Another name for false productivity is Spinning your wheels. They use the term for false productivity because your wheels are spinning as you're doing work but you're not going anywhere i.e, making any progress.

Report Error

View Answer Report Error Discuss

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

2 2409
Q:

For economists, the word "utility" means

A) pleasure and satisfaction B) purposefulness
C) versatility and flexibility D) rationality
 
Answer & Explanation Answer: A) pleasure and satisfaction

Explanation:
Report Error

View Answer Report Error Discuss

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

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

Project Communications Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Information Distribution?

Answer

I. Inputs



  • Communications management plan


II. Tools and Techniques



  • Communications skills 

  • Information gathering and retrieval systems

  • Information distribution methods

  • Lessons learned process


III. Outputs



  • Organizational process assets (updates)

  • Requested changes

Report Error

View answer Workspace Report Error Discuss

0 2409