Questions

Q:

Which state govt launched 'My City My Budget' initiative?

A) Uttar Pradesh B) Karnataka
C) Telangana D) Andhra Pradesh
 
Answer & Explanation Answer: B) Karnataka

Explanation:
Report Error

View Answer Report Error Discuss

4 2844
Q:

Which of the following organelle is known as the 'Power House' of the cell?

A) Golgi Bodies B) Ribosomes
C) Mitochondria D) None of these
 
Answer & Explanation Answer: C) Mitochondria

Explanation:

Mitochondria are known as 'Power House' of the cell because they produce energy in the form of ATP.

Report Error

View Answer Report Error Discuss

Filed Under: Biology

5 2844
Q:

How do you get more retailers / customers for your business? What are the steps you would take?

Answer

Applicant should answer that being in a wholesale market, he/she would plan and direct advertising and promotional activities to attract more retailer suppliers. Promotional activities like posters, contests, coupons, give-away to create extra interest in the purchase of a product or services from customers or retailers.

Report Error

View answer Workspace Report Error Discuss

Subject: Retail

1 2844
Q:

Undefined reference to 'pthread_create'

How to Fix this error?

Answer

This is a common error while compiling C program in Linux. This error occurs when you are using pthread_create function to create threads in your programs.


To fix this problem ensure following points:
Include header file pthread.h in your program.
Add –lpthread linker flag with compilation command.
1- Include Header file
#include <stdio.h>
#include <pthread.h>
...
...
2- Compile command
gcc main.c -o main -lpthread

Report Error

View answer Workspace Report Error Discuss

0 2844
Q:

Write a c program for insertion sort.

Answer

#include<stdio.h>
int main(){

  int i,j,s,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

  printf("After sorting: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2841
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

6 2841
Q:

A battlefield always has:

A) Elephants B) Soldiers
C) Arrows D) Chariots
 
Answer & Explanation Answer: C) Arrows

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

2 2841
Q:

Who gave the safety valve theory for Indian National Congress?

A) Lala Lajpat Rai B) MN Roy
C) Bal Gangadhar Tilak D) Bipinchandra Pal
 
Answer & Explanation Answer: A) Lala Lajpat Rai

Explanation:

Lala Lajpat Rai, popularly known as Punjab Kesari was an Indian Freedom Fighter who gave the safety valve theory for Indian National Congress in 1916 in a daily news paper paper 'Young India'. 

Who_gave_the_safety_valve_theory_for_Indian_National_Congress1559629734.jpg image

It was said that the INC was started by Viceroy Lord Dufferin with the help of an ex Civil Services member as a 'Safety Valve' against the popular discontent.

Report Error

View Answer Report Error Discuss

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

8 2840