Searching for "HO"

Q:

An objective of the National Food Security Mission is to increase the production of certain crops through area expansion and productivity enhancement in a sustainable manner in the identified districts of the country. What are those crops?

A) Rice and Wheat only B) Rice, Wheat and pulses only
C) Rice, Wheat, Pulses and oil seeds only D) Rice, Wheat, Pulses, oil seeds and vegetables
 
Answer & Explanation Answer: B) Rice, Wheat and pulses only

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

Q:

Which of the following Schemes was launched to promote basic education in India and attract children in School going age to attend the classes?

A) Pulse Polio Abhiyan B) Operation Flood
C) Mid-Day Meal Schema D) Operation Black Board
 
Answer & Explanation Answer: C) Mid-Day Meal Schema

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

Q:

In India, in the overall indexe of Industrial Production , the Indices of Eight Core Industries have a combined weight of 37.90%. Which of the following are among those Eight Core Industries?

1.Cement     2. Fertilizers      3.Natural gas     4. Refinery products     5. Textiles

A) 1 and 5 only B) 2, 3 and 4 only
C) 1, 2, 3 and 4 only D) 1, 2, 3, 4 and 5
 
Answer & Explanation Answer: C) 1, 2, 3 and 4 only

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

Q:

When was the mandate that a candidate at an election should file with his nomination papers an affidavit recording the particulars of the spouse and the dependents, enforced at a General Electon for the first time?

A) Assembly elections held in Madhya Pradesh/chhattisgarh in Dec.2003 B) Assembly election held in Mizoram in Nov.2003
C) Assembly elections held in Himachal Pradesh in 2003 D) Assembly elections held in Rajasthan/Delhi in Dec.2003
 
Answer & Explanation Answer: C) Assembly elections held in Himachal Pradesh in 2003

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

Q:

Which one of the following Constitutional Amendments state that the total number of Ministers, including the Prime Minister in the Council of Ministers shall not exceed 15%  of the total numbers of the the house of the people?

A) 90th B) 91st
C) 92nd D) 93rd
 
Answer & Explanation Answer: B) 91st

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

Q:

You want only a vertical scrollbar and no horizontal scrollbar on your page. How would you do it?

Answer

- This can be done by defining the frame with SCROLLING = auto and having content to just fit into this frame. 


- SCROLLING="yes" gets the scroll bar on both the sides, even when not needed. 


- SCROLLING="no" doesn’t get the scrollbars at all, even when they are needed.


 

Report Error

View answer Workspace Report Error Discuss

Q:

How would you automatically transfer your visitors to a new web page?

Answer

- You can do it with the help of meta tag mentioned below: 


<META HTTP-EQUIV="Refresh" CONTENT="2"; URL="https://www.yoursite.com"> 


- Place this tag between <HEAD></HEAD> . 


- It will load yousite.com in 2 seconds.

Report Error

View answer Workspace Report Error Discuss

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