Questions

Q:

The transfer of data from one application to another in a computer system is known as

A) Dynamic Data Exchange B) Dodgy Data Exchange
C) Dogmatic Data Exchange D) Dynamic Disk Exchange
 
Answer & Explanation Answer: A) Dynamic Data Exchange

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

2 2817
Q:

Write a c program for insertion sort.

Answer

#include<stdio.h>
int main(){

  int i,j,s,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

  printf("After sorting: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2817
Q:

Plants that make their own food are called

A) Autotrophs B) Hydrophylls
C) Decomposers D) Heterotrophs
 
Answer & Explanation Answer: A) Autotrophs

Explanation:

Plants make their own food through the process of photosynthesis. Plants are self-sufficient. Green plants have the ability to prepare their own food and this is the reason why they are called autotrophs.

                                        Autotrophs1530267836.jpg image


They make their own food through the process of photosynthesis using light energy to make sugars from carbon dioxide (C02) and water (H20). The chlorophyll which is present in the leaves is the main reason for the production of food in the plants and it is the reason for the greenery of the leaves too.

Report Error

View Answer Report Error Discuss

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

4 2815
Q:

Undefined reference to 'pthread_create'

How to Fix this error?

Answer

This is a common error while compiling C program in Linux. This error occurs when you are using pthread_create function to create threads in your programs.


To fix this problem ensure following points:
Include header file pthread.h in your program.
Add –lpthread linker flag with compilation command.
1- Include Header file
#include <stdio.h>
#include <pthread.h>
...
...
2- Compile command
gcc main.c -o main -lpthread

Report Error

View answer Workspace Report Error Discuss

0 2814
Q:

The functional unit of the nervous system is the

A) Nephrons B) Axons
C) Neurons D) All of the above
 
Answer & Explanation Answer: C) Neurons

Explanation:

Neurons are the functional units of the nervous system in the body.

the_functional_unit_of_the_nervous_system_is_the1535026518.png image

Report Error

View Answer Report Error Discuss

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

3 2814
Q:

Which is India's Largest BPO (Business Process Outsourcing) Company?

A) Piogeon B) Spectramind
C) Technovate D) None of these
 
Answer & Explanation Answer: B) Spectramind

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

12 2813
Q:

A remedy for all diseases

A) Antiseptic B) Lyric
C) Narcotics D) Panacea
 
Answer & Explanation Answer: D) Panacea

Explanation:

Panacea, also known as panchrest, is a medicine supposed remedy that is claimed to cure all diseases and prolong life indefinitely. It is named after the Greek goddess of universal remedy Panakeia.

Report Error

View Answer Report Error Discuss

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

2 2813
Q:

What are the three parts of the Nucleotide?

Answer

Nucleotides are the building blocks of the DNA and RNA used as genetic material. Nucleotides also are used for cell signaling and to transport energy throughout cells.


Both deoxyribonucleic acid (DNA) and ribonucleic acid (RNA) are made up of nucleotides which consist of three parts::


1. Nitrogenous Base
2. Pentose Sugar
3. Phosphate Group.

Report Error

View answer Workspace Report Error Discuss

Subject: Biology Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

6 2809