Monday, May 25, 2009

MARCH 2009 TNPSC

Question -21-30

Previous Next


Bokaro Steel Plant is located in the state of
a) West Bengal
b) Orissa
c) Jharkhand
d) Karnataka.

The Nilgiris are part of the
a) Eastern Ghats
b) Western Ghats
c) Vindhya-Satpura range
d) Himalayan range.


The famous textile market of Tamil Nadu is
a) Coimbatore
b) Tirunelveli
c) Salem
d) Erode

Manimutharu Dam is located in the district of
a) Triuneleli
b) Coimbatore
c) Cuddalore
d) Thanjavur

All water lying south of latitude 55 Degree in the southern hemisphere, is called
a) South Pacific
b) South Atlantic
c) Southern Ocean
d) Indian Ocean.

The devastating cyclone struck the coast of Orissa in India on
a) October 29, 1999
b) December 26, 2004
c) August 17 and 18, 1998
d) December 2, 1984


Earthquakes under the sea can cause long, giant, destructive waves called
a) Cyclones
b) Tides
c) Tsunami
d) Tornadoes


Which one is the fast growing tree?
a) Banyan
b) Teak
c) coconut
d) Eucalyptus

The kudankulam Nuclear Power Stateion is set up in Tamil Nadu in Collaboration with
a) France
b) Germany
c) Russia
d) Italy

Coal mine is situated in Tamil Nadu at
Ciuddalore
b) Neyveli
c) Mettur
d) Kalpakkam.

Friday, May 22, 2009

MARCH 2009 TNPSC

MARCH 2009 GROUP - II Questions

Question 11 - 20
Previous Next
Previous
Meikirti is
a) a title of the king
b) a historical introduction to an inscription
c) a name of the king
d) a name of a book.

The term Socilogy is derived from
a) latin and Greek words
b) Greek and French words
c) English and Latin words
d) French and Greek words.

The term "Sociology" was coined by
a) Spencer
b) Aristotle
c) comte
d) Ginsberg

During whose rule Sati was not parctised?
a) Chera
b) Pandiya
c) Pallava
d) Chola.

Aryans not only came into India but also infused their culture with Tamil culture through
a) music and dance
b) agriculture
c) family system
d) sculpture

The Preamble of the India Constitution was prepared by
a) Jawaharlal Nehru
b) sardar Patel
c) Mahatma Gandhi
d) Subhash Chandra Bose.

Representatives of Union Territories in Lok Sabha re chosen by
a) directo election
b) indirect election
c) nomination
d) all of these

who called the Fundamental Rights as the 'Conscience of the Consitiution'?
a) Gandhiji
b) Nehru
c) Indira Gandhi
d) Rajiv Gandhi

The idea of Directive Principles of State Policy was taken from
a) the USA
b) Japan
c) Britain
d) Ireland.

The President's Parliamentary address is prepared by
a) the president's office
b) the speaker of the Lok Sabha
c) the Minister for Parliamentary Affairs
d) the Prime Minister and approved by the cabinet.

Next

MARCH 2009 TNPSC

MARCH 2009 GROUP - II Questions
Question 1 - 10

Previous Next
1. Who invented Double Entry system of Book-keeping?
a) Luca Pacciola
b) Keynes
c) Hawtrey
d) Gunnar Myrdall.

2. Which system of banking is followed in India?
a) Unit banking
b) Branch banking
c) Merchant banking
d) Mixed banking.


3. The income Tax exemption limit for the Financial year 2008-2009 is
a) Rs. 1,40,000
b) Rs. 1,50,000
c) Rs.1,60,000
d) Rs. 80,000

4. What do you mean by 'Entrepot' trade?
a) Export trade
b) Import trade
c) Import of goods for re-export
d) none of these

5. Second World Tamil Conference was held in
a) 1950
b) 1960
c) 1969
d) 1980

6. In the history of the Freedom Movement of India, the year 1930 is associated with
a) Non-co-operation movement
b) Civil disobedience movement
c) Quit India movement
d) Swadeshi movement.

7. Tamil novel "Ponnyin Selvan" was written by
a) Akilan
b) Kalki
c) Chandilyan
d) Parthasarathi

8. Sarkaria Commission was appointed
a) to find a solution to the Punjab crisis
b) to examine Centre-State relations
c) to resolve Kaveri water dispute
d) to examine the nexus between politicians and criminals.


9. Salt Satyagraha movement in Tamil Nadu was led by
a) Kamaraj
b) Sathyamoorthy
c) C. Rajagopalachari
d) Prakasam.

10. Birth palce of Tamil Poet Subramania Bharathi is
a) Madurai
b) Sivagangai
c) Tirunelveli
d) Ettayapuram.

NEXT

Wednesday, May 6, 2009

JAVASCRIPT - Objective type Questions

Previous Next


What is the correct JavaScript syntax to write "Hello World"?

1. response.write("Hello World")

2. document.write("Hello World")

3. ("Hello World")

4. "Hello World"


An external JavaScript must contain the <> tag

a) False

b) True


How do you write "Hello World" in an alert box?


a) alert("Hello World")

b) alertBox="Hello World"

c) alertBox("Hello World")

d) msgBox("Hello World")


How do you create a function?

a) function myFunction()

b) function=myFunction()

c) function:myFunction()


How do you call a function named "myFunction"?

a) call function myFunction

b) myFunction()

c) call myFunction()


How do you write a conditional statement for executing some statements only if "i" is equal to 5?

if (i==5)

if i=5

if i=5 then

if i==5 then


How many different kind of loops are there in JavaScript?

Two. The "for" loop and the "while" loop

Four. The "for" loop, the "while" loop, the "do...while" loop, and the "loop...until" loop

One. The "for" loop


How does a "for" loop start?

for (i = 0; i < = 5) for i = 1 to 5 for (i = 0; i < = 5; i++) for (i < = 5; i++) How can you add a comment in a JavaScript? //This is a comment < !--This is a comment-- >

'This is a comment


What is the correct JavaScript syntax to insert a comment that has more than one line?

//This comment has
more than one line//

/*This comment has
more than one line*/

< !--This comment has more than one line-- >
What is the correct way to write a JavaScript array?


var txt = new Array("tim","kim","jim")

var txt = new Array="tim","kim","jim"

var txt = new Array:1=("tim")2=("kim")3=("jim")

var txt = new Array(1:"tim",2:"kim",3:"jim")



How do you round the number 7.25, to the nearest whole number?

Math.round(7.25)

round(7.25)

rnd(7.25)

Math.rnd(7.25)



How do you find the largest number of 2 and 4?

Math.max(2,4)

ceil(2,4)

top(2,4)

Math.ceil(2,4)



What is the correct JavaScript syntax for opening a new window called "window2" ?

new("http://www.w3schools.com","window2")

new.window("http://www.w3schools.com","window2")

window.open("http://www.w3schools.com","window2")

open.new("http://www.w3schools.com","window2")



How do you put a message in the browser's status bar?

window.status("put your message here")

window.status = "put your message here"

status("put your message here")

statusbar = "put your message here"



How do you find the client's browser name?

client.navName

browser.name

navigator.appName


Previous Next

Monday, May 4, 2009

Sports

The first Indian woman to swim across the English Channel
Answer: Miss. Arati Shah

The first Indian to win world Billiards Trophy
Answer: Wilson Jones

The first to cross the Damelles by swimming
Answer: Mihir Sen

The first to conquer Everest
Answer: Sherpa Tenzing (1953)

The first to sail round the world
Answer: Megellan

The first person to win Wimbledon title five times
Answer: Bjorn Borg

The first woman who conquered Everest
Answer: Jungo Table (Japan)

The first person to reach North Pole
Answer: Robert Peary

First woman Olympic Medallist (Weight Lifting)
Answer: Karnam Malleswari (2000)

The first person to reach South Pole
Answer: Amundsen

The first Indian to win All England Badminton Championship
Answer: Prakash Padukone

The first Indian woman to conquer Everest
Answer: Bichendri Pal

The first an to climb Everest twice
Answer: Nawang Gombu

The first person to complete solo walk to magnetic North pole David Hempleman Adam (UK)
The first woman to reach North pole
Answer: Ann Bancroft

The first woman to sail non stop around the world alone
Answer: Kaycottee

The first deaf & dumb to cross the strait of Gibraltar
Answer: Taranath Shenoy (India)

The first woman to climb Mt. Everest twice
Answer: Santosh Yadav (India)

The first black player to win the Wimbledon men's singles title
Answer: Arthur Ashe (US)

The first person to win the Palk Strait ocean swimming contest
Answer: Baidyanath

Friday, May 1, 2009

Question 11-20

Ordinance of Governor has to be passed by the Assembly within
a) 6 weeks
b) 8 weeks
c) 10 weeks
d) 12 weeks

What is the maximum gap permissible between two sessions of the Parliament?
a) One months
b) Three months
c) Six months
d) One year

Which of the following states has a separate constitution?
a) Madhya Pradesh
b) Uttar Pradesh
c) West Bengal
d) Jammu & Kashmir

Planning Commission was established in 1950 through
a) a constitutional amendment
b) a Supreme Court order
c) an executive order
d) a decision by the Parliament.

In which year was Legislative Council abolished in Tamil Nadu?
a) 1984
b) 1985
c) 1986
d) 1987

The major emphasis in the First Five-Year Plan was on
a) employment generation
b) agriculture
c) export promotion
d) industry

UNICEF was established in the year
a) 1946
b) 1956
c) 1949
d) 1954

Indian Telephone Industries Ltd. Is located at
a) Mumbai and Bangalore
b) Bangalore
c) Mumbai and New Delhi
d) Mumbai and Chennai.

Raurkela steel plant was set up with the assistance from
a) USSR
b) UK
c) USA
d) West Germany.

The Oil and Natural Gas Commission was set up in
a) 1956
b) 1957
c) 1959
d) 1961