Questions

Q:

As per "Swachh Survekshan 2017" records India's cleanest city is  ?

A) Hyderabd B) Tirupathi
C) Indore D) Bangalore
 
Answer & Explanation Answer: C) Indore

Explanation:

i. The 'Swachh Survekshan 2017' survey results were recently announced by Urban Development Minister M Venkaiah Naidu. The total 434 cities of India were surveyed. Indore in Madhya Pradesh is India’s cleanest city while Gonda in Uttar Pradesh is the dirtiest.

ii. Gujarat has the maximum of 12 cities among the top 50 clean cities, closely followed by Madhya Pradesh with 11 and Andhra Pradesh with eight. Uttar Pradesh accounted for half of the bottom 50 cities in the cleanliness ranking.

Top 10 clean cities of India in 2017 are:

Indore (MP)
Bhopal (MP)
Visakhapatnam (Andhra Pradesh)
Surat (Gujarat)
Mysuru (Karnataka)
Tiruchirapally (Tamil Nadu)
New Delhi Municipal Council (New Delhi)
Navi Mumbai (Mumbai)
Tirupati (Andhra Pradesh)
Vadodara (Gujarat).

Top 5 Dirtiest cities of India (with Rank) in 2017 are:

Gonda (UP)- 434,
Bhusawal (Maharashtra)- 433,
Bagaha (Bihar)- 432,
Hardoi (Uttarakhand)- 431,
Katihar (Bihar)- 430.

Report Error

View Answer Report Error Discuss

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

2 4107
Q:

Who was the  Indian cricketer honored with CK Naidu Lifetime Achievement  Award in 2014 ?

A) Kapil Dev B) Sachin Tendulkar
C) Rahul Dravid D) M S Dhoni
 
Answer & Explanation Answer: A) Kapil Dev

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

1 4106
Q:

Train A, travelling at 84 kmph, overtook train B, traveling in the same direction, in 10 seconds. If train B had been traveling at twice its speed, then train A would have taken 22.5 seconds to overtake it. Find the length of train B, given that it is half the length of train A.

A) 180 m B) 100 m
C) 200 m D) 150 m
 
Answer & Explanation Answer:

Explanation:

Let speed of train B be x m/s And length of train B be y m
Then length of train A is 2y m
Speed of train A = 84 × 5/18 = 210/9 m/s = 70/3 m/s
A.T.Q, (2y+y)/10 = 70/3 − x .............(i)
and (2y+y)/ 22.5 = 70/3 − 2x ................(ii)
solving (i) and (ii), y = 50 m

Report Error

View Answer Report Error Discuss

0 4105
Q:

How would you use qsort() function to sort an array of structures?

Answer

#include "string.h"


#include "stdlib.h"


struct stud


{


       int rollno;


       int marks;


       char name[30];


};


int sort_m (struct stud *, struct stud *);


int sort_name (struct stud *, struct stud *);


int sort_marks (struct stud *, struct stud *);


 


main()


{


static struct stud ss[] = {


                                            { 15, 96, "Akshay" },


                                            { 2, 97, "Madhuri" },


                                            { 8, 85, "Aishvarya" },


                                            { 10, 80, "Sushmita" }


                                   };


int x,w;


clrscr();


w = sizeof (struct stud);


 


printf ('\nIn order of roll numbers:");


qsort (ss, 4, w, sort_rn);


for(x=0; x<4;x++)


     printf ("\n%d%s%d", ss[x].rollno, ss[x].name,ss[x].marks);


 


printf("\n\nIn order of names:");


qsort(ss, 4, sort_name);


 


for (x=0; x<4;x++)


      printf("\n%d%s%d",ss[x].rollno, ss[x].name,ss[x].marks);


printf("\n\nIn order of marks:");


qsort(ss,4,w,sort_marks);


 


for (x=0;x<4;x++)


      printf ("\n%d%s%d",ss[x].rollno,ss[x].name,ss[x].marks);


}


int sort_rn (struct stud *t1, struct stud *t2)


{


     return (t1->rollno-t2->rollno);


}


 


int sort_name (struct stud *t1, struct stud *t2)


{


     return (strcmp(t1->name,t2->name));


}


int sort_marks (struct stud *t1, struct stud *t2)


{


     return (t2->marks-t1->marks);


}


 


 


 

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 4102
Q:

Managing advertising, sales promotion and public relations :

what is public relations in marketing?

Answer

Public relations includes promotional activities that work to create a strong public image of the company. Public relations activities include helping the public to understand the company and its products. Public relations if done right can reach a large audience without the expensive cost of traditional advertising and marketing.

Report Error

View answer Workspace Report Error Discuss

0 4102
Q:

Prime Minister Narendra Modi flagged off the third Mahamana Express running between_______ .

A) Delhi and Lucknow B) Vadodara and Varanasi
C) Patna and Delhi D) Vadodara and Delhi
 
Answer & Explanation Answer: B) Vadodara and Varanasi

Explanation:
Report Error

View Answer Report Error Discuss

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

13 4102
Q:

What is the name for the process that is used to convert a series of instructions or programs, written in a high-level language into instructions(or a program) that can be run on a computer? 

A) Assembling B) Compiling
C) Translating D) Uploading
 
Answer & Explanation Answer: B) Compiling

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams
Job Role: Bank Clerk

7 4100
Q:

The pair of spinal nerves in main are

A) 30 B) 31
C) 32 D) 33
 
Answer & Explanation Answer: B) 31

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

12 4100