Questions

Q:

If you are using C language to implement the heterogeneous linked list, what pointer type will you use?

Answer

The heterogeneous linked list contains different data types in its nodes and we need a link, pointer to connect them. It is not possible to use ordinary pointers for this. So we go for void pointer. Void pointer is capable of storing pointer to any type as it is a generic pointer type.

Report Error

View answer Workspace Report Error Discuss

Subject: Database Exam Prep: GATE
Job Role: Database Administration

0 2267
Q:

Receptors for hearing are located in the

A) Vestibule B) Tympanic membrane
C) Semicircular canals D) Cochlea
 
Answer & Explanation Answer: D) Cochlea

Explanation:

Receptors_for_hearing_are_located_in_the1537768165.jpg image

Receptors for hearing the organ of corti or the spiral organ is located in the the mammalian cochlea.

Report Error

View Answer Report Error Discuss

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

0 2267
Q:

What is one way you can increase CTRs?

Answer

Add negative keywords to the ad group to reduce irrelevant impressions.

Report Error

View answer Workspace Report Error Discuss

0 2267
Q:

What molecule carries genetic information?

A) RNA B) DNA
C) Proteins D) Nucleotides
 
Answer & Explanation Answer: B) DNA

Explanation:

The nucleus of a cell contains chromosomes, which carry genetic information in a long molecule called DNA.

Genes are regions of DNA that carry the code to control a particular cell activity or the production of a particular protein.

Report Error

View Answer Report Error Discuss

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

1 2266
Q:

Which of the following is a characteristic of the Ascomycota?

A) Sac formation B) Zygospore formation
C) Basidium formation D) All of the above
 
Answer & Explanation Answer: A) Sac formation

Explanation:

Ascomycota is a division or phylum of the kingdom Fungi that, together with the Basidiomycota, form the subkingdom Dikarya. Its members are commonly known as the sac fungi or ascomycetes. 

 

Hence, Sac formation is a characteristic of the Ascomycota fungi.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

2 2266
Q:

The FROM SQL clause is used to 

A) specify what table we are selecting or deleting data FROM B) specify search condition  
C) specify range for search condition   D) None of these
 
Answer & Explanation Answer: A) specify what table we are selecting or deleting data FROM

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

24 2266
Q:

Which of the following country is known as Kalaallit Nunaat, meaning "Land of the people"?

A) Estonia B) Iceland
C) Panama D) Greenland
 
Answer & Explanation Answer: D) Greenland

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2266
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 2265