Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

UPSC Interview Questions
Questions Answers Views Company eMail

Marx was belongs to which country

19 20387

Who are the authors of the Indian Constitution as per its Preamble

7 16473

General Knowledge & Current Affairs Questions and Answers - Set 1

55 608894

what is syllabus of appsc group1?

28 74051

What is used to disintegrate bladder stones ? (a) infrared rays (b) ultraviolet rays (c) X-rays (d) Ultrasonics

2 8533

The ?Grand Trunk Road? connects (a) Kolkata and Mumbai (b) Delhi and Chennai (c) Kolkata and Amritsar (d) Tirupati and Ludhiana

12 40005

A group of boys decided to buy a few cassettes whose price was between Rs. 200 and Rs. 250. But at the time of purchase, two of the boys declined to contribute as a result of which the remaining boys had to pay Re. 1 more than they had originally planned. What was the price of the cassettes if the boys contributed equally and in whole number of rupees? (a) Rs. 220 (b) Rs. 210 (c) Rs. 230 (d) Rs. 240

2 6551

The maximum strength of Lok Sabha has been fixed at (1) 530 (2) 545 (3) 525 (4) 520

6 13736

Who founded the Brahmo Samaj? (a) Debendranath Tagore (b) Keshab Chandra Sen (c) Raja Ram Mohan Roy (d) Ishwar Chandra Vidyasagar

2 7135

During the Mughal period which one of the following traders were the first to come to India? (a) Portuguese (b) Dutch (c) Danish (d) English

3 14280

?Radcliff line? is a boundary line between (a) India and Bangladesh (b) India and Bhutan (c) India and China (d) India and Pakistan

14 21071

The State which has the largest number of seats reserved for the Scheduled Tribes in the Lok Sabha is (a) Bihar (b) Gujarat (c) Uttar Pradesh (d) Madhya Pradesh

6 32451

The sculpture with the three faces of Brahma, Vishnu and Mahesh known as ?Trimurti? appears in ______ caves (a) Kalva (b) Ellora (c) Elephanta (d) Ajanta

2 10855

When was decimal coinage introduced in India ? (a) 1947 (b) 1950 (c) 1957 (d) 1960

7 19353

Where was the first Municipal Corporation in India set up? (a) Bombay (b) Calcutta (c) Delhi (d) Madras

35 85004

Post New UPSC Interview Questions


UPSC Interview Questions


Un-Answered Questions

What are the different types of model available in coolplex

1463


What is function and its uses?

571


What is pdo classes?

564


What do you know about the historical background of Development Financial Institutions (DFIs)?

1479


Explain bezier curve in adobe photoshop?

53






What is amqp used for?

612


i need the details about bhel exam.how to apply for that.please send to my email-id.thenmozhi2k7@gmail.com

1543


How can one make the most of drupal? What are the main advantages?

89


Why do we use wpf?

112


#include #include #include #include void insert(struct btreenode **, int); void inorder(struct btreenode *); struct btreenode { struct btreenode *leftchild; struct btreenode *rightchild; int data; }; main() { struct btreenode *bt; bt=(struct btreenode *)NULL; int req,i=1,num; clrscr(); printf("Enter number of nodes"); scanf("%d",&req); while(i<=req) { printf("Enter element"); scanf("%d",&num); insert(&bt,num); i++; } inorder(bt); } void insert(struct btreenode **sr, int num) { if(*sr==NULL) { *sr=(struct btreenode *)malloc (sizeof(struct btreenode)); (*sr)->leftchild=(struct btreenode *)NULL; (*sr)->rightchild=(struct btreenode *)NULL; (*sr)->data=num; return; } else { if(num < (*sr)->data) insert(&(*sr)->leftchild,num); else insert(&(*sr)->rightchild,num); } return; } void inorder(struct btreenode *sr) { if(sr!=(struct btreenode *)NULL) { inorder(sr->leftchild); printf("\n %d",sr->data); inorder(sr->rightchild); } else return; } please Modify the given program and add two methods for post order and pre order traversals.

3257


What are the bugs we cannot find in black box?

698


How can we scale apache mahout in cloud?

35


How do I change the project path in visual studio?

412


Difference between sy-tabix and sy-index? Can you check sy-subrc after perform?

645


how meger function

2425