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

In the following question, out of the four alternatives, choose the word which best expresses the meaning of the given word and click the button corresponding to it.

DEVASTATION

A)  DESTRUCTION B)  CONSTRUCTION
C) SEPARATION D) FRUSTRATION
 
Answer & Explanation Answer: A)  DESTRUCTION

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2262
Q:

The Mesoamerican leader Pakal, The great was

A) the king of a Maya city-state. B) the ruler of a Zapotec state.
C) the emperor of the Aztec people. D) the head of the Inca religion.
 
Answer & Explanation Answer: A) the king of a Maya city-state.

Explanation:

The Mesoamerican leader Pakal, The great was the king of a Maya city-state in the history.

Report Error

View Answer Report Error Discuss

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

2 2262
Q:

A computer port is used to

A) Donwload files B) Communicate with other computer peripherals
C) Communicate with hard disks D) All of the above
 
Answer & Explanation Answer: B) Communicate with other computer peripherals

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2262
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 2261
Q:

In which year American Revolution started ?

A) 1774 B) 1775
C) 1776 D) 1777
 
Answer & Explanation Answer: B) 1775

Explanation:

American Revolution started in 1775 and lasted till 1781.

Report Error

View Answer Report Error Discuss

Filed Under: World History

1 2260
Q:

Is cholesterol Hydrophobic or Hydrophilic?

A) Hydrophobic B) Hydrophilic
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Cholesterol is referred as an amphipathic molecule, that it contains its hydrophilic and hydrophobic parts.

Report Error

View Answer Report Error Discuss

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

1 2260
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 2260