Questions

Q:

Which state government has implemented ‘Green Protocol’ for weddings  ?

A) Kerala B) Goa
C) Himachal Pradesh D) Telangana
 
Answer & Explanation Answer: A) Kerala

Explanation:

The Kerala government has implemented Green Protocol for making weddings more naturally in the state. The purpose of the initiative is to reduce the use of plastic in daily life. With the implementation of the protocol, use of plastic and other non-degradable articles including disposable glasses and plates and thermocol decorations will be discouraged at marriage functions. Inspections will be held at marriage halls, convention centres and hotels and other venues of the wedding ceremony in this regard and action would be taken if the protocol is violated. The state nodal agency for sanitation ‘Suchitwa Mission’ has already launched the initiative in Kannur, Ernakulam, Kollam and Alappuzha on a pilot basis. As per officials, the protocol would be implemented in the rest of the districts soon.

Report Error

View Answer Report Error Discuss

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

5 4103
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:

World Population Day is observed on ____ ?

A) 9 July B) 11 July
C) 15 July D) 4 July
 
Answer & Explanation Answer: C) 15 July

Explanation:

World Population day is an annual event, observed on July 11 every year, which seeks to raise awareness of global population issues. 

Report Error

View Answer Report Error Discuss

Filed Under: Important Days and Years
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

6 4102
Q:

Under Sher Shah the largest administrative unit was administrated by a chief namely 

A) Shikadar B) Mansabdar
C) Kasi D) Faujdar
 
Answer & Explanation Answer: A) Shikadar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

5 4102
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 4101
Q:

Electrical Pressure is also called

A) Current B) Voltage
C) Resistance D) Power
 
Answer & Explanation Answer: B) Voltage

Explanation:

Electrical Pressure is also called as Voltage. Voltage is measured in Volts.

 

Volt : A unit of electrical pressure or Voltage is called Volt.

 

One volt is the amount of pressure required to cause one ampere of current to flow against one ohm of resistance.

 

Voltage is also referred to as Electromotive Force or Electrical Potential or Electrical Pressure.

Report Error

View Answer Report Error Discuss

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

9 4101
Q:

Which standard govern parallel communications?

A) CAT 5 B) IEEE 1284
C) RS-232 D) None of the above
 
Answer & Explanation Answer: B) IEEE 1284

Explanation:

IEEE 1284 is a standard that govern parallel communications.

 

  • IEEE 1284 is a standard that defines bi-directional parallel communications between computers and other devices.

 

  • It was originally developed in the 1970s by Centronics, and was widely known as the Centronics port, both before and after its IEEE standardization.

 

                      which_standard_govern_parallel_communications1539064136.jpg image

Report Error

View Answer Report Error Discuss

6 4100
Q:

' Ashoka Chakra ' is awarded for 

A) Outstanding contribution to literature B) Gallantry by children
C) Acts of gallantry in the presence of the enemy D) Acts most conspicuous bravery of self saccrifice on land, air or sea but not in the presence of the enemy
 
Answer & Explanation Answer: D) Acts most conspicuous bravery of self saccrifice on land, air or sea but not in the presence of the enemy

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

3 4099