1. The name of the union given in the Constitution is





Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

Show Similar Question And Answers
QA->A statement followed by two assumptions I and II is given. You have to consider the statement to be true even if it seems to be at variance from commonly known facts. You are to decide which of the given assumptions can definitely be drawn from the given statement. Indicate which one of the four given alternatives is correct ? Statement : If more encouragement is given to Sports, Indians will win more gold medals at the Olympic Games. Assumptions : I. Indians do not win gold medals. II. More enc....
QA->Two statements are given followed by two conclusions I and II. You have to consider the two statements to be true even if they seem to be at variance from commonly known facts. You have to decide which one of the given conclusions is definitely drawn from the given statements. Statement : All virtuous persons are happy. No unhappy person is virtuous. Conclusions : I. Happiness is related to virtue II. Unhappy person is not virtuous.....
QA->Under the provisions of Article 343 of the Constitution, Hindi was declared the official language of the Union. But the use of English language was allowed to continue for the official purpose of the Union for a period of?....
QA->The Constitution recognised Hindi in Devanagari script as the official language of the Union as per which article of the Indian constitution?....
QA->The member of the Constituent Assembly who made the remark that “The Preamble is the most precious part of the Constitution. It is the soul of the Constitution. It is the key to the Constitution”?....
MCQ->Pick out thể one word for - a secret arrangement....
MCQ->Point out the error in the program. #include<stdio.h> #include<stdlib.h> union employee { char name[15]; int age; float salary; }; const union employee e1; int main() { strcpy(e1.name, "K"); printf("%s", e1.name); e1.age=85; printf("%d", e1.age); printf("%f", e1.salary); return 0; }....
MCQ->What will be the output of the program? #include<stdio.h> #include<stdlib.h> union employee { char name[15]; int age; float salary; }; const union employee e1; int main() { strcpy(e1.name, "K"); printf("%s %d %f", e1.name, e1.age, e1.salary); return 0; }....
MCQ->What will be the output of the program? #include<stdio.h> #include<stdlib.h> int main() { union test { int i; float f; char c; }; union test t; t = (union test )malloc(sizeof(union test)); t->f = 10.10f; printf("%f", t->f); return 0; }....
MCQ->Which of the following is/are correctly matched:1. Stamp duties and duties on medical and toilet preparations-levied by the Union but collected and appropriated by the States. 2. Duties on succession to property other " than agricultural land-levied and' collected by the Union but assigned to the States. 3. Taxes on income other than corporation tax and tax on agricultural income-levied. collected and appropriated by the Union. 4. Receipts from Broadcasting-non- tax revenue of the Union.?....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution