Searching for "st"

Q:

Which Commission made the recommendations which formed the basis for the Punjab Reorganisation Act which created the states Punjab and Haryana?

A) Dhar Commission B) Dass Commission
C) Shah Commission D) Mahajan Commission
 
Answer & Explanation Answer: C) Shah Commission

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

Q:

Under which one of the following Articles of the Constitution of India, is the 'Annual Financial Statement' of the economy to be laid by the Government, on the table of the Parliament before 31st March, every year?

A) Article 16 B) Article 31
C) Article 112 D) Article 124
 
Answer & Explanation Answer: C) Article 112

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

Q:

What was the exact constitutional status of the Indian Republic on 26 January, 1950 when the constitution was inaugurated?

A) A Democratic Republic B) A Sovereign Secular Democratic Republic
C) A Sovereign Democratic Republic D) A Sovereign Socialist Secular Democratic Republic
 
Answer & Explanation Answer: C) A Sovereign Democratic Republic

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

Q:

During which of the following periods did the Constituent Assembly delibrate upon and finalise the Constitution of India?

A) November,1946 - November, 1949 B) November,1947 - November, 1949
C) December,1946 - November, 1949 D) December,1947 - November, 1949
 
Answer & Explanation Answer: C) December,1946 - November, 1949

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

Q:

The instrument of instructions contained in the Government of India Act, 1935 has been incorporated in the Constitution of India in the year 1950 as ______ 

A) Fundamental Rights B) Directive Principles of the State Policy
C) Fundamental Duities D) Emergency Provisions
 
Answer & Explanation Answer: D) Emergency Provisions

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

Q:

What is session storage and how can you create one?

Answer

Session storage is same like local storage but the data is valid for a session. In simple words the data is deleted as soon as you close the browser.


To create a session storage you need to use “sessionStorage.variablename” . In the below code we have a created a variable called as “clickcount”.


If you refresh the browser the count increases. But if you close the browser and start again the “clickcount” variable starts from zero.


if(sessionStorage.clickcount)


{


sessionStorage.clickcount=Number(sessionStorage.clickcount)+1;


}


else


{


sessionStorage.clickcount = 0;


Report Error

View answer Workspace Report Error Discuss

Q:

What is local storage concept in HTML 5?

Answer

Many times we would like to store information about the user locally in the computer. For example let’s say user has half-filled a long form and suddenly the internet connection breaks off. So the user would like you to store this information locally and when the internet comes back.He would like to get that information and send it to the server for storage.


Modern browsers have storage called as “Local storage” in which you can store this information.

Report Error

View answer Workspace Report Error Discuss

Q:

Which API is used to write test scripts that help in exercising the application's user interface elements?

Answer

 UI Automation API is used to automate test procedures. Tests scripts are written in JavaScript to the UI Automation API.  This in turn simulates user interaction with the application and returns log information to the host computer.

Report Error

View answer Workspace Report Error Discuss