Questions

Q:

Operating system is the most common type of

A) Application software B) Word processing
C) System software D) Communication software
 
Answer & Explanation Answer: C) System software

Explanation:

Operating system is the most common type of System software.

Report Error

View Answer Report Error Discuss

3 2334
Q:

Which describes a clinical psychologist?

A) specialist who studies behavior and emotions, but cant prescribe medication B) specialist in diagnosing and treating mental disorders who can prescribe medication
C) specialist working primarily with the family members of someone in psychiatric care D) None of the above
 
Answer & Explanation Answer: A) specialist who studies behavior and emotions, but cant prescribe medication

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2333
Q:

Rise in sugar levels in blood is detected by the cells of:

A) Liver B) Gall bladder
C) Kidney D) Pancreas
 
Answer & Explanation Answer: D) Pancreas

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams , CAT

4 2333
Q:

Rearrange the parts of the sentence in correct order:
At one level,
P - ­the law in understanding
Q - ­such cases of violence
R­ - one senses the limits of

A) RQP B) PQR
C) RPQ D) QRP
 
Answer & Explanation Answer: C) RPQ

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

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:

The hot holding temperature for potentially hazardous foods must be

A) not less than 60 deg B) less than 60 deg
C) less than 5 deg D) None of the above
 
Answer & Explanation Answer: A) not less than 60 deg

Explanation:

Potentially hazardous foods are foods that might contain food poisoning bacteria and are capable of supporting growth of these bacteria or formation of toxins to levels that are unsafe for consumers, if the foods are not stored at correct temperatures. Toxins are poisonous chemicals produced by some types of bacteria.


The food can be left at room temperature until it reaches 60 deg C because food-poisoning bacteria will not multiply at 60 deg C or above. However, do not leave food cooling at room temperature unless you are sure that the temperature of the food is still at least above 60 C.

Report Error

View Answer Report Error Discuss

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

3 2332
Q:

Hub works on which layer?

A) Network layer B) Physical layer
C) Data link layer D) All of the above
 
Answer & Explanation Answer: B) Physical layer

Explanation:

Hub works on layer 1 i.e, physical layer.

Report Error

View Answer Report Error Discuss

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

3 2332
Q:

Brownish film formed on iron when left in open is called?

A) Dust B) Shovel
C) Spade D) Rust
 
Answer & Explanation Answer: D) Rust

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

1 2332