Questions

Q:

Lala lajapathi rai is the author of the book

A) India Divided B) Hind Swaraj
C) Unhappy India D) Mother India
 
Answer & Explanation Answer: C) Unhappy India

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

1 2926
Q:

Largest district in Bangladesh?

A) Narayangunj B) Chittagong
C) Khagrachari D) Rangamati
 
Answer & Explanation Answer: D) Rangamati

Explanation:

The largest district in Bangladesh is Rangamati. And smallest district is Narayangunj.

Largest_district_in_Bangladesh1554457968.png image

Report Error

View Answer Report Error Discuss

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

5 2925
Q:

The book ' Redesigning the Aeroplane While Flying : Reforming Institutions' is written by

Answer

Arun Maira

Report Error

View answer Workspace Report Error Discuss

5 2922
Q:

How many jobs can be run concurrently on MVT?

Answer

15 jobs.

Report Error

View answer Workspace Report Error Discuss

1 2922
Q:

Isoneph indicates the lines of equal

A) cloudiness B) salinity
C) temperature D) pressure
 
Answer & Explanation Answer: A) cloudiness

Explanation:

A line on a map connecting points that have the same average percentage of cloudiness is called Isoneph.

 

Report Error

View Answer Report Error Discuss

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

6 2922
Q:

Who Built The Suez Canal?

A) Theodore Roosevelt B) Ferdinand de Lesseps
C) Robert Mills D) James Hoban
 
Answer & Explanation Answer: B) Ferdinand de Lesseps

Explanation:

The Suez Canal in Egypt, is a 101 mile long canal that connects the Mediterranean Sea with the Gulf of Suez, a northern branch of the Red Sea. It was built in 1869 by Ferdinand de Lesseps.

Report Error

View Answer Report Error Discuss

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

6 2922
Q:

When was the demand for a separate Telangana hit a turning point on?

Answer

The demand for a seperate Telangana hit a turning point on December 16,2010 when around 12-15 lakh attended the 'Telangana Maha Garjana' at Warangal in Andhra pradesh. The rally ste off a chain of events that culminated in the Centre agreeing to form a Telangana state.

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Politics

7 2920
Q:

Improve the following code using typedef.

struct node

{

      int data1;  float data2;

       struct node *left;

       struct node *right;

};

struct node *ptr;

ptr = (struct node *) malloc (sizeof (struct node) ); 

Answer

typedef struct node * treeptr


typedef struct node


{


         int data1;


         float data2;


         treeptr *left;


         treeptr *right;


}treenode;


treeptr ptr;


ptr = ( treeptr ) malloc ( sizeof ( treenode ) );

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2920