Wednesday 4 February 2015

Indian Constitutions Schedules

Schedules are lists in the Constitution that categorizes and tabulates bureaucratic activity and policy of the Government and its must for every one.
  • First Schedule (Articles 1 and 4): States and Union Territories – This lists the states and territories on of India, lists any changes to their borders and the laws used to make that change.
  • Second Schedule (Articles 59, 65, 75, 97, 125, 148, 158, 164, 186 and 221) —Emoluments for High-Level Officials – This lists the salaries of officials holding public office, judges, and Comptroller and Auditor-General of India.
  • Third Schedule (Articles 75, 99, 124, 148, 164, 188 and 219) — Forms of Oaths – This lists the oaths of offices for elected officials and judges.
  • Fourth Schedule (Articles 4 and 80) – This details the allocation of seats in the Rajya Sabha (the upper house of Parliament) per State or Union Territory.
  • Fifth Schedule (Article 244) – This provides for the administration and control of Scheduled Areas[Note 1] and Scheduled Tribes[Note 2] (areas and tribes needing special protection due to disadvantageous conditions).
  • Sixth Schedule (Articles 244 and 275)— Provisions for the administration of tribal areas in Assam.
  • Seventh Schedule (Article 246) — The union (central government), state, and concurrent lists of responsibilities.
  • Eighth Schedule (Articles 344 and 351) — The official languages.
  • Ninth Schedule (Article 31-B) – This covers land and tenure reforms; the accession of Sikkim with India. It may be reviewed by the courts.
  • Tenth Schedule (Articles 102 and 191) — “Anti-defection” provisions for Members of Parliament and Members of the State Legislatures.
  • Eleventh Schedule (Article 243-G) — Panchayat Raj (rural development).
  • Twelfth Schedule (Article 243-W) — Municipalities (urban planning).

A man can succeed at almost anything for which he has unlimited enthusiasm. --Charles Schwab

Post 2 Regarding Part 1 of HTML

Now I will let you put something before your opening <html> tag. Didn't take me long did it? I also won't tell you to put anything else here at all!
To tell your browser, the browsers of people reading your page and W3C that your page will have standards, we need to add a special line in:


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
All you need to know for now is that there are varying levels of "standards" from quite lenient to very strict. We will be going "Middle-ground" for now and using the "Transitional" standards.
The other thing to explain is that HTML itself is updated and changed over time so the "4.01" is the standards we are using. If it is deemed necessary, as the standards and capabilities of HTML change, these tutorials will also be updated.

So place that line above your <html> tag. Always have this line when you start any new HTML page.

<html><head>
<script language="JavaScript">
function bgChange(bg)
{    document.body.style.background=bg; }
</script></head>
<body><b>Mouse over these table cells, and the background color will change</b>
<table width="300" height="100">
 <tr>
  <td onmouseover="bgChange('red')"
    onmouseout="bgChange('transparent')" bgcolor="red">
  </td>
  <td onmouseover="bgChange('blue')"
    onmouseout="bgChange('transparent')" bgcolor="blue">
  </td>
  <td onmouseover="bgChange('green')"
    onmouseout="bgChange('transparent')" bgcolor=green>
  </td>
</tr>
</table>
</body></html>
With Java Script
Output:

Code
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <title>My first HTML page</title>
 </head>
 <body>
  <h1>Hello World!</h1>
  <p>
   Welcome to my first web page!
  </p>
  <p>
   I will add more stuff when I know how - thanks for stopping by!
  </p>
 </body>
</html>