Sunday, August 29, 2010

In my last post i said about TCS openstone test in which a 35 questions will be alloted randomly from a large database of three lac questions to the persons taking the online test for entry level job in TCS. Most of the persons think that handling with a system rather than paper and pen is very tough in such type of test that will decide a person's life. To address their grievances TCS will provide a mock test called OPENSTONE test for the persons who registered for TOUCHSTONE test.
In my last post i said about TCS openstone test in which a 35 questions will be alloted randomly from a large database of three lac questions to the persons taking the online test for entry level job in TCS. Most of the persons think that handling with a system rather than paper and pen is very tough in such type of test that will decide a person's life. To address their grievances TCS will provide a mock test called OPENSTONE test for the persons who registered for TOUCHSTONE test.

Saturday, July 24, 2010

TCS- NEW RECRUITMENT PATTERN

TCS the largest software provider in Asia and also one of the largest recruiter in India has now changed the recruitment pattern.It conducts an online test with a software called TOUCHSTONE which was created by the students of IIT Chennai.There will be a large database of more than three lac questions from which 35 questions will be assigned randomly to all those who take the test.The total time for this test is one hour which consists of aptitude,puzzle and critical reasoning questions.There will be no verbal questions which is present in older pattern.The questions are very lengthy of 4 to 10 lines and consists of several irrelevant data just to kill the time.There will be negative marks of 0.33 for every wrong answer.

The preceding rounds are
Group Discussing
Technical Interview
HR
MR

Friday, July 23, 2010

A FUNNY MICROSOFT PUZZLE

Puzzles are part of the aptitude test which is a first round in every software industries recruitment process.We can expect some funny questions in this section.A typical example for this is the following puzzle.

A bear moves some km north and then some km east and some km south and now it reaches the place where it starts from.What is the colour of bear.

It seems to be wacky but it is a tricky question,as the bear reaches starting place in three moves it must be travelled in a triangular structure, which happens only in south pole.Consider the globe imagine travelling along the longitudes towards north from south pole and take diversion to east and travel towards south in the longitude.As the color of the bear in poles are white the answer to this question is white.

Sunday, July 18, 2010

Cookies-The authenticator

Cookies are the encrypted text file used for the authentication of a particular person.It is produced by the web server and consumed by web server.For example you cant login to your email account when the cookies are blocked in your browser and it will prompt you to turn on the cookies.This is because when you login from a particular browser in a system it will send a cookie for identification of a particular person and it will be required for every action such as opening of email.Cookies can also be a spyware but some websites are unusable without cookies.As cookies contain sensible information every cookie has am expiration time as decided by the web server.

Saturday, April 17, 2010

DIFFERENCE BETWEEN APPLET AND STANDALONE APPLICATION

Standalone application are created to execute in system where it is installed but applets are used to create dynamic pages of the website that is to be run by browser.Consider for example when you create an applet that contains the line
a=a+1;
the line is executed infinite number of times as far as the applet is running.We can convert any applet to standalone application by modifying the applet with main() function.Since java is a powerful language that can be able to take the control of whole system it denies some permissions for unsigned applets because applet are to be run on remote system in a browser.

Saturday, March 27, 2010

WINDOWS-BATCH FILE

Windows batch file is nothing but a line by line collection of commands that are executed in command prompt.To create a batch file open the notepad and type the commands line by line and save as of type .bat.For example consider the following example
cd c:\\images
del a.gif
and save the file as example.bat.
When you double click the above created batch file a.gif in the images folder is deleted.