Questions

Q:

Name the two Indian companies that have been named in the list of world's most ethical companies by American think tank Ethisphere Institute.

A) Dabur and Tata B) Mahindra and Tata
C) Patanjali and Dabur D) Tata Steel and Wipro
 
Answer & Explanation Answer: D) Tata Steel and Wipro

Explanation:
      • Two Indian companies, Tata SteelBSE and Wipro have been named in the list of world’s most ethical companies by American think tank Ethisphere Institute.
      • Ethisphere honors those companies who recognize their role in society to influence and drive positive change in the business community and organizations around the world.
      • In 2017, 124 honorees were spanning five continents, 19 countries, and 52 industry sectors.
      • Wipro is one of the two information technology companies named in the list, the other being Xerox Corporation.
Report Error

View Answer Report Error Discuss

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

3 3794
Q:

What is the capital of Peru?

A) Warsaw B) Lima
C) Dakar D) Victoria
 
Answer & Explanation Answer: B) Lima

Explanation:

Lima is the capital of Peru

Report Error

View Answer Report Error Discuss

Filed Under: Country Capitals

10 3794
Q:

How would you check whether the contents of two structure variables are same or not?

Answer

struct emp


{


     char n[20];


      int age;


};


main()


{


    struct emp e1 = {"Dravid", 23};


   struct emp e2;


   scanf ("%s %d",e2.n, & e2.age);


   if( structcmp (e1,e2) ==0)


        printf ("The structures are equal");


   else


         printf ("The structures are unequal");


}


structcmp ( struct emp x, struct emp y)


{


     if (strcmp (x.n,y.n) ==0)


           if (x.age == y.age)


            return (0);


            return (1);


}


In short, if you nee to compare two structures, you'll have to write your own function to do so which carries out the comparison field by field.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 3794
Q:

Which of the following layers of the earth is believed to have the heavist mineral materials of highest density

A) Central core B) Crust
C) Mantle D) Both (B) and (C)
 
Answer & Explanation Answer: A) Central core

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 3794
Q:

Name the movie that voted 2016’s Best Film by Indian film critics’ poll?

A) Pink B) Sultan
C) Mohenjadaro D) Dangal
 
Answer & Explanation Answer: D) Dangal

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: CAT , GATE
Job Role: Bank Clerk , Bank PO

6 3794
Q:

' In CUstody ' , an english novels, is written by which one of the following

A) Vikram Seth B) Shoba De
C) Anita Desai D) VS.Naipaul
 
Answer & Explanation Answer: C) Anita Desai

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

4 3792
Q:

Which superhero shares a name with a town in Turkey?

A) Batman B) Spiderman
C) Ironman D) None of the above
 
Answer & Explanation Answer: A) Batman

Explanation:

Superhero Batman shares a name with an oil production Batman, a town in Turkey.

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

3 3792
Q:

If I use the following printf() to print a long int why I am not warned about the type mismatch?

printf ("%d",num );

Answer

When a function accepts a variable number of arguments , its prototype cannot provide any information about the number of arguments and type of those variable arguments. Hence the compiler cannot warn about the mismatches. The programmer must make sure that arguments match or must manually insert explicit typecast.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 3791