Ankaleshwar in India is known for the production of (a) Bauxite (b) Coal (c) Iron ore (d) Petroleum
5 32120Who among the following is the Chairman of Planning Commission in India ? (a) Finance Minister of India (b) Prime Minister of India (c) President of India (d) Home Minister of India
34 66411Which one of the following dynasties was ruling over North India at the time of Alexander?s invasion? (a) Nanda (b) Maurya (c) Sunga (d) Kanva
3 14890As per the Indian Protocol, who among the following ranks highest in the order of precedence ? (a) Deputy Prime Minister (b) Former President (c) Government of a State within his State (d) Speaker of Lok Sabha
4 21545The most significant contribution of the Karachi session of 1931 was the resolution it passed on: (a) poorna swaraj (b) the partition of the country (c) participation in the Round Table conference (d) fundamental rights and economic policy
1 14457The Parliament of India consists of (A) The Lok Sabha and Rajya Sabha (B) The President, Lok Sabha and Rajya Sabha (C) The Lok Sabha, Prime Minister and Speaker (D) None of these
9 56855The Indian Civil Service was introduced during the time of (A) Lord Cornwallis (B) Lord Canning (C) Lord Curzon (D) Lord Dalhousie
10 49564The Rajya Sabha is: (a) dissolved once in two years (b) dissolved after every four years (c) adjourned every six months (d) not subject to dissolution
2 10882Can the Rajya Sabha be dissolved by the President? (a) Yes (b) No (c) At any time he likes (d) Sometimes
3 11406The President of India addresses his resignation letter to the: (A) Prime Minister (B) Vice President (C) Chief Justice of India (D) Speaker of the Lok Sabha
24 120014Post New ONGC Interview Questions
What is a node in c?
What is catalyst framework in spark?
Who invented hadoop?
Why is an excess-3 code is called an unweighted code?
How to viewing the angular 4 apps in a browser using ionic 3 cli?
group discussion important topics
How would you create a button with rounded edges?
ie it possible to charge WHT and VAT on one trancaction? if yes,kindly explain the dynamics/working of both taxes
The natural file converted to PDF file if Yes then explain ?
Need to convert this VHDL code into VLSI verilog code? LIBRARY IEEE; USE IEEE.STD_LOGIC_1164.ALL; ----using all functions of specific package--- ENTITY tollbooth2 IS PORT (Clock,car_s,RE : IN STD_LOGIC; coin_s : IN STD_LOGIC_VECTOR(1 DOWNTO 0); r_light,g_light,alarm : OUT STD_LOGIC); END tollbooth2; ARCHITECTURE Behav OF tollbooth2 IS TYPE state_type IS (NO_CAR,GOTZERO,GOTFIV,GOTTEN,GOTFIF,GOTTWEN,CAR_PAID,CHEATE D); ------GOTZERO = PAID $0.00--------- ------GOTFIV = PAID $0.05---------- ------GOTTEN = PAID $0.10---------- ------GOTFIF = PAID $0.15---------- ------GOTTWEN = PAID $0.20--------- SIGNAL present_state,next_state : state_type; BEGIN -----Next state is identified using present state,car & coin sensors------ PROCESS(present_state,car_s,coin_s) BEGIN CASE present_state IS WHEN NO_CAR => IF (car_s = '1') THEN next_state <= GOTZERO; ELSE next_state <= NO_CAR; END IF; WHEN GOTZERO => IF (car_s ='0') THEN next_state <= CHEATED; ELSIF (coin_s = "00") THEN next_state <= GOTZERO; ELSIF (coin_s = "01") THEN next_state <= GOTFIV; ELSIF (coin_s ="10") THEN next_state <= GOTTEN; END IF; WHEN GOTFIV=> IF (car_s ='0') THEN next_state <= CHEATED; ELSIF (coin_s = "00") THEN next_state <= GOTFIV; ELSIF (coin_s = "01") THEN next_state <= GOTTEN; ELSIF (coin_s <= "10") THEN next_state <= GOTFIV; END IF; WHEN GOTTEN => IF (car_s ='0') THEN next_state <= CHEATED; ELSIF (coin_s ="00") THEN next_state <= GOTTEN; ELSIF (coin_s="01") THEN next_state <= GOTFIV; ELSIF (coin_s="10") THEN next_state <= GOTTWEN; END IF; WHEN GOTFIF => IF (car_s ='0') THEN next_state <= CHEATED; ELSIF (coin_s = "00") THEN next_state <= GOTFIF; ELSIF (coin_s ="01") THEN next_state <= GOTTWEN; ELSIF (coin_s = "10") THEN next_state <= GOTTWEN; END IF; WHEN GOTTWEN => next_state <= CAR_PAID; WHEN CAR_PAID => IF (car_s = '0') THEN next_state <= NO_CAR; ELSE next_state<= CAR_PAID; END IF; WHEN CHEATED => IF (car_s = '1') THEN next_state <= GOTZERO; ELSE next_state <= CHEATED; END IF; END CASE; END PROCESS;-----End of Process 1 -------PROCESS 2 for STATE REGISTER CLOCKING-------- PROCESS(Clock,RE) BEGIN IF RE = '1' THEN present_state <= GOTZERO; ----When the clock changes from low to high,the state of the system ----stored in next_state becomes the present state----- ELSIF Clock'EVENT AND Clock ='1' THEN present_state <= next_state; END IF; END PROCESS;-----End of Process 2------- --------------------------------------------------------- -----Conditional signal assignment statements---------- r_light <= '0' WHEN present_state = CAR_PAID ELSE '1'; g_light <= '1' WHEN present_state = CAR_PAID ELSE '0'; alarm <= '1' WHEN present_state = CHEATED ELSE '0'; END Behav;
Tell me a bit about the capabilities of exchange server?
Why do we need a router in react?
Can a class be declared as protected?
What do the iw8w tcodes in sap- pm mean?
What is the history of ODI?