Questions

Q:

The first effective vaccine against polio was prepared by ?

A) Robert Edwards B) James Simpson
C) H Gibbon D) Jonas E Salk
 
Answer & Explanation Answer: D) Jonas E Salk

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Inventions
Exam Prep: AIEEE
Job Role: Bank Clerk

14 6838
Q:

Which of the following is tropical grassland?

A) Savannah B) Pampas
C) Prairies D) Taiga
 
Answer & Explanation Answer: A) Savannah

Explanation:

Tropical grasslands, or savannas, are also the homes of primates in Africa and Asia; no savanna-living primates exist in South America. Tropical grasslands comprise a mixture of trees and grasses, the proportion of trees to grass varying directly with the rainfall.

Report Error

View Answer Report Error Discuss

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

11 6837
Q:

Malabar is covered by which types of vegetation

A) Mountain forest B) Thorn
C) Tropical deciduous D) Tropical evergreen
 
Answer & Explanation Answer: D) Tropical evergreen

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

13 6836
Q:

Name the first e-commerce company that will become the member of Advertising Standards Council of India (ASCI)? 

A) Amazon B) Snapdeal
C) Paytm D) Flipkart
 
Answer & Explanation Answer: C) Paytm

Explanation:

The country’s fast-growing e-commerce industry will finally mark its presence at the Advertising Standards Council of India (ASCI), with Paytm set to become a member of the self-regulatory voluntary organisation next month i.e April 2017.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

3 6836
Q:

The Green Revolution in India was the outcome of the efforts of who amongst the following?

A) Dr MS Swaminathan B) Dr C Rangarajan
C) KV Kamath D) Dr Rakesh Mohan
 
Answer & Explanation Answer: A) Dr MS Swaminathan

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams
Job Role: Bank PO

18 6831
Q:

I am the first on Earth, the second in Heaven. I appear two times in a week you can only see me once in a year. Although I am in the middle of the sea, l am not found in month, but l am in February, June, September, October, November & December.

Who am I?

Answer

The letter 'E'.


As of the above given data,


It is in the 1st place in Earth, 2nd in Heaven and in the middle of the Sea.


It appears once in a Year and twice in a Week.


It is present in February, June, September, October, November & December.


But not in the Month.


 


Hence, it is the letter 'E'.

Report Error

View answer Workspace Report Error Discuss

18 6831
Q:

Which part of a computer performs calculations?

A) Control unit B) Arithmetic and logical unit
C) Both A & B D) Logic bus
 
Answer & Explanation Answer: B) Arithmetic and logical unit

Explanation:

A computer has a CPU which is called as Central Processing UNit or a Processor builton the mother board. It has many components like control unit and Arithmetic and logical unit. 

 

The Arithmetic and logical unit of the CPU performs the arithmetic operations or mathematical calculations.

Report Error

View Answer Report Error Discuss

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

6 6828
Q:

What do the functions atoi(), itoa() and gcvt () do? Show how would you use them in a program.

Answer

atoi()         Converts a string to an integer.


itoa()         Convert an integer to a string


gcvt()        Converts a floating-point number to a string


 


#include "stdlib.h"


main()


{


      char s[] = "12345";


      char buffer [15], string[20];


      int i;


      


      i = atoi (s);


      printf("\n%d",i);


 


       gcvt (20.141672, 4, buffer);


       printf ("\n%s", buffer);


 


       itoa(15, string,2);


        printf ("\n%s", string);


}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

2 6827