<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6408683967253505314</id><updated>2012-02-16T17:36:57.009-08:00</updated><title type='text'>Job Placement Papers - An interviewhelper.org Blog</title><subtitle type='html'>This blog contains a list of placement papers given by big organizations like Infosys, TCS, Wipro, IBM etc.&lt;br&gt;&lt;br&gt;
Visit &lt;a href="http://interviewhelper.org"&gt;Interview Helper&lt;/a&gt; for more Job Interview questions</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>95</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-8572697041620288458</id><published>2009-02-01T22:23:00.000-08:00</published><updated>2009-02-01T22:24:40.815-08:00</updated><title type='text'>tcs</title><content type='html'>.The C language terminator is &lt;br /&gt;a.semicolon &lt;br /&gt;b.colon &lt;br /&gt;c.period &lt;br /&gt;d.exclamation mark &lt;br /&gt;&lt;br /&gt;2.What is false about the following &lt;br /&gt;A compound statement is &lt;br /&gt;a.A set of simple statments &lt;br /&gt;b.Demarcated on either side by curly brackets &lt;br /&gt;c.Can be used in place of simple statement &lt;br /&gt;d.A C function is not a compound statement. &lt;br /&gt;&lt;br /&gt;3.What is true about the following &lt;br /&gt;C Functions &lt;br /&gt;a.Need not return any value &lt;br /&gt;b.Should always return an integer &lt;br /&gt;c.Should always return a float &lt;br /&gt;d.Should always return more than one value. &lt;br /&gt;&lt;br /&gt;4.Main must be written as &lt;br /&gt;a.the first function in the program &lt;br /&gt;b.Second function in the program &lt;br /&gt;c.Last function in the program &lt;br /&gt;d.any where in the program &lt;br /&gt;&lt;br /&gt;5.Which of the following about automatic variables within a function &lt;br /&gt;is correct ? &lt;br /&gt;a.its type must be declared before using the variable &lt;br /&gt;b.they are local &lt;br /&gt;c.they are not initialised to zero &lt;br /&gt;d.they are global. &lt;br /&gt;&lt;br /&gt;6.Write one statement equalent to the following two statements &lt;br /&gt;x=sqr(a); &lt;br /&gt;return(x); &lt;br /&gt;Choose from one of the alternatives &lt;br /&gt;a.return(sqr(a)); &lt;br /&gt;b.printf("sqr(a)"); &lt;br /&gt;c.return(a*a*a); &lt;br /&gt;d.printf("%d",sqr(a)); &lt;br /&gt;&lt;br /&gt;7.Which of the following about the C comments is incorrect ? &lt;br /&gt;a.commentscan go over multiple lines &lt;br /&gt;b.comments can start any where in the line &lt;br /&gt;c.a line can contain comments with out any language statements &lt;br /&gt;d.comments can occur within comments &lt;br /&gt;&lt;br /&gt;8.What is the value of y in the following code? &lt;br /&gt;x=7;y=0; &lt;br /&gt;if(x=6) &lt;br /&gt;y=7; &lt;br /&gt;else &lt;br /&gt;y=1; &lt;br /&gt;a.7 &lt;br /&gt;b.0 &lt;br /&gt;c.1 &lt;br /&gt;d.6 &lt;br /&gt;&lt;br /&gt;9.Read the function conv() given below &lt;br /&gt;conv(int t) &lt;br /&gt;{ &lt;br /&gt;int u; &lt;br /&gt;u=5/9 * (t-32); &lt;br /&gt;return(u0; &lt;br /&gt;} &lt;br /&gt;What &lt;br /&gt;a.15 &lt;br /&gt;b.0 &lt;br /&gt;c.16.1 &lt;br /&gt;d.29 &lt;br /&gt;10.which of the following represents true statement &lt;br /&gt;either x is inthe range of 10 and 50 or y is zero &lt;br /&gt;a.x&gt;=10 &amp;&amp; x&lt;=50 || y==0; &lt;br /&gt;b. &lt;br /&gt;c. &lt;br /&gt;d. &lt;br /&gt;&lt;br /&gt;11.Which of the following is not an infinite loop ? &lt;br /&gt;a.while(1){ &lt;br /&gt;.... &lt;br /&gt;} &lt;br /&gt;b.for(;;){ &lt;br /&gt;... &lt;br /&gt;} &lt;br /&gt;c.x=0; &lt;br /&gt;do{ &lt;br /&gt;/*x unaltered within theloop*/ &lt;br /&gt;... &lt;br /&gt;}while(x==0); &lt;br /&gt;d.# define TRUE 0 &lt;br /&gt;... &lt;br /&gt;while(TRUE){ &lt;br /&gt;.... &lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;12.what does the following function print? &lt;br /&gt;func(int i) &lt;br /&gt;{ &lt;br /&gt;if(i%2)return 0; &lt;br /&gt;eale return 1; &lt;br /&gt;} &lt;br /&gt;main() &lt;br /&gt;{ &lt;br /&gt;int =3; &lt;br /&gt;i=func(i); &lt;br /&gt;i=func(i); &lt;br /&gt;printf("%d",i);} &lt;br /&gt;a.3 &lt;br /&gt;b.1 &lt;br /&gt;c.0 &lt;br /&gt;d.2 &lt;br /&gt;13.how does the C compiler interpret the following two statements &lt;br /&gt;p=p+x; &lt;br /&gt;q=q+y; &lt;br /&gt;a.p=p+x; &lt;br /&gt;q=q+y &lt;br /&gt;b.p=p+xq=q+y &lt;br /&gt;c.p=p+xq; &lt;br /&gt;q=q+y &lt;br /&gt;d.p=p+x/q=q+y &lt;br /&gt;&lt;br /&gt;For questions 14,15,16,17 use the following alternatives &lt;br /&gt;&lt;br /&gt;a.int &lt;br /&gt;b.char &lt;br /&gt;c.string &lt;br /&gt;d.float &lt;br /&gt;14.'9' &lt;br /&gt;&lt;br /&gt;15."1 e 02" &lt;br /&gt;&lt;br /&gt;16.10e05 &lt;br /&gt;&lt;br /&gt;17. 15 &lt;br /&gt;&lt;br /&gt;18.read the folllowing code &lt;br /&gt;# define MAX 100 &lt;br /&gt;# define MIN 100 &lt;br /&gt;.... &lt;br /&gt;.... &lt;br /&gt;if(x&gt;MAX) &lt;br /&gt;x=1; &lt;br /&gt;else if(x &lt;br /&gt;x=-1; &lt;br /&gt;x=50; &lt;br /&gt;if the initial value of x=200,what is the vlaue after executing this code? &lt;br /&gt;a.200 &lt;br /&gt;b.1 &lt;br /&gt;c.-1 &lt;br /&gt;d.50 &lt;br /&gt;&lt;br /&gt;19.a memory of 20 bytes is allocated to a string declared as char *s &lt;br /&gt;then the following two statements are executed: &lt;br /&gt;s="Etrance" &lt;br /&gt;l=strlen(s); &lt;br /&gt;what is the value of l ? &lt;br /&gt;a.20 &lt;br /&gt;b.8 &lt;br /&gt;c.9 &lt;br /&gt;d.21 &lt;br /&gt;&lt;br /&gt;20.given the piece of code &lt;br /&gt;int a[50]; &lt;br /&gt;int *pa; &lt;br /&gt;pa=a; &lt;br /&gt;to access the 6th element of the array which of the following is incorrect? &lt;br /&gt;a.*(a+5) &lt;br /&gt;b.a[5] &lt;br /&gt;c.pa[5] &lt;br /&gt;d.*(*pa + 5) &lt;br /&gt;21.consider the following structure: &lt;br /&gt;struct num nam{ &lt;br /&gt;int no; &lt;br /&gt;char name[25]; &lt;br /&gt;}; &lt;br /&gt;struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; &lt;br /&gt;..... &lt;br /&gt;..... &lt;br /&gt;printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); &lt;br /&gt;What does the above statement print? &lt;br /&gt;a.8,9 &lt;br /&gt;b.9,9 &lt;br /&gt;c.8,8 &lt;br /&gt;d.8,unpredictable value &lt;br /&gt;&lt;br /&gt;22.identify the in correct expression &lt;br /&gt;a.a=b=3=4; &lt;br /&gt;b.a=b=c=d=0; &lt;br /&gt;float a=int b=3.5; &lt;br /&gt;d.int a; &lt;br /&gt;float b; &lt;br /&gt;a=b=3.5; &lt;br /&gt;&lt;br /&gt;23.regarding the scope of the varibles;identify the incorrect statement: &lt;br /&gt;a.automatic variables are automatically initialised to 0 &lt;br /&gt;b.static variables are are automatically initialised to 0 &lt;br /&gt;c.the address of a register variable is not accessiable &lt;br /&gt;d.static variables cannot be initialised with any expression &lt;br /&gt;&lt;br /&gt;24.cond 1?cond 2?cond 3?:exp 1:exp 2:exp 3:exp 4; &lt;br /&gt;is equivalent to which of the following? &lt;br /&gt;a.if cond 1 &lt;br /&gt;exp 1; &lt;br /&gt;else if cond 2 &lt;br /&gt;exp 2; &lt;br /&gt;else if cond 3 &lt;br /&gt;exp 3; &lt;br /&gt;else &lt;br /&gt;exp 4; &lt;br /&gt;b.if cond 1 &lt;br /&gt;if cond 2 &lt;br /&gt;if cond 3 &lt;br /&gt;exp 1; &lt;br /&gt;else &lt;br /&gt;exp 2; &lt;br /&gt;else &lt;br /&gt;exp 3; &lt;br /&gt;else &lt;br /&gt;exp 4; &lt;br /&gt;c.if cond 1 &amp;&amp; cond 2 &amp;&amp; cond 3 &lt;br /&gt;exp 1 |exp 2|exp 3|exp 4; &lt;br /&gt;d.if cond 3 &lt;br /&gt;exp 1; &lt;br /&gt;else if cond 2 &lt;br /&gt;exp 2; &lt;br /&gt;else if cond 3 &lt;br /&gt;exp 3; &lt;br /&gt;else &lt;br /&gt;exp 4; &lt;br /&gt;&lt;br /&gt;25.the operator for exponencation is &lt;br /&gt;a.** &lt;br /&gt;b.^ &lt;br /&gt;c.% &lt;br /&gt;d.not available &lt;br /&gt;&lt;br /&gt;26.which of the following is invalid &lt;br /&gt;a.a+=b &lt;br /&gt;b.a*=b &lt;br /&gt;c.a&gt;&gt;=b &lt;br /&gt;d.a**=b &lt;br /&gt;&lt;br /&gt;27.what is y value of the code if input x=10 &lt;br /&gt;y=5; &lt;br /&gt;if (x==10) &lt;br /&gt;else if(x==9) &lt;br /&gt;elae y=8; &lt;br /&gt;a.9 &lt;br /&gt;b.8 &lt;br /&gt;c.6 &lt;br /&gt;d.7 &lt;br /&gt;&lt;br /&gt;28.what does the following code do? &lt;br /&gt;fn(int n,int p,int r) &lt;br /&gt;{ &lt;br /&gt;static int a=p; &lt;br /&gt;switch(n){ &lt;br /&gt;case 4:a+=a*r; &lt;br /&gt;case 3:a+=a*r; &lt;br /&gt;case 2:a+=a*r; &lt;br /&gt;case 1:a+=a*r; &lt;br /&gt;} &lt;br /&gt;} &lt;br /&gt;a.computes simple interest for one year &lt;br /&gt;b.computes amount on compound interest for 1 to 4 years &lt;br /&gt;c.computes simple interest for four year &lt;br /&gt;d.computes compound interst for 1 year &lt;br /&gt;&lt;br /&gt;29.a=0; &lt;br /&gt;while(a&lt;5) &lt;br /&gt;printf("%d\n",a++); &lt;br /&gt;how many times does the loop occurs? &lt;br /&gt;a.infinite &lt;br /&gt;b.5 &lt;br /&gt;c.4 &lt;br /&gt;d.6 &lt;br /&gt;&lt;br /&gt;30.how many times does the loop iterated ? &lt;br /&gt;for (i=0;i=10;i+=2) &lt;br /&gt;printf("Hi\n"); &lt;br /&gt;a.10 &lt;br /&gt;b.2 &lt;br /&gt;c.5 &lt;br /&gt;d..... &lt;br /&gt;&lt;br /&gt;31.what is incorrect among teh following &lt;br /&gt;A recursive functiion &lt;br /&gt;a.calls itself &lt;br /&gt;b.is equivalent to a loop &lt;br /&gt;c.has a termination cond &lt;br /&gt;d.does not have a return value at all &lt;br /&gt;&lt;br /&gt;32.which of the following go out of the loopo if expn 2 becoming false &lt;br /&gt;a.while(expn 1){...if(expn 2)continue;} &lt;br /&gt;b.while(!expn 1){if(expn 2)continue;...} &lt;br /&gt;c.do{..if(expn 1)continue;..}while(expn 2); &lt;br /&gt;d.while(!expn 2){if(expn 1)continue;..} &lt;br /&gt;&lt;br /&gt;33.consider the following program &lt;br /&gt;B &lt;br /&gt;main() &lt;br /&gt;OB {unsigned int i=10; &lt;br /&gt;while(i&gt;=0){ &lt;br /&gt;printf("%u",i) &lt;br /&gt;i--; &lt;br /&gt;} &lt;br /&gt;} &lt;br /&gt;how many times the loop wxecuted &lt;br /&gt;a.10 &lt;br /&gt;b.9 &lt;br /&gt;c.11 &lt;br /&gt;d.infinite &lt;br /&gt;&lt;br /&gt;34.pick out the add one out &lt;br /&gt;a.malloc() &lt;br /&gt;b.calloc() &lt;br /&gt;c.free() &lt;br /&gt;d.realloc() &lt;br /&gt;&lt;br /&gt;35.consider the following program &lt;br /&gt;main() &lt;br /&gt;{ &lt;br /&gt;int a[5]={1,3,6,7,0}; &lt;br /&gt;int *b; &lt;br /&gt;b=&amp;a[2]; &lt;br /&gt;} &lt;br /&gt;the value of b[-1] is &lt;br /&gt;a.1 &lt;br /&gt;b.3 &lt;br /&gt;c.-6 &lt;br /&gt;d.none &lt;br /&gt;&lt;br /&gt;36.# define prod(a,b)=a*b &lt;br /&gt;main() &lt;br /&gt;{ &lt;br /&gt;int x=2; &lt;br /&gt;int y=3; &lt;br /&gt;printf("%d",prod(x+2,y-10)); } &lt;br /&gt;&lt;br /&gt;the &lt;br /&gt;----------------- &lt;br /&gt;Subject: C and COBOL &lt;br /&gt;&lt;br /&gt;1.The C language terminator is &lt;br /&gt;a.semicolon &lt;br /&gt;b.colon &lt;br /&gt;c.period &lt;br /&gt;d.exclamation mark &lt;br /&gt;2.What is false about the following &lt;br /&gt;A compound statement is &lt;br /&gt;a.A set of simple statments &lt;br /&gt;b.Demarcated on either side by curly brackets &lt;br /&gt;c.Can be used in place of simple statement &lt;br /&gt;d.A C function is not a compound statement. &lt;br /&gt;3.What is true about the following &lt;br /&gt;C Functions &lt;br /&gt;a.Need not return any value &lt;br /&gt;b.Should always return an integer &lt;br /&gt;c.Should always return a float &lt;br /&gt;d.Should always return more than one value. &lt;br /&gt;4.Main must be written as &lt;br /&gt;a.the first function in the program &lt;br /&gt;b.Second function in the program &lt;br /&gt;c.Last function in the program &lt;br /&gt;d.any where in the program &lt;br /&gt;5.Which of the following about automatic variables within a function &lt;br /&gt;is correct ? &lt;br /&gt;a.its type must be declared before using the variable &lt;br /&gt;b.they are local &lt;br /&gt;c.they are not initialised to zero &lt;br /&gt;d.they are global. &lt;br /&gt;6.Write one statement equalent to the following two statements &lt;br /&gt;x=sqr(a); &lt;br /&gt;return(x); &lt;br /&gt;Choose from one of the alternatives &lt;br /&gt;a.return(sqr(a)); &lt;br /&gt;b.printf("sqr(a)"); &lt;br /&gt;c.return(a*a*a); &lt;br /&gt;d.printf("%d",sqr(a)); &lt;br /&gt;7.Which of the following about the C comments is incorrect ? &lt;br /&gt;a.commentscan go over multiple lines &lt;br /&gt;b.comments can start any where in the line &lt;br /&gt;c.a line can contain comments with out any language statements &lt;br /&gt;d.comments can occur within comments &lt;br /&gt;8.What is the value of y in the following code? &lt;br /&gt;x=7;y=0; &lt;br /&gt;if(x=6) &lt;br /&gt;y=7; &lt;br /&gt;else &lt;br /&gt;y=1; &lt;br /&gt;a.7 &lt;br /&gt;b.0 &lt;br /&gt;c.1 &lt;br /&gt;d.6 &lt;br /&gt;9.Read the function conv() given below &lt;br /&gt;conv(int t) &lt;br /&gt;{ &lt;br /&gt;int u; &lt;br /&gt;u=5/9 * (t-32); &lt;br /&gt;return(u0; &lt;br /&gt;} &lt;br /&gt;What &lt;br /&gt;a.15 &lt;br /&gt;b.0 &lt;br /&gt;c.16.1 &lt;br /&gt;d.29 &lt;br /&gt;10.which of the following represents true statement &lt;br /&gt;either x is inthe range of 10 and 50 or y is zero &lt;br /&gt;a.x&gt;=10 &amp;&amp; x&lt;=50 || y==0; &lt;br /&gt;b. &lt;br /&gt;c. &lt;br /&gt;d. &lt;br /&gt;11.Which of the following is not an infinite loop ? &lt;br /&gt;a.while(1){ &lt;br /&gt;.... &lt;br /&gt;} &lt;br /&gt;b.for(;;){ &lt;br /&gt;... &lt;br /&gt;} &lt;br /&gt;c.x=0; &lt;br /&gt;do{ &lt;br /&gt;/*x unaltered within theloop*/ &lt;br /&gt;... &lt;br /&gt;}while(x==0); &lt;br /&gt;d.# define TRUE 0 &lt;br /&gt;... &lt;br /&gt;while(TRUE){ &lt;br /&gt;.... &lt;br /&gt;} &lt;br /&gt;12.what does the following function print? &lt;br /&gt;func(int i) &lt;br /&gt;{ &lt;br /&gt;if(i%2)return 0; &lt;br /&gt;eale return 1; &lt;br /&gt;} &lt;br /&gt;main() &lt;br /&gt;{ &lt;br /&gt;int =3; &lt;br /&gt;i=func(i); &lt;br /&gt;i=func(i); &lt;br /&gt;printf("%d",i);} &lt;br /&gt;a.3 &lt;br /&gt;b.1 &lt;br /&gt;c.0 &lt;br /&gt;d.2 &lt;br /&gt;13.how does the C compiler interpret the following two statements &lt;br /&gt;p=p+x; &lt;br /&gt;q=q+y; &lt;br /&gt;a.p=p+x; &lt;br /&gt;q=q+y &lt;br /&gt;b.p=p+xq=q+y &lt;br /&gt;c.p=p+xq; &lt;br /&gt;q=q+y &lt;br /&gt;d.p=p+x/q=q+y &lt;br /&gt;&lt;br /&gt;For questions 14,15,16,17 use the following alternatives &lt;br /&gt;&lt;br /&gt;a.int &lt;br /&gt;b.char &lt;br /&gt;c.string &lt;br /&gt;d.float &lt;br /&gt;14.'9' &lt;br /&gt;15."1 e 02" &lt;br /&gt;16.10e05 &lt;br /&gt;17. 15 &lt;br /&gt;&lt;br /&gt;18.read the folllowing code &lt;br /&gt;# define MAX 100 &lt;br /&gt;# define MIN 100 &lt;br /&gt;.... &lt;br /&gt;.... &lt;br /&gt;if(x&gt;MAX) &lt;br /&gt;x=1; &lt;br /&gt;else if(x &lt;br /&gt;x=-1; &lt;br /&gt;x=50; &lt;br /&gt;if the initial value of x=200,what is the vlaue after executing this code? &lt;br /&gt;a.200 &lt;br /&gt;b.1 &lt;br /&gt;c.-1 &lt;br /&gt;d.50 &lt;br /&gt;19.a memory of 20 bytes is allocated to a string declared as char *s &lt;br /&gt;then the following two statements are executed: &lt;br /&gt;s="Etrance" &lt;br /&gt;l=strlen(s); &lt;br /&gt;what is the value of l ? &lt;br /&gt;a.20 &lt;br /&gt;b.8 &lt;br /&gt;c.9 &lt;br /&gt;d.21 &lt;br /&gt;20.given the piece of code &lt;br /&gt;int a[50]; &lt;br /&gt;int *pa; &lt;br /&gt;pa=a; &lt;br /&gt;to access the 6th element of the array which of the following is incorrect? &lt;br /&gt;a.*(a+5) &lt;br /&gt;b.a[5] &lt;br /&gt;c.pa[5] &lt;br /&gt;d.*(*pa + 5) &lt;br /&gt;21.consider the following structure: &lt;br /&gt;struct num nam{ &lt;br /&gt;int no; &lt;br /&gt;char name[25]; &lt;br /&gt;}; &lt;br /&gt;struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; &lt;br /&gt;..... &lt;br /&gt;..... &lt;br /&gt;printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); &lt;br /&gt;What does the above statement print? &lt;br /&gt;a.8,9 &lt;br /&gt;b.9,9 &lt;br /&gt;c.8,8 &lt;br /&gt;d.8,unpredictable value &lt;br /&gt;22.identify the in correct expression &lt;br /&gt;a.a=b=3=4; &lt;br /&gt;b.a=b=c=d=0; &lt;br /&gt;float a=int b=3.5; &lt;br /&gt;d.int a; &lt;br /&gt;float b; &lt;br /&gt;a=b=3.5; &lt;br /&gt;23.regarding the scope of the varibles;identify the incorrect statement: &lt;br /&gt;a.automatic variables are automatically initialised to 0 &lt;br /&gt;b.static variables are are automatically initialised to 0 &lt;br /&gt;c.the address of a register variable is not accessiable &lt;br /&gt;d.static variables cannot be initialised with any expression &lt;br /&gt;24.cond 1?cond 2?cond 3?:exp 1:exp 2:exp 3:exp 4; &lt;br /&gt;is equivalent to which of the following? &lt;br /&gt;a.if cond 1 &lt;br /&gt;exp 1; &lt;br /&gt;else if cond 2 &lt;br /&gt;exp 2; &lt;br /&gt;else if cond 3 &lt;br /&gt;exp 3; &lt;br /&gt;else &lt;br /&gt;exp 4; &lt;br /&gt;b.if cond 1 &lt;br /&gt;if cond 2 &lt;br /&gt;if cond 3 &lt;br /&gt;exp 1; &lt;br /&gt;else &lt;br /&gt;exp 2; &lt;br /&gt;else &lt;br /&gt;exp 3; &lt;br /&gt;else &lt;br /&gt;exp 4; &lt;br /&gt;c.if cond 1 &amp;&amp; cond 2 &amp;&amp; cond 3 &lt;br /&gt;exp 1 |exp 2|exp 3|exp 4; &lt;br /&gt;d.if cond 3 &lt;br /&gt;exp 1; &lt;br /&gt;else if cond 2 &lt;br /&gt;exp 2; &lt;br /&gt;else if cond 3 &lt;br /&gt;exp 3; &lt;br /&gt;else &lt;br /&gt;exp 4; &lt;br /&gt;25.the operator for exponencation is &lt;br /&gt;a.** &lt;br /&gt;b.^ &lt;br /&gt;c.% &lt;br /&gt;d.not available &lt;br /&gt;26.which of the following is invalid &lt;br /&gt;a.a+=b &lt;br /&gt;b.a*=b &lt;br /&gt;c.a&gt;&gt;=b &lt;br /&gt;d.a**=b &lt;br /&gt;27.what is y value of the code if input x=10 &lt;br /&gt;y=5; &lt;br /&gt;if (x==10) &lt;br /&gt;else if(x==9) &lt;br /&gt;elae y=8; &lt;br /&gt;a.9 &lt;br /&gt;b.8 &lt;br /&gt;c.6 &lt;br /&gt;d.7 &lt;br /&gt;28.what does the following code do? &lt;br /&gt;fn(int n,int p,int r) &lt;br /&gt;{ &lt;br /&gt;static int a=p; &lt;br /&gt;switch(n){ &lt;br /&gt;case 4:a+=a*r; &lt;br /&gt;case 3:a+=a*r; &lt;br /&gt;case 2:a+=a*r; &lt;br /&gt;case 1:a+=a*r; &lt;br /&gt;} &lt;br /&gt;} &lt;br /&gt;a.computes simple interest for one year &lt;br /&gt;b.computes amount on compound interest for 1 to 4 years &lt;br /&gt;c.computes simple interest for four year &lt;br /&gt;d.computes compound interst for 1 year &lt;br /&gt;29.a=0; &lt;br /&gt;while(a&lt;5) &lt;br /&gt;printf("%d\n",a++); &lt;br /&gt;how many times does the loop occurs? &lt;br /&gt;a.infinite &lt;br /&gt;b.5 &lt;br /&gt;c.4 &lt;br /&gt;d.6 &lt;br /&gt;30.how many times does the loop iterated ? &lt;br /&gt;for (i=0;i=10;i+=2) &lt;br /&gt;printf("Hi\n"); &lt;br /&gt;a.10 &lt;br /&gt;b.2 &lt;br /&gt;c.5 &lt;br /&gt;d..... &lt;br /&gt;31.what is incorrect among teh following &lt;br /&gt;A recursive functiion &lt;br /&gt;a.calls itself &lt;br /&gt;b.is equivalent to a loop &lt;br /&gt;c.has a termination cond &lt;br /&gt;d.does not have a return value at all &lt;br /&gt;32.which of the following go out of the loopo if expn 2 becoming false &lt;br /&gt;a.while(expn 1){...if(expn 2)continue;} &lt;br /&gt;b.while(!expn 1){if(expn 2)continue;...} &lt;br /&gt;c.do{..if(expn 1)continue;..}while(expn 2); &lt;br /&gt;d.while(!expn 2){if(expn 1)continue;..} &lt;br /&gt;33.consider the following program &lt;br /&gt;B &lt;br /&gt;main() &lt;br /&gt;OB {unsigned int i=10; &lt;br /&gt;while(i&gt;=0){ &lt;br /&gt;printf("%u",i) &lt;br /&gt;i--; &lt;br /&gt;} &lt;br /&gt;} &lt;br /&gt;how many times the loop wxecuted &lt;br /&gt;a.10 &lt;br /&gt;b.9 &lt;br /&gt;c.11 &lt;br /&gt;d.infinite &lt;br /&gt;34.pick out the add one out &lt;br /&gt;a.malloc() &lt;br /&gt;b.calloc() &lt;br /&gt;c.free() &lt;br /&gt;d.realloc() &lt;br /&gt;35.consider the following program &lt;br /&gt;main() &lt;br /&gt;{ &lt;br /&gt;int a[5]={1,3,6,7,0}; &lt;br /&gt;int *b; &lt;br /&gt;b=&amp;a[2]; &lt;br /&gt;} &lt;br /&gt;the value of b[-1] is &lt;br /&gt;a.1 &lt;br /&gt;b.3 &lt;br /&gt;c.-6 &lt;br /&gt;d.none &lt;br /&gt;36.# define prod(a,b)=a*b &lt;br /&gt;main() &lt;br /&gt;{ &lt;br /&gt;int x=2; &lt;br /&gt;int y=3; &lt;br /&gt;printf("%d",prod(x+2,y-10)); } &lt;br /&gt;&lt;br /&gt;the output of the program is &lt;br /&gt;a.8 &lt;br /&gt;b.6 &lt;br /&gt;c.7 &lt;br /&gt;d.none &lt;br /&gt;37.consider the following program sigment &lt;br /&gt;int n,sum=1; &lt;br /&gt;switch(n) { &lt;br /&gt;case 2:sum=sum+2; &lt;br /&gt;case 3:sum*=2; &lt;br /&gt;break; &lt;br /&gt;default:sum=0;} &lt;br /&gt;if n=2, what is the value of sum &lt;br /&gt;a.0 &lt;br /&gt;b.6 &lt;br /&gt;c.3 &lt;br /&gt;d.none &lt;br /&gt;38.identify the incorrect one &lt;br /&gt;1.if(c=1) &lt;br /&gt;2.if(c!=3) &lt;br /&gt;3.if(a &lt;br /&gt;4.if(c==1) &lt;br /&gt;a.1 only &lt;br /&gt;b.1&amp;3 &lt;br /&gt;c.3 only &lt;br /&gt;d.all &lt;br /&gt;39.teh format specified for hexa decimal is &lt;br /&gt;a.%d &lt;br /&gt;b.%o &lt;br /&gt;c.%x &lt;br /&gt;d.%u &lt;br /&gt;40.find the output of the following program &lt;br /&gt;main() &lt;br /&gt;{ &lt;br /&gt;int x=5, *p; &lt;br /&gt;p=&amp;x; &lt;br /&gt;printf("%d",++*p); &lt;br /&gt;} &lt;br /&gt;a.5 &lt;br /&gt;b.6 &lt;br /&gt;c.0 &lt;br /&gt;d.none &lt;br /&gt;41.consider the following C code &lt;br /&gt;main() &lt;br /&gt;{ &lt;br /&gt;int i=3,x; &lt;br /&gt;while(i&gt;0) &lt;br /&gt;{ &lt;br /&gt;x=func(i); &lt;br /&gt;i--; &lt;br /&gt;} &lt;br /&gt;int func(int n) &lt;br /&gt;{ &lt;br /&gt;static sum=0; &lt;br /&gt;sum=sum+n; &lt;br /&gt;return(sum); &lt;br /&gt;} &lt;br /&gt;the final value of x is &lt;br /&gt;a.6 &lt;br /&gt;b.8 &lt;br /&gt;c.1 &lt;br /&gt;d.3 &lt;br /&gt;43.int *a[5] refers to &lt;br /&gt;a.array of pointers &lt;br /&gt;b.pointer to an array &lt;br /&gt;c.pointerto a pointer &lt;br /&gt;d...... &lt;br /&gt;46.which of the following statements is incorrect &lt;br /&gt;a.typedef struct new{ &lt;br /&gt;int n1; &lt;br /&gt;char n2; &lt;br /&gt;} DATA; &lt;br /&gt;b.typedef struct { &lt;br /&gt;int n3; &lt;br /&gt;char *n4; &lt;br /&gt;}ICE; &lt;br /&gt;c.typedef union { &lt;br /&gt;int n5; &lt;br /&gt;float n6; &lt;br /&gt;} UDT; &lt;br /&gt;d.#typedef union { &lt;br /&gt;int n7; &lt;br /&gt;float n8; &lt;br /&gt;} TUDAT; &lt;br /&gt;&lt;br /&gt;******************************************************************************** &lt;br /&gt;Only These Are The Questions Avilable For C Paper. &lt;br /&gt;&lt;br /&gt;******************************************************************************** &lt;br /&gt;ANSWERS: &lt;br /&gt;----------- &lt;br /&gt;&lt;br /&gt;1-5 D,C,D,C,C &lt;br /&gt;&lt;br /&gt;6-10 D,C,C,A,D &lt;br /&gt;&lt;br /&gt;11-15 D,C,A,A,A &lt;br /&gt;&lt;br /&gt;16-20 B,C,D,C,A &lt;br /&gt;&lt;br /&gt;21-25 C,D,B,D,A &lt;br /&gt;&lt;br /&gt;26-30 C,B,B,A,D &lt;br /&gt;&lt;br /&gt;31-35 B,C,C,C,B &lt;br /&gt;&lt;br /&gt;36-40 A,B,A,B,B &lt;br /&gt;&lt;br /&gt;41-45 A,D,D,D,A &lt;br /&gt;&lt;br /&gt;46-50 B,C,C,A,A &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This the COBOL paper. &lt;br /&gt;&lt;br /&gt;01.consider the following piece of code &lt;br /&gt;&lt;br /&gt;01 GROSS-PAY &lt;br /&gt;05 BASIC-PAY PIC 9(5) &lt;br /&gt;05 ALLOWENCES PIC 9(3) &lt;br /&gt;if BASIC-PAY has a value 1000 and ALLOWENCES has a value of 250,what will be &lt;br /&gt;displayed by the statement &lt;br /&gt;DISPLAY GROSS-PAY &lt;br /&gt;a.1250 &lt;br /&gt;b.01000250 &lt;br /&gt;c.01250 &lt;br /&gt;d.1.250 &lt;br /&gt;02.consider two data items &lt;br /&gt;&lt;br /&gt;77 W-A PIC 9(3)V99 VALUE 23.75 &lt;br /&gt;77 W-B PIC ZZ9V99 VLAUE 123.45 &lt;br /&gt;after the statement &lt;br /&gt;MOVE W-A TO W-B &lt;br /&gt;what will be W-B's value? &lt;br /&gt;a.123.75 &lt;br /&gt;b.b23.75 (where b indicates space) &lt;br /&gt;c.023.75 &lt;br /&gt;d.invalid move &lt;br /&gt;03.what is the result of the following? &lt;br /&gt;&lt;br /&gt;DIVIDE A INTO B GIVING C. &lt;br /&gt;&lt;br /&gt;a.C=A/B &lt;br /&gt;b.the reminder of B/A is stored in C &lt;br /&gt;c.C=B/A &lt;br /&gt;d.the reminder of A/B is stored in C &lt;br /&gt;04.consider the statement (incomplete) &lt;br /&gt;IF(A NUMERIC) &lt;br /&gt;DISPLAY A &lt;br /&gt;the variable A can be &lt;br /&gt;a.NUMERIC &lt;br /&gt;b.ALPHABETIC &lt;br /&gt;c.ALPHANUMERIC &lt;br /&gt;d.NUMERIC OR ALPHANUMERIC &lt;br /&gt;05.which of the following can be used as a check protection symbol &lt;br /&gt;a.Z &lt;br /&gt;b.S &lt;br /&gt;c.* &lt;br /&gt;d.+ &lt;br /&gt;06.what if any ,is the syntex error in the following piece of code &lt;br /&gt;01 B PIC A(7) &lt;br /&gt;02 C PIC 9(4) &lt;br /&gt;........ &lt;br /&gt;IF(B NUMERIC) &lt;br /&gt;ADD 10 TO C &lt;br /&gt;a.the condition in the if statement is wrong &lt;br /&gt;b.noting is wrong &lt;br /&gt;c.because C is initialised.ADD 10 TO C is wrong &lt;br /&gt;d.both B and C shoud have same size. &lt;br /&gt;07.study the following code &lt;br /&gt;01 A1 &lt;br /&gt;05 B PIC 99 &lt;br /&gt;05 C PIC X(4) &lt;br /&gt;01 A2 &lt;br /&gt;05 B PIC 99V99 &lt;br /&gt;05 C PIC A(4) &lt;br /&gt;pick out the valid statement from the following &lt;br /&gt;a.A1 and A2 can not have sub-ordinates &lt;br /&gt;b.A1 and A2 can have the same sub-ordinates but must have same PIC clause &lt;br /&gt;c.there is nothing wrong &lt;br /&gt;d.A1 and A2 can have same sub-ordinates provided they are not at 01 level &lt;br /&gt;08.study the following &lt;br /&gt;01 A PIC 99V0 VALUE 5 &lt;br /&gt;01 B PIC 9V9 VALUE 6 &lt;br /&gt;01 C PIC 99V9 VALUE 2.5 &lt;br /&gt;01 D PIC 99 VALUE 3 &lt;br /&gt;COMPUTE A ROUNDED B C = A+B*C/D &lt;br /&gt;ON SIZE ERROR PERFORM PRINT-ERROR &lt;br /&gt;the comments of A.B.C after execution of the above statement are &lt;br /&gt;a.A=10 B=0 C=10 &lt;br /&gt;b.A=10 B=9.9 C=9.9 &lt;br /&gt;c.A=10 B=0 C=9.9 &lt;br /&gt;d.A=10 B=6 C=10 &lt;br /&gt;09.how many times PARA-A is performed : &lt;br /&gt;PERFORM PARA-A VARYING TIMES-COUNTER FROM 1 BY 1 &lt;br /&gt;UNTIL TIMES-COUNTER &gt;0 &lt;br /&gt;PARA-A &lt;br /&gt;MOVE P TO Q &lt;br /&gt;MOVE H TO TIMES COUNTER &lt;br /&gt;a.10 &lt;br /&gt;b.1 &lt;br /&gt;c.11 &lt;br /&gt;d.0 &lt;br /&gt;10.consider the following piece of code &lt;br /&gt;01 GROUP-ITEM &lt;br /&gt;05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 &lt;br /&gt;05 AMOUNT-2 PIC 9(4)V99 USAGE COMP &lt;br /&gt;MOVE ZERO TO GROUP-ITEM &lt;br /&gt;ADD 50 TO AMOUNT-1 &lt;br /&gt;what will be the content of AMOUNT-1? &lt;br /&gt;a.50 &lt;br /&gt;b.100 &lt;br /&gt;c.0 &lt;br /&gt;d.unpredictable &lt;br /&gt;11.consider the following progrm statements &lt;br /&gt;MOVE 0 TO SW.NO.OF.REC &lt;br /&gt;PERFORM PRI-OUT UNTIL SW=1 &lt;br /&gt;DISPALY NO.OF.REC &lt;br /&gt;STOP RUN &lt;br /&gt;PRE-OUT &lt;br /&gt;READ IN-FILE AT END &lt;br /&gt;MOVE 1 TO SW &lt;br /&gt;WRITE OUO-REC FROM IN-REC &lt;br /&gt;ADD 1 TO NO.OF REC &lt;br /&gt;if the IN-FILE contains 1000 records what value will be displayedafter the &lt;br /&gt;PERFORM is over?assume that N0.OF.REC has PIC 9(4) &lt;br /&gt;a.1000 &lt;br /&gt;b.1001 &lt;br /&gt;c.1 &lt;br /&gt;d.none of the above since there is a syntex error &lt;br /&gt;12.study the data discriptions and answer the questions given below &lt;br /&gt;i)01 ORDER RECORD &lt;br /&gt;05 OUT-HEADER PIC X(50) &lt;br /&gt;05 ITEM-COUNT PIC 99 &lt;br /&gt;05 OUT-ITEM PIC X(20) OCCURS 1 TO 20 DEPENDING ON ITEM-COUNT &lt;br /&gt;ii)01 NAME-AND-ADDRESS &lt;br /&gt;05 N-AND-A-LINE OCCURES 5 &lt;br /&gt;05 LINE-LENGTH PIC P9 &lt;br /&gt;05 N-AND-A-CHAR PIC X OCCURS 1 TO 20 DEPENDING ON LINE-LENGTH &lt;br /&gt;iii)01 SALES-LIST &lt;br /&gt;05 SALESMAN-COUNT PIC 99 &lt;br /&gt;05 SALES PIC 9(6) OCCURS 1 TO 100 DEPENDING ON &lt;br /&gt;SALESMAN-COUNT &lt;br /&gt;iv)01 ORDER-RECORD &lt;br /&gt;05 NO-OF-BRANDS PIC 99 &lt;br /&gt;05 BRAND-PURCHASED OCCURS 1 TO 15 DEPENDING ON NO-OF-BRANDS &lt;br /&gt;which of the following is true? &lt;br /&gt;a.i) and iii) are valid &lt;br /&gt;b.i) and iv) are valid &lt;br /&gt;c.i) and iii) are not valid &lt;br /&gt;d.all are valid &lt;br /&gt;13.C1 C2 C3 are three conditions whose TRUTH values are as folloes. &lt;br /&gt;C1-TRUE C2-FALSE C3-TRUE &lt;br /&gt;A,B,C are defined as given below &lt;br /&gt;A:C1 AND(NOT C2) OR C3 &lt;br /&gt;B.(NOT C1) OR (NOT C2 AND NOT C3) &lt;br /&gt;C.(C1 OR C2)AND C3 &lt;br /&gt;D.C1 AND C2 OR C3 &lt;br /&gt;given the above information which of the following statements are valid? &lt;br /&gt;a.only A,B and C are TRUE &lt;br /&gt;b.only A,C and D are TRUE &lt;br /&gt;c.A,B,C and D are TRUE &lt;br /&gt;d.only C and D are TRUE &lt;br /&gt;14.consider the following &lt;br /&gt;FD FILE-1 &lt;br /&gt;01 REC-1 PIC X(80) &lt;br /&gt;...... &lt;br /&gt;WORKING-STORAGE SECTION &lt;br /&gt;01 W-REC PIC X(90) &lt;br /&gt;........ &lt;br /&gt;PROCEDURE DIVISION &lt;br /&gt;FIRST-PARA &lt;br /&gt;....... &lt;br /&gt;READ FILE-1 INTO W-REC AT END MOVE 1 TO EOF-FLAG &lt;br /&gt;which of the following is true with respect to the above? &lt;br /&gt;a.REC-1 will contain nothing and W-REC will contain the contains of the &lt;br /&gt;record read &lt;br /&gt;b.REC-1 and W-REC contain the same data &lt;br /&gt;c.syntex is invalid and error will occur &lt;br /&gt;d.REC-1 and W-REC must be of same size &lt;br /&gt;15.PERFORM ACCUMULATE-TOTALS &lt;br /&gt;VARYING A FROM 1 BY 2 UNTIL A &gt;2 &lt;br /&gt;AFTER B FROM1 BY 1 UNTIL B&gt;2 &lt;br /&gt;AFTER C FROM 2 BY -1 UNTIL C&lt;2 &lt;br /&gt;the paragraph ACCUMULATE-TOTALS would be exicuted &lt;br /&gt;a.18 times &lt;br /&gt;b.4 times &lt;br /&gt;c.8 times &lt;br /&gt;d.24 times &lt;br /&gt;16.there is a file whose ORGANISATION is INDEXED.you want to read the records &lt;br /&gt;from the file in RANDOM fashion as well as sequentially.then which of the &lt;br /&gt;access mode would you specify? &lt;br /&gt;a.SEQUENTIAL &lt;br /&gt;b.RANDOM &lt;br /&gt;c.DYNAMIC &lt;br /&gt;D.ACCESS MODE has nothing to do with it &lt;br /&gt;17.consider the following PROCEDURE DIVISION entry &lt;br /&gt;OPEN EXTEND IN-FILE &lt;br /&gt;identify the correct statement &lt;br /&gt;a.organization of IN-FILE is sequential and records can be added in the &lt;br /&gt;beginning &lt;br /&gt;b.organization of IN-FILE is sequential and records can be added in the &lt;br /&gt;end &lt;br /&gt;c.organization of IN-FILE is indexed and records can be added in the &lt;br /&gt;beginning &lt;br /&gt;d.organization of IN-FILE is indexed and records can be added in the end &lt;br /&gt;18.what is the size of W-REC in the following &lt;br /&gt;01 W-REC &lt;br /&gt;05 A PIC 9(4)V99 &lt;br /&gt;05 B READLINES A &lt;br /&gt;10 C PIC XX &lt;br /&gt;10 D PIC S9(4) &lt;br /&gt;05 E OCCURS 7 PIC ZZ.ZZ &lt;br /&gt;05 F OCCURS 5 &lt;br /&gt;10 G PIC ZZ.ZZZ99 &lt;br /&gt;10 H OCCURS 3 &lt;br /&gt;15 J PIC 9(3) &lt;br /&gt;15 K PIC V99 &lt;br /&gt;a.177 &lt;br /&gt;b.161 &lt;br /&gt;c.180 &lt;br /&gt;d.none of yhe above &lt;br /&gt;19.consider the following two IF statements: &lt;br /&gt;IF X AND NOT Y MOVE A TO B &lt;br /&gt;IF Z=1 OR 9 MOVE A TO B &lt;br /&gt;select one of the following data divusion entries which gives identical &lt;br /&gt;results for both the above IF statements &lt;br /&gt;a.01 Z PIC 9 &lt;br /&gt;88 X VALUE 1.9 &lt;br /&gt;88 Y VALUE 0.2 THRU 8 &lt;br /&gt;b.01 Z PIC 9 &lt;br /&gt;88 X VALUE 0.2 THRU 8 &lt;br /&gt;Y VALUE 1.9 &lt;br /&gt;c.01 Z PIC 9 &lt;br /&gt;88 X VALUE 1.9 &lt;br /&gt;88 NOT-Y VALUE 0.2 THRU 1.9 &lt;br /&gt;d.none of yhe above &lt;br /&gt;20.consider the following two statements &lt;br /&gt;MOVE 10 TO N &lt;br /&gt;PERFORM PARA-X N TIMES &lt;br /&gt;STOP RUN &lt;br /&gt;PARA-X &lt;br /&gt;MOVE 5 TO N &lt;br /&gt;how many times PARA-X willbe exicuted? &lt;br /&gt;a.10 &lt;br /&gt;b.5 &lt;br /&gt;c.infinate &lt;br /&gt;d.execution error &lt;br /&gt;21.given the following: &lt;br /&gt;77 A PIC 9V9 VALUE 9.5 &lt;br /&gt;77 B PIC 9 VALUE 9. &lt;br /&gt;77 C PIC V9 VALUE 0.8 &lt;br /&gt;77 D PIC 9 &lt;br /&gt;77 E PIC 9 &lt;br /&gt;77 F PIC 9V999 &lt;br /&gt;what are the contenta of D E nad F after teh following statements are &lt;br /&gt;executed: &lt;br /&gt;COMPUTE F ROUNDED=A+C/B &lt;br /&gt;MULTIPLY A BY C GIVING E &lt;br /&gt;ADD B C A GIVING D ROUNDED &lt;br /&gt;a.F=9.589 E=8 D=1 &lt;br /&gt;b.F=9.589 E=8 D=9 &lt;br /&gt;c.F=9.589 E=7 D=9 &lt;br /&gt;d.F=9.589 E=7 D=1 &lt;br /&gt;&lt;br /&gt;22. Consider the follwoing IF condition: &lt;br /&gt;&lt;br /&gt;IF A LESS 1200 IF B GREATER 25 MOVE 47 TOC &lt;br /&gt;ELSE MOVE 57 TO C &lt;br /&gt;IF A GREATER 249 MOVE 67 TO C &lt;br /&gt;ELSE NEXT SENTENCE ELSE IF B LESS 67 &lt;br /&gt;MOVE 27 TO C &lt;br /&gt;&lt;br /&gt;What will be the value of C, when A is 137 and b is 25 &lt;br /&gt;(a) 27 &lt;br /&gt;(b) 57 &lt;br /&gt;(c) 67 &lt;br /&gt;(d) none &lt;br /&gt;&lt;br /&gt;23. Consider the following: &lt;br /&gt;&lt;br /&gt;77 W-NUM PIC 9 VALUE 0 &lt;br /&gt;------ &lt;br /&gt;MOVE 1 TO W-NUM &lt;br /&gt;PERFORM PARA-X UNTIL W-NUM &gt; 9. &lt;br /&gt;------ &lt;br /&gt;PARA-X &lt;br /&gt;ADD 1 TO W-NUM &lt;br /&gt;&lt;br /&gt;How many times PARA-X is executed ? &lt;br /&gt;(a) 10 &lt;br /&gt;(b) 9 &lt;br /&gt;(c) 11 &lt;br /&gt;(d) Infinite loop &lt;br /&gt;&lt;br /&gt;24. Consider the following code: &lt;br /&gt;&lt;br /&gt;77 A PIC 99V99 VALUE 55.35 &lt;br /&gt;77 B PIC 99V999 VALUE 32.754 &lt;br /&gt;&lt;br /&gt;ADD B TO A ON SIZE ERROR DISPLAY "ERROR!!!" &lt;br /&gt;&lt;br /&gt;What will be the result ? &lt;br /&gt;(a) A=88.10, B=32.754 &lt;br /&gt;(b) A=87.00 B=32.754 &lt;br /&gt;(c) A=87.10 B=32.754 &lt;br /&gt;(d) ERROR!!! will be DISPLAYed on the screen. &lt;br /&gt;&lt;br /&gt;25. Consider the following: &lt;br /&gt;&lt;br /&gt;77 A PIC 9(10) &lt;br /&gt;77 B PIC 9(10) &lt;br /&gt;77 C PIC 9(19) &lt;br /&gt;&lt;br /&gt;MULTIPLY AB BY B GIVING C &lt;br /&gt;&lt;br /&gt;Which of the following is true ? &lt;br /&gt;&lt;br /&gt;(a) The execution of the above may result in size error. &lt;br /&gt;(b) The execution of the above will result in size error. &lt;br /&gt;(c) The definition of C is invalid resulting in compilation error. &lt;br /&gt;(d) No error will be thee and the program would proceed correctly. &lt;br /&gt;&lt;br /&gt;26. A paragraph PARA-X is to be executed when none oof the data names &lt;br /&gt;A, B and C have value of 1. Which of the following will achieve this ? &lt;br /&gt;&lt;br /&gt;(a) IF A NOT = 1 OR B NOT = 1 OR C NOT = 1 PERFORM PARA-X &lt;br /&gt;(B) IF NOT A= 1 AND B= 1 AND C = 1 PERFORM PARA-X &lt;br /&gt;(C) IF A NOT =1 IF NOT B = 1 OR C= 1 PERFORM PARA-X &lt;br /&gt;(C) IF A NOT = 1 AND B NOT = 1 AND C NOT = 1 PERFORM PARA-X &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;27. Study the five expressions and the class to which they belong: &lt;br /&gt;S.N. Expression Class &lt;br /&gt;1 "SPACES" Figurative constant &lt;br /&gt;2. "Depreciation Schedule Non-numeric literal &lt;br /&gt;3. "12%" Non-numeric literal &lt;br /&gt;4. INTEREST-DUE Non-numeric literal &lt;br /&gt;5. ZEROES Figurative constant &lt;br /&gt;Which of the following statement is true? &lt;br /&gt;(a) 1 and 3 are incorrect &lt;br /&gt;(b) 1 and 4 are incorrect &lt;br /&gt;(c) 3 and 4 are incorrect &lt;br /&gt;(d) All are correct &lt;br /&gt;&lt;br /&gt;28. Identify the invalid dataname from the following: &lt;br /&gt;(a) SAVINGS-ACCOUNT &lt;br /&gt;(b) ANNUAL-ALLOCATION-FOR-OVERHEAD &lt;br /&gt;(c) SAMOUNT250 &lt;br /&gt;(d) 12DEMAND &lt;br /&gt;&lt;br /&gt;29. Study the DATA DIVISION entries and the three PROCEDURE DIVISION entries &lt;br /&gt;given below: &lt;br /&gt;01 END-OF-FILE-SWITCH PIC XXX. &lt;br /&gt;88 NO-MORE-RECS VALUE "YES". &lt;br /&gt;88 MORE-RECS VALUE "NO". &lt;br /&gt;(i) READ SAMPLE-FILE AT END MOVE "YES" TO NO-MORE-RECS. &lt;br /&gt;(ii) IF NO-MORE-RECS = "YES" GO TO LAST-PARA. &lt;br /&gt;(iii) IF NO-MORE-RECS GO TO LAST-PARA. &lt;br /&gt;Which are wrong? &lt;br /&gt;(a) (i) and (ii) &lt;br /&gt;(b) (ii) and (iii) &lt;br /&gt;(c) (i) and (iii) &lt;br /&gt;(d) all &lt;br /&gt;&lt;br /&gt;30. The following entries appear in the WORKING-STORAGE SECTION: &lt;br /&gt;01 DATE-TODAY. &lt;br /&gt;05 YY PIC XX VALUE "90". &lt;br /&gt;05 MM PIC XX VALUE "12". &lt;br /&gt;05 DD PIC XX VALUE :31". &lt;br /&gt;01 DATE-EDIT PIC XX/XX/XX. &lt;br /&gt;MOVE DATE-TODAY TO DATE-EDIT. &lt;br /&gt;(a) 901231 &lt;br /&gt;(b) 90/12/31 &lt;br /&gt;(c) 31/12/90 &lt;br /&gt;(d) 311290 &lt;br /&gt;&lt;br /&gt;31. How many bytes will be allocated for the following record description &lt;br /&gt;entries? &lt;br /&gt;01 REC-A. &lt;br /&gt;05 A PIC S9(4). &lt;br /&gt;05 B PIC XXXBXXX. &lt;br /&gt;05 C PIC ____9.99. &lt;br /&gt;05 D PIC S9(5) COMP-3. &lt;br /&gt;05 E PIC 9(3) COMP. &lt;br /&gt;(a) 29 &lt;br /&gt;(b) 26 &lt;br /&gt;(c) 25 &lt;br /&gt;(d) 28 &lt;br /&gt;&lt;br /&gt;32. What is wrong with the following data declaration? &lt;br /&gt;01 W-DATE PIC X(6). &lt;br /&gt;05 DD PIC 99. &lt;br /&gt;05 MM PIC 99. &lt;br /&gt;05 YY PIC 99. &lt;br /&gt;(a) Nothing is wrong. &lt;br /&gt;(b) Under W-DATE all level 05 items are having a PIC 99 but level &lt;br /&gt;01 has PIC X(6). &lt;br /&gt;(c) PIC can't be specified for a group item. &lt;br /&gt;(d) DD, MM, and YY are invalid datanames. &lt;br /&gt;&lt;br /&gt;33. What is the output generated by the following code? &lt;br /&gt;01 GRP-I. &lt;br /&gt;05 SUBFLD1 PIC XX VALUE "AB". &lt;br /&gt;05 FILTER PIC X(6) VALUE SPACES. &lt;br /&gt;01 GRP-2 REDEFINED GRP-1. &lt;br /&gt;05 SUB-FLD2 PIC XX. &lt;br /&gt;05 SUB-FLD3 PIC XX. &lt;br /&gt;05 FILTER PIC X(4). &lt;br /&gt;IF SUB-FLD1 NOT = SPACES &lt;br /&gt;DISPLAY "SUBFLD1" &lt;br /&gt;MOVE "ABBCCD" TO GRP-1 &lt;br /&gt;IF SUB-FLD3 = SPACES &lt;br /&gt;DISPLAY "SPACES" &lt;br /&gt;ELSE &lt;br /&gt;DISPLAY "SUBFLD3" &lt;br /&gt;DISPLAY "END" &lt;br /&gt;ELSE &lt;br /&gt;DISPLAY "SPACES" &lt;br /&gt;DISPLAY "END". &lt;br /&gt;(a) SUBFLD1 &lt;br /&gt;SUBFLD3 &lt;br /&gt;END &lt;br /&gt;(b) SPACES &lt;br /&gt;END &lt;br /&gt;(c) SUBFLD1 &lt;br /&gt;END &lt;br /&gt;(d) SUBFLD1 &lt;br /&gt;SPACES &lt;br /&gt;&lt;br /&gt;34. 88 level entry is used for &lt;br /&gt;(a) data items in WORKING-STORAGE SECTION &lt;br /&gt;(b) items with RENAMES clause &lt;br /&gt;(c) condition-names &lt;br /&gt;(d) None of the above &lt;br /&gt;&lt;br /&gt;35. ZEROES and SPACES are _______ constants &lt;br /&gt;(a) Figurative &lt;br /&gt;(b) Numeric &lt;br /&gt;(c) Non-numeric &lt;br /&gt;(d) Alphabete &lt;br /&gt;&lt;br /&gt;36. COMPUTE X = A * B - C * D and &lt;br /&gt;COMPUTE X = (A * B) - (C * D) &lt;br /&gt;(a) Are not the same &lt;br /&gt;(b) Are same &lt;br /&gt;(c) Syntactically wrong &lt;br /&gt;(d) Will yield a run time error &lt;br /&gt;&lt;br /&gt;37. OCCURS clause is used in the DATA DIVISION on data names at &lt;br /&gt;(a) 01 level &lt;br /&gt;(b) 77 level &lt;br /&gt;(c) 88 level &lt;br /&gt;(d) any level from 02 to 49 &lt;br /&gt;&lt;br /&gt;38. Consider the following COBOL entries: &lt;br /&gt;05 X PIC 99 VALUE 10. &lt;br /&gt;SUBTRACT 20 FROM X. &lt;br /&gt;The resultant value of X wil be &lt;br /&gt;(a) 10 &lt;br /&gt;(b) 00 &lt;br /&gt;(c) compile-time error &lt;br /&gt;(d) none of these &lt;br /&gt;&lt;br /&gt;39. Consider the following COBOL entries &lt;br /&gt;05 X PIC 99 VALUE 10. &lt;br /&gt;ADD 40 X TO X. &lt;br /&gt;COMPUTE X = 3 * X - 40. &lt;br /&gt;The result in X is &lt;br /&gt;(a) 10 &lt;br /&gt;(b) 40 &lt;br /&gt;(c) Compile or Run time error &lt;br /&gt;(d) none of these &lt;br /&gt;&lt;br /&gt;40. given the following piece of code: &lt;br /&gt;CALL SUB-PGM USING A, B, C. &lt;br /&gt;CALL SUB-PGM USING A, C, C. &lt;br /&gt;(a) Both CALL statements will always produce same result. &lt;br /&gt;(d) Both CALL statements may produce different result. &lt;br /&gt;(c) Compile-time error because SUB-PGM is a dataname. &lt;br /&gt;(d) Compile-time error because A, B, C are used twice. &lt;br /&gt;&lt;br /&gt;41. The hierarchy of the execution of logical operators is &lt;br /&gt;(a) NOT AND OR &lt;br /&gt;(b) AND OR NOT &lt;br /&gt;(c) OR AND NOT &lt;br /&gt;(d) OR NOT AND &lt;br /&gt;&lt;br /&gt;42. The order of precedence of arithmetic operators in an expression can be &lt;br /&gt;overridden with the use of &lt;br /&gt;(a) [] &lt;br /&gt;(b) () &lt;br /&gt;(c) {} &lt;br /&gt;(d) Any of the above &lt;br /&gt;&lt;br /&gt;Consider the following passage for answering questions 43 to 47. &lt;br /&gt;&lt;br /&gt;A program is written to accept an answer to the query "enough fo the Day?" &lt;br /&gt;If the respons is "N" then the program accepts quantity purchased and rate &lt;br /&gt;of the item and displays the amount to be collected. Then the above query &lt;br /&gt;is again displayed and the loop continues. At the end of the day, when &lt;br /&gt;the response to the above query is "Y", the day collections are displayed. &lt;br /&gt;&lt;br /&gt;The program checks that the quantity purchased is between 25 and 125 and the &lt;br /&gt;rate of the item is between 10.00 and 75.00. If any of these two conditions &lt;br /&gt;are violated, the program displays an appropriate message and asks for next &lt;br /&gt;input. The amounts are displayed with proper editing. The program is written &lt;br /&gt;assuming that there can be a maximum of 1000 transactions a day. &lt;br /&gt;&lt;br /&gt;43. How many variables would you declare for the above problem? &lt;br /&gt;(a) 3 &lt;br /&gt;(b) 4 &lt;br /&gt;(c) 5 &lt;br /&gt;(d) 7 &lt;br /&gt;&lt;br /&gt;44. What should be the PICTURE clause of the variable used to calculate &lt;br /&gt;end of the day collections? &lt;br /&gt;(a) 9(9)v99 &lt;br /&gt;(b) 9(8)v99 &lt;br /&gt;(c) 995)v99 &lt;br /&gt;(d) Information given is insufficient to arrive at the answer &lt;br /&gt;&lt;br /&gt;45. What should be the PICTURE clause of the variable used to calculate &lt;br /&gt;to be collected. &lt;br /&gt;(a) 9(9)v99 &lt;br /&gt;(b) 9(8)v99 &lt;br /&gt;(c) 9(5)v99 &lt;br /&gt;(d) Information given is insufficient to arrive at the answer &lt;br /&gt;&lt;br /&gt;46. Assuming that the above program is being executed in a Department &lt;br /&gt;Stores in MADRAS which of the following PICTURE clause will be &lt;br /&gt;suitable for DISPLAYing the end of the day collections? &lt;br /&gt;(a) Z(5)V99 &lt;br /&gt;(b) Z(5).99 &lt;br /&gt;(c) ZZ,ZZ,ZZ,ZZ9.99 &lt;br /&gt;(d) Information given is insufficient to arrive at the answer &lt;br /&gt;&lt;br /&gt;47. How many _____ statements do you think will be there in the program? &lt;br /&gt;(a) 3 &lt;br /&gt;(b) 4 &lt;br /&gt;(c) 5 &lt;br /&gt;(d) Information given is insufficient to arrive at the answer &lt;br /&gt;&lt;br /&gt;48. Which of the following paragraphs is compulsory in every COBOL program? &lt;br /&gt;(a) SPECIAL-NAMES &lt;br /&gt;(b) PROGRAM-ID &lt;br /&gt;(c) FILE-CONTROL &lt;br /&gt;(d) OBJECT-COMPUTER &lt;br /&gt;&lt;br /&gt;49. Which of the following files can be OPENed in all the 4 modes? The four &lt;br /&gt;modes are INPUT, I-O, OUTPUT and EXTEND. &lt;br /&gt;(a) INDEXED &lt;br /&gt;(b) RELATIVE &lt;br /&gt;(c) SEQUENTIAL &lt;br /&gt;(d) All of the above &lt;br /&gt;&lt;br /&gt;50. Which of the following EDITind and PICTURE symbols is to be used if a &lt;br /&gt;minus(-) is to appear before the value if the value is -ve and a plus(+) &lt;br /&gt;is to appear before the value if the value is +ve? &lt;br /&gt;(a) + &lt;br /&gt;(b) - &lt;br /&gt;(c) + OR &lt;br /&gt;(d) It is not possible &lt;br /&gt;&lt;br /&gt;solutions &lt;br /&gt;&lt;br /&gt;b,b,c,c,c,a,d,a,b,a,c,c,b,b,b,c,b,d,a,a,c,b,d,a,d,d,b,c,d,b,a,c,a,c,a,b,d, &lt;br /&gt;a,c,b,a,b,b,b,c,c,a,b,c,a&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-8572697041620288458?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/8572697041620288458/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/02/tcs_9169.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/8572697041620288458'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/8572697041620288458'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/02/tcs_9169.html' title='tcs'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-1614604503346163112</id><published>2009-02-01T22:07:00.000-08:00</published><updated>2009-02-01T22:08:56.501-08:00</updated><title type='text'>TCS</title><content type='html'>Interview(Round 1) &lt;br /&gt;------------------ &lt;br /&gt;1.Tell me about yourself? &lt;br /&gt;&lt;br /&gt;2.what is the difference between windows and linux? &lt;br /&gt;windows regards i/o devices as devices and has device specific drivers,whereas linux &lt;br /&gt;regards everything as files.Windows can be hacked in easily with viruses,linux has &lt;br /&gt;a very strong built in antivirus which hasnt been hacked till date.The password encrypted &lt;br /&gt;in linux hasnt been breaked,whereas in windows there a various techniques for breaking &lt;br /&gt;the password. &lt;br /&gt;&lt;br /&gt;3.What version of linux do u use? &lt;br /&gt;Redhat linux-7.2 in home and slackware in college. &lt;br /&gt;&lt;br /&gt;4.Why do u think windows is prone to viruses? &lt;br /&gt;Windows is an os widely accepted and practiced throughout the world.Every program that is &lt;br /&gt;written is done so that it is compatible with windows and virus is a program which manipulates &lt;br /&gt;this code.So easy to hack windows-compatible programs. &lt;br /&gt;&lt;br /&gt;5.How does linux handle deadlocks? &lt;br /&gt;It just ignores it.The system hangs for a small period of time,but when the memory is freed &lt;br /&gt;it resumes its execution. &lt;br /&gt;&lt;br /&gt;6.Why do u think linux is gaining prominence day by day? &lt;br /&gt;Windows programs are abstracted a lot so that the source code is not available to the users. &lt;br /&gt;Linux is an os not built by some specific mnc.People all around the world contributed for &lt;br /&gt;different softwares that linux has.Infact linux is a collection of s/w s contributed by people &lt;br /&gt;Red hat and slacware etc comps just integrated these and are supplying to the public. &lt;br /&gt;&lt;br /&gt;7.What are the internationally accepted dbms standards? &lt;br /&gt;&lt;br /&gt;8.Do u know about Boyce Codd rules? &lt;br /&gt;&lt;br /&gt;9.How many are Boyce Codd rules? &lt;br /&gt;&lt;br /&gt;10.Tell me what normal forms u know? &lt;br /&gt;&lt;br /&gt;11.Difference between BCNF and 3rd normal form. &lt;br /&gt;&lt;br /&gt;12.What are the features of C++? &lt;br /&gt;&lt;br /&gt;13.What is persistence? &lt;br /&gt;&lt;br /&gt;14.Do u think u will switch to java? &lt;br /&gt;&lt;br /&gt;Interview(2nd round) &lt;br /&gt;------------------- &lt;br /&gt;This inteview was completely on my HR skills. &lt;br /&gt;1.What are ur best and worst moments in ur life? &lt;br /&gt;&lt;br /&gt;2.What do u think u would do in TCS? &lt;br /&gt;&lt;br /&gt;3.What do u know about TCS? &lt;br /&gt;&lt;br /&gt;4.If u are in TCS,what do u think u would be in the next 5 years? &lt;br /&gt;&lt;br /&gt;5.In the next 15 years? &lt;br /&gt;&lt;br /&gt;6.How do ur frenz potray u as? &lt;br /&gt;&lt;br /&gt;7.Do u like programming?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-1614604503346163112?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/1614604503346163112/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/02/tcs_918.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/1614604503346163112'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/1614604503346163112'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/02/tcs_918.html' title='TCS'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-7391559491176881668</id><published>2009-02-01T22:05:00.000-08:00</published><updated>2009-02-01T22:07:04.604-08:00</updated><title type='text'>TCS</title><content type='html'>Part A - Vocabulary(synonyms) 40 Questions &lt;br /&gt;&lt;br /&gt;1. To merry = Enjoy 2.To Alienate = abandon 3.To Solicit = Humble 4.To Heep =to gather &lt;br /&gt;&lt;br /&gt;5.Cargo = load,luggage 6.Momentary = for small time 7.Volume = quantity 8.To Veer = &lt;br /&gt;&lt;br /&gt;9.To Admonish= 10. To Meager = small,little 11. To lattitude, 12. Latent = &lt;br /&gt;&lt;br /&gt;13. To Covet = To desire 14. To Discretion = 15. Potential = ability 16. To Emancipate, &lt;br /&gt;&lt;br /&gt;17. To Wethargy, 18. To Concur = similar 19. To Confiscate = To take charge, to annex &lt;br /&gt;&lt;br /&gt;20. To Dispel = 21. Baffle = puzzle 22. Subsidise = 23. Misery = 24. Pretentrous = &lt;br /&gt;&lt;br /&gt;25. Tranquil = calm, silent 26.Ellace 28.Rinaile, 29.Obstinate 30.Hover 31.Caprice, &lt;br /&gt;&lt;br /&gt;33.Belate =after time 34.Brim = edge 35.Divulge, 36.Lamont, 37.Bileaf, 38. Embrace = &lt;br /&gt;&lt;br /&gt;39.Adhesive = 40. Miserable = &lt;br /&gt;&lt;br /&gt;Critical Reasoning &lt;br /&gt;&lt;br /&gt;_____________________ &lt;br /&gt;&lt;br /&gt;1. My Father is only child to his Father. My father has three sisters. All are married and have two children each. (state True or False Or Can't be determined ) &lt;br /&gt;&lt;br /&gt;1.1 My Grand father has two sons (false) &lt;br /&gt;&lt;br /&gt;1.2 I am having six cousins (true) &lt;br /&gt;&lt;br /&gt;1.3 I have three uncle (true) &lt;br /&gt;&lt;br /&gt;Part B (15 Questions ) &lt;br /&gt;&lt;br /&gt;1. Two Pencils 8 cents 5 Pencils cost ( Ans 20 cents) &lt;br /&gt;&lt;br /&gt;2.A work is done by two people in 24 minutes. One of them alone can do it in 40 minutes. How much time will the other person wiil take to complete it ( 60 minutes) &lt;br /&gt;&lt;br /&gt;3. A car is filled with 4.5 gallons of fuel for a round trip . Car is taken 1/4 more than in going than coming up. What is the fuel consumed in coming up ? (2.0 gallons) &lt;br /&gt;&lt;br /&gt;CHECK &lt;br /&gt;&lt;br /&gt;4. Low temperature at the night in a city is more than 1/2 high as higher temperature are 100. Then What is low temperature (Ans 40) &lt;br /&gt;&lt;br /&gt;5. Person who dicided to go to weekend trip should not exceed 8 hrs driving in a day. Average speed of forward journey is 40 miles/hour . Due to traffic in sundays ,in return journey average speed is 30mph . How far he can select a picnic spot ? (ans 240 miles) &lt;br /&gt;&lt;br /&gt;CHECK &lt;br /&gt;&lt;br /&gt;6. A sales person multiplied by a number and get the answer 3. Instead of that number divided by 3. What is the answer she actually has to get. &lt;br /&gt;&lt;br /&gt;(1/3) * 1 *3 =3 so the no= 1 divided by three. The answer =1/3 &lt;br /&gt;&lt;br /&gt;7. A ship started from port and moving with 'I' miles/hour and other ship started From L and moving with 'H' miles/hour . At the place where these two ships will meet. (ans L*I*H)/(H+I) &lt;br /&gt;&lt;br /&gt;8. A building with height D shadows up to G. A Neighbour building with what height shadows C feet. (ans CD/G) &lt;br /&gt;&lt;br /&gt;9. A person was fined for exceeding the speed limit by 10mph. Another person was also fined for exceeding the speed limit by twice the same. If the second person was travelling at speed of 35mph . Find the speed limit (ans. 15mph) &lt;br /&gt;&lt;br /&gt;10. A bus started from the bus stand at 8 Am and after staying 30 minutes at a destination return back to the bus stand. The Destination is 27 miles from the bus stand . The Speed of the bus is &lt;br /&gt;&lt;br /&gt;18mph . In the return journey the bus travells with 50% fast speed. At what time it is return to the bus stand (1 p.m) &lt;br /&gt;&lt;br /&gt;CHECK &lt;br /&gt;&lt;br /&gt;11. In a mixture R is two parts, S is one part . In order to mixture how much R is to be added. Ans S is 25% of R &lt;br /&gt;&lt;br /&gt;Subject: C and COBOL (fwd) &lt;br /&gt;&lt;br /&gt;this is the TCS C paper.it actually contains 50 questions. but we could get only 43 questions. the set code is 'D'. &lt;br /&gt;&lt;br /&gt;1.The C language terminator is &lt;br /&gt;&lt;br /&gt;a.semicolon b.colon c.period d.exclamation mark &lt;br /&gt;&lt;br /&gt;2.What is false about the following &lt;br /&gt;&lt;br /&gt;A compound statement is &lt;br /&gt;&lt;br /&gt;a.A set of simple statements b.Demarcated on either side by curly brackets &lt;br /&gt;&lt;br /&gt;c.Can be used in place of simple statement d.A C function is not a compound statement. &lt;br /&gt;&lt;br /&gt;3.What is true about the following &lt;br /&gt;&lt;br /&gt;C Functions &lt;br /&gt;&lt;br /&gt;a.Need not return any value b.Should always return an integer &lt;br /&gt;&lt;br /&gt;c.Should always return a float d.Should always return more than one value. &lt;br /&gt;&lt;br /&gt;4.Main must be written as &lt;br /&gt;&lt;br /&gt;a.the first function in the program b.Second function in the program &lt;br /&gt;&lt;br /&gt;c.Last function in the program d.any where in the program &lt;br /&gt;&lt;br /&gt;5.Which of the following about automatic variables within a function is correct ? &lt;br /&gt;&lt;br /&gt;a.its type must be declared before using the variable b.they are local &lt;br /&gt;&lt;br /&gt;c.they are not initialised to zero d.they are global. &lt;br /&gt;&lt;br /&gt;6.Write one statement equalent to the following two statements &lt;br /&gt;&lt;br /&gt;x=sqr(a); return(x); &lt;br /&gt;&lt;br /&gt;Choose from one of the alternatives &lt;br /&gt;&lt;br /&gt;a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a)); &lt;br /&gt;&lt;br /&gt;7.Which of the following about the C comments is incorrect ? &lt;br /&gt;&lt;br /&gt;a.commentscan go over multiple lines b.comments can start any where in the line &lt;br /&gt;&lt;br /&gt;c.a line can contain comments with out any language statements &lt;br /&gt;&lt;br /&gt;d.comments can occur within comments &lt;br /&gt;&lt;br /&gt;8.What is the value of y in the following code? &lt;br /&gt;&lt;br /&gt;x=7;y=0; &lt;br /&gt;&lt;br /&gt;if(x=6) &lt;br /&gt;&lt;br /&gt;y=7; &lt;br /&gt;&lt;br /&gt;else &lt;br /&gt;&lt;br /&gt;y=1; &lt;br /&gt;&lt;br /&gt;a.7 b.0 c.1 d.6 &lt;br /&gt;&lt;br /&gt;9.Read the function conv() given below &lt;br /&gt;&lt;br /&gt;conv(int t) &lt;br /&gt;&lt;br /&gt;{ &lt;br /&gt;&lt;br /&gt;int u; &lt;br /&gt;&lt;br /&gt;u=5/9 * (t-32); &lt;br /&gt;&lt;br /&gt;return(u0; &lt;br /&gt;&lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;What &lt;br /&gt;&lt;br /&gt;a.15 b.0 c.16.1 d.29 &lt;br /&gt;&lt;br /&gt;10.which of the following represents true statement either x is inthe range of 10 and 50 or y is zero &lt;br /&gt;&lt;br /&gt;a.x&gt;=10 &amp;&amp; x&lt;=50 || y==0; b. c. d. &lt;br /&gt;&lt;br /&gt;11.Which of the following is not an infinite loop ? &lt;br /&gt;&lt;br /&gt;a.while(1){ &lt;br /&gt;&lt;br /&gt;.... &lt;br /&gt;&lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;b.for(;;){ &lt;br /&gt;&lt;br /&gt;... &lt;br /&gt;&lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;c.x=0; &lt;br /&gt;&lt;br /&gt;do{ &lt;br /&gt;&lt;br /&gt;/*x unaltered within theloop*/ &lt;br /&gt;&lt;br /&gt;... &lt;br /&gt;&lt;br /&gt;}while(x==0); &lt;br /&gt;&lt;br /&gt;d.# define TRUE 0 &lt;br /&gt;&lt;br /&gt;... &lt;br /&gt;&lt;br /&gt;while(TRUE){ &lt;br /&gt;&lt;br /&gt;.... &lt;br /&gt;&lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;12.what does the following function print? &lt;br /&gt;&lt;br /&gt;func(int i) &lt;br /&gt;&lt;br /&gt;{ &lt;br /&gt;&lt;br /&gt;if(i%2)return 0; &lt;br /&gt;&lt;br /&gt;else return 1; &lt;br /&gt;&lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;main() &lt;br /&gt;&lt;br /&gt;{ &lt;br /&gt;&lt;br /&gt;int =3; &lt;br /&gt;&lt;br /&gt;i=func(i); &lt;br /&gt;&lt;br /&gt;i=func(i); &lt;br /&gt;&lt;br /&gt;printf("%d",i);} &lt;br /&gt;&lt;br /&gt;a.3 b.1 c.0 d.2 &lt;br /&gt;&lt;br /&gt;13.how does the C compiler interpret the following two statements &lt;br /&gt;&lt;br /&gt;p=p+x; &lt;br /&gt;&lt;br /&gt;q=q+y; &lt;br /&gt;&lt;br /&gt;a.p=p+x; q=q+y &lt;br /&gt;&lt;br /&gt;b.p=p+xq=q+y &lt;br /&gt;&lt;br /&gt;c.p=p+xq; q=q+y &lt;br /&gt;&lt;br /&gt;d.p=p+x/q=q+y &lt;br /&gt;&lt;br /&gt;For questions 14,15,16,17 use the following alternatives &lt;br /&gt;&lt;br /&gt;a.int b.char c.string d.float &lt;br /&gt;&lt;br /&gt;14.'9' 15."1 e 02" 16.10e05 17. 15 &lt;br /&gt;&lt;br /&gt;18.read the following code &lt;br /&gt;&lt;br /&gt;# define MAX 100 &lt;br /&gt;&lt;br /&gt;# define MIN 100 &lt;br /&gt;&lt;br /&gt;.... &lt;br /&gt;&lt;br /&gt;.... &lt;br /&gt;&lt;br /&gt;if(x&gt;MAX) &lt;br /&gt;&lt;br /&gt;x=1; &lt;br /&gt;&lt;br /&gt;else if(x &lt;br /&gt;&lt;br /&gt;x=-1; &lt;br /&gt;&lt;br /&gt;x=50; &lt;br /&gt;&lt;br /&gt;if the initial value of x=200,what is the vlaue after executing this code? &lt;br /&gt;&lt;br /&gt;a.200 b.1 c.-1 d.50 &lt;br /&gt;&lt;br /&gt;19.a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: &lt;br /&gt;&lt;br /&gt;s="Etrance"; l=strlen(s); &lt;br /&gt;&lt;br /&gt;what is the value of l ? &lt;br /&gt;&lt;br /&gt;a.20 b.8 c.9 d.21 &lt;br /&gt;&lt;br /&gt;20.given the piece of code &lt;br /&gt;&lt;br /&gt;int a[50]; int *pa; pa=a; &lt;br /&gt;&lt;br /&gt;to access the 6th element of the array which of the following is incorrect? &lt;br /&gt;&lt;br /&gt;a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5) &lt;br /&gt;&lt;br /&gt;21.consider the following structure: &lt;br /&gt;&lt;br /&gt;struct num nam{ &lt;br /&gt;&lt;br /&gt;int no; &lt;br /&gt;&lt;br /&gt;char name[25]; &lt;br /&gt;&lt;br /&gt;}; &lt;br /&gt;&lt;br /&gt;struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; &lt;br /&gt;&lt;br /&gt;..... &lt;br /&gt;&lt;br /&gt;..... &lt;br /&gt;&lt;br /&gt;printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); &lt;br /&gt;&lt;br /&gt;What does the above statement print? &lt;br /&gt;&lt;br /&gt;a.8,9 b.9,9 c.8,8 d.8,unpredictable value &lt;br /&gt;&lt;br /&gt;22.identify the in correct expression &lt;br /&gt;&lt;br /&gt;a.a=b=3=4; b.a=b=c=d=0; c. float a=int b=3.5; d.int a; float b; a=b=3.5; &lt;br /&gt;&lt;br /&gt;23.regarding the scope of the varibles;identify the incorrect statement: &lt;br /&gt;&lt;br /&gt;a.automatic variables are automatically initialised to 0 &lt;br /&gt;&lt;br /&gt;b.static variables are are automatically initialised to 0 &lt;br /&gt;&lt;br /&gt;c.the address of a register variable is not accessiable &lt;br /&gt;&lt;br /&gt;d.static variables cannot be initialised with any expression &lt;br /&gt;&lt;br /&gt;24.cond 1?cond 2?cond 3?:exp 1:exp 2:exp 3:exp 4; &lt;br /&gt;&lt;br /&gt;is equivalent to which of the following? &lt;br /&gt;&lt;br /&gt;a.if cond 1 &lt;br /&gt;&lt;br /&gt;exp 1; &lt;br /&gt;&lt;br /&gt;else if cond 2 &lt;br /&gt;&lt;br /&gt;exp 2; &lt;br /&gt;&lt;br /&gt;else if cond 3 &lt;br /&gt;&lt;br /&gt;exp 3; &lt;br /&gt;&lt;br /&gt;else &lt;br /&gt;&lt;br /&gt;exp 4; &lt;br /&gt;&lt;br /&gt;b.if cond 1 &lt;br /&gt;&lt;br /&gt;if cond 2 &lt;br /&gt;&lt;br /&gt;if cond 3 &lt;br /&gt;&lt;br /&gt;exp 1; &lt;br /&gt;&lt;br /&gt;else &lt;br /&gt;&lt;br /&gt;exp 2; &lt;br /&gt;&lt;br /&gt;else &lt;br /&gt;&lt;br /&gt;exp 3; &lt;br /&gt;&lt;br /&gt;else &lt;br /&gt;&lt;br /&gt;exp 4; &lt;br /&gt;&lt;br /&gt;c.if cond 1 &amp;&amp; cond 2 &amp;&amp; cond 3 &lt;br /&gt;&lt;br /&gt;exp 1 |exp 2|exp 3|exp 4; &lt;br /&gt;&lt;br /&gt;d.if cond 3 &lt;br /&gt;&lt;br /&gt;exp 1; &lt;br /&gt;&lt;br /&gt;else if cond 2 &lt;br /&gt;&lt;br /&gt;exp 2; &lt;br /&gt;&lt;br /&gt;else if cond 3 &lt;br /&gt;&lt;br /&gt;exp 3; &lt;br /&gt;&lt;br /&gt;else &lt;br /&gt;&lt;br /&gt;exp 4; &lt;br /&gt;&lt;br /&gt;25.the operator for exponencation is &lt;br /&gt;&lt;br /&gt;a.** b.^ c.% d.not available &lt;br /&gt;&lt;br /&gt;26.which of the following is invalid &lt;br /&gt;&lt;br /&gt;a.a+=b b.a*=b c.a&gt;&gt;=b d.a**=b &lt;br /&gt;&lt;br /&gt;27.what is y value of the code if input x=10, y=5; &lt;br /&gt;&lt;br /&gt;if (x==10) &lt;br /&gt;&lt;br /&gt;else if(x==9) &lt;br /&gt;&lt;br /&gt;else y=8; &lt;br /&gt;&lt;br /&gt;a.9 b.8 c.6 d.7 &lt;br /&gt;&lt;br /&gt;28.what does the following code do? &lt;br /&gt;&lt;br /&gt;fn(int n,int p,int r) &lt;br /&gt;&lt;br /&gt;{ &lt;br /&gt;&lt;br /&gt;static int a=p; &lt;br /&gt;&lt;br /&gt;switch(n){ &lt;br /&gt;&lt;br /&gt;case 4:a+=a*r; &lt;br /&gt;&lt;br /&gt;case 3:a+=a*r; &lt;br /&gt;&lt;br /&gt;case 2:a+=a*r; &lt;br /&gt;&lt;br /&gt;case 1:a+=a*r; &lt;br /&gt;&lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years &lt;br /&gt;&lt;br /&gt;c.computes simple interest for four year d.computes compound interst for 1 year &lt;br /&gt;&lt;br /&gt;29.a=0; &lt;br /&gt;&lt;br /&gt;while(a&lt;5) &lt;br /&gt;&lt;br /&gt;printf("%d\n",a++); &lt;br /&gt;&lt;br /&gt;how many times does the loop occurs? &lt;br /&gt;&lt;br /&gt;a.infinite b.5 c.4 d.6 &lt;br /&gt;&lt;br /&gt;30.how many times does the loop iterated ? &lt;br /&gt;&lt;br /&gt;for (i=0;i=10;i+=2) &lt;br /&gt;&lt;br /&gt;printf("Hi\n"); &lt;br /&gt;&lt;br /&gt;a.10 b.2 c.5 d..... &lt;br /&gt;&lt;br /&gt;31.what is incorrect among teh following &lt;br /&gt;&lt;br /&gt;A recursive functiion &lt;br /&gt;&lt;br /&gt;a.calls itself b.is equivalent to a loop &lt;br /&gt;&lt;br /&gt;c.has a termination cond d.does not have a return value at all &lt;br /&gt;&lt;br /&gt;32.which of the following go out of the loopo if expn 2 becoming false &lt;br /&gt;&lt;br /&gt;a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} &lt;br /&gt;&lt;br /&gt;c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..} &lt;br /&gt;&lt;br /&gt;33.consider the following program &lt;br /&gt;&lt;br /&gt;main() &lt;br /&gt;&lt;br /&gt;{unsigned int i=10; &lt;br /&gt;&lt;br /&gt;while(i&gt;=0){ &lt;br /&gt;&lt;br /&gt;printf("%u",i) &lt;br /&gt;&lt;br /&gt;i--; &lt;br /&gt;&lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;how many times the loop wxecuted: a.10 b.9 c.11 d.infinite &lt;br /&gt;&lt;br /&gt;34.pick out the add one out a.malloc() b.calloc() c.free() d.realloc() &lt;br /&gt;&lt;br /&gt;35.consider the following program &lt;br /&gt;&lt;br /&gt;main() &lt;br /&gt;&lt;br /&gt;{ &lt;br /&gt;&lt;br /&gt;int a[5]={1,3,6,7,0}; &lt;br /&gt;&lt;br /&gt;int *b; &lt;br /&gt;&lt;br /&gt;b=&amp;a[2]; &lt;br /&gt;&lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;the value of b[-1] is a.1 b.3 c.-6 d.none &lt;br /&gt;&lt;br /&gt;36.# define prod(a,b)=a*b &lt;br /&gt;&lt;br /&gt;main() &lt;br /&gt;&lt;br /&gt;{ &lt;br /&gt;&lt;br /&gt;int x=2; &lt;br /&gt;&lt;br /&gt;int y=3; &lt;br /&gt;&lt;br /&gt;printf("%d",prod(x+2,y-10)); } &lt;br /&gt;&lt;br /&gt;the output of the program is a.8 b.6 c.7 d.none &lt;br /&gt;&lt;br /&gt;37.consider the following program sigment &lt;br /&gt;&lt;br /&gt;int n,sum=1; &lt;br /&gt;&lt;br /&gt;switch(n) { &lt;br /&gt;&lt;br /&gt;case 2:sum=sum+2; &lt;br /&gt;&lt;br /&gt;case 3:sum*=2; &lt;br /&gt;&lt;br /&gt;break; &lt;br /&gt;&lt;br /&gt;default:sum=0;} &lt;br /&gt;&lt;br /&gt;if n=2, what is the value of sum a.0 b.6 c.3 d.none &lt;br /&gt;&lt;br /&gt;38.identify the incorrect one &lt;br /&gt;&lt;br /&gt;1.if(c=1) &lt;br /&gt;&lt;br /&gt;2.if(c!=3) &lt;br /&gt;&lt;br /&gt;3.if(a &lt;br /&gt;&lt;br /&gt;4.if(c==1) &lt;br /&gt;&lt;br /&gt;a.1 only b.1&amp;3 c.3 only d.all &lt;br /&gt;&lt;br /&gt;39.teh format specified for hexa decimal is &lt;br /&gt;&lt;br /&gt;a.%d b.%o c.%x d.%u &lt;br /&gt;&lt;br /&gt;40.find the output of the following program &lt;br /&gt;&lt;br /&gt;main() &lt;br /&gt;&lt;br /&gt;{ &lt;br /&gt;&lt;br /&gt;int x=5, *p; &lt;br /&gt;&lt;br /&gt;p=&amp;x; &lt;br /&gt;&lt;br /&gt;printf("%d",++*p); &lt;br /&gt;&lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;a.5 b.6 c.0 d.none &lt;br /&gt;&lt;br /&gt;41.consider the following C code &lt;br /&gt;&lt;br /&gt;main() &lt;br /&gt;&lt;br /&gt;{ &lt;br /&gt;&lt;br /&gt;int i=3,x; &lt;br /&gt;&lt;br /&gt;while(i&gt;0) &lt;br /&gt;&lt;br /&gt;{ &lt;br /&gt;&lt;br /&gt;x=func(i); &lt;br /&gt;&lt;br /&gt;i--; &lt;br /&gt;&lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;int func(int n) &lt;br /&gt;&lt;br /&gt;{ &lt;br /&gt;&lt;br /&gt;static sum=0; &lt;br /&gt;&lt;br /&gt;sum=sum+n; &lt;br /&gt;&lt;br /&gt;return(sum); &lt;br /&gt;&lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;the final value of x is a.6 b.8 c.1 d.3 &lt;br /&gt;&lt;br /&gt;43.int *a[5] refers to &lt;br /&gt;&lt;br /&gt;a.array of pointers b.pointer to an array c.pointerto a pointer d...... &lt;br /&gt;&lt;br /&gt;46.which of the following statements is incorrect &lt;br /&gt;&lt;br /&gt;a.typedef struct new{ &lt;br /&gt;&lt;br /&gt;int n1; &lt;br /&gt;&lt;br /&gt;char n2; &lt;br /&gt;&lt;br /&gt;} DATA; &lt;br /&gt;&lt;br /&gt;b.typedef struct { &lt;br /&gt;&lt;br /&gt;int n3; &lt;br /&gt;&lt;br /&gt;char *n4; &lt;br /&gt;&lt;br /&gt;}ICE; &lt;br /&gt;&lt;br /&gt;c.typedef union { &lt;br /&gt;&lt;br /&gt;int n5; &lt;br /&gt;&lt;br /&gt;float n6; &lt;br /&gt;&lt;br /&gt;} UDT; &lt;br /&gt;&lt;br /&gt;d.#typedef union { &lt;br /&gt;&lt;br /&gt;int n7; &lt;br /&gt;&lt;br /&gt;float n8; &lt;br /&gt;&lt;br /&gt;} TUDAT; &lt;br /&gt;&lt;br /&gt;******************************************************************************** &lt;br /&gt;&lt;br /&gt;Only These Are The Questions Avilable For C Paper. &lt;br /&gt;&lt;br /&gt;******************************************************************************** &lt;br /&gt;&lt;br /&gt;ANSWERS: &lt;br /&gt;&lt;br /&gt;----------- &lt;br /&gt;&lt;br /&gt;1-5 D,C,D,C,C 6-10 D,C,C,A,D 11-15 D,C,A,A,A 16-20 B,C,D,C,A &lt;br /&gt;&lt;br /&gt;21-25 C,D,B,D,A 26-30 C,B,B,A,D 31-35 B,C,C,C,B 36-40 A,B,A,B,B &lt;br /&gt;&lt;br /&gt;41-45 A,D,D,D,A 46-50 B,C,C,A,A &lt;br /&gt;&lt;br /&gt;This the COBOL paper. &lt;br /&gt;&lt;br /&gt;01.consider the following piece of code &lt;br /&gt;&lt;br /&gt;01 GROSS-PAY &lt;br /&gt;&lt;br /&gt;05 BASIC-PAY PIC 9(5) &lt;br /&gt;&lt;br /&gt;05 ALLOWENCES PIC 9(3) &lt;br /&gt;&lt;br /&gt;if BASIC-PAY has a value 1000 and ALLOWENCES has a value of 250,what will be &lt;br /&gt;&lt;br /&gt;displayed by the statement &lt;br /&gt;&lt;br /&gt;DISPLAY GROSS-PAY &lt;br /&gt;&lt;br /&gt;a.1250 b.01000250 c.01250 d.1.250 &lt;br /&gt;&lt;br /&gt;02.consider two data items &lt;br /&gt;&lt;br /&gt;77 W-A PIC 9(3)V99 VALUE 23.75 &lt;br /&gt;&lt;br /&gt;77 W-B PIC ZZ9V99 VLAUE 123.45 &lt;br /&gt;&lt;br /&gt;after the statement &lt;br /&gt;&lt;br /&gt;MOVE W-A TO W-B &lt;br /&gt;&lt;br /&gt;what will be W-B's value? &lt;br /&gt;&lt;br /&gt;a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move &lt;br /&gt;&lt;br /&gt;03.what is the result of the following? &lt;br /&gt;&lt;br /&gt;DIVIDE A INTO B GIVING C. &lt;br /&gt;&lt;br /&gt;a.C=A/B b.the reminder of B/A is stored in C c.C=B/A d.the reminder of A/B is stored in C &lt;br /&gt;&lt;br /&gt;04.consider the statement (incomplete) &lt;br /&gt;&lt;br /&gt;IF(A NUMERIC) &lt;br /&gt;&lt;br /&gt;DISPLAY A &lt;br /&gt;&lt;br /&gt;the variable A can be &lt;br /&gt;&lt;br /&gt;a.NUMERIC b.ALPHABETIC c.ALPHANUMERIC d.NUMERIC OR ALPHANUMERIC &lt;br /&gt;&lt;br /&gt;05.which of the following can be used as a check protection symbol &lt;br /&gt;&lt;br /&gt;a.Z b.S c.* d.+ &lt;br /&gt;&lt;br /&gt;06.what if any ,is the syntex error in the following piece of code &lt;br /&gt;&lt;br /&gt;01 B PIC A(7) &lt;br /&gt;&lt;br /&gt;02 C PIC 9(4) &lt;br /&gt;&lt;br /&gt;........ &lt;br /&gt;&lt;br /&gt;IF(B NUMERIC) &lt;br /&gt;&lt;br /&gt;ADD 10 TO C &lt;br /&gt;&lt;br /&gt;a.the condition in the if statement is wrong b.nothing is wrong &lt;br /&gt;&lt;br /&gt;c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size. &lt;br /&gt;&lt;br /&gt;07.study the following code &lt;br /&gt;&lt;br /&gt;01 A1 &lt;br /&gt;&lt;br /&gt;05 B PIC 99 &lt;br /&gt;&lt;br /&gt;05 C PIC X(4) &lt;br /&gt;&lt;br /&gt;01 A2 &lt;br /&gt;&lt;br /&gt;05 B PIC 99V99 &lt;br /&gt;&lt;br /&gt;05 C PIC A(4) &lt;br /&gt;&lt;br /&gt;pick out the valid statement from the following &lt;br /&gt;&lt;br /&gt;a.A1 and A2 can not have sub-ordinates &lt;br /&gt;&lt;br /&gt;b.A1 and A2 can have the same sub-ordinates but must have same PIC clause &lt;br /&gt;&lt;br /&gt;c.there is nothing wrong &lt;br /&gt;&lt;br /&gt;d.A1 and A2 can have same sub-ordinates provided they are not at 01 level &lt;br /&gt;&lt;br /&gt;08.study the following &lt;br /&gt;&lt;br /&gt;01 A PIC 99V0 VALUE 5 &lt;br /&gt;&lt;br /&gt;01 B PIC 9V9 VALUE 6 &lt;br /&gt;&lt;br /&gt;01 C PIC 99V9 VALUE 2.5 &lt;br /&gt;&lt;br /&gt;01 D PIC 99 VALUE 3 &lt;br /&gt;&lt;br /&gt;COMPUTE A ROUNDED B C = A+B*C/D &lt;br /&gt;&lt;br /&gt;ON SIZE ERROR PERFORM PRINT-ERROR &lt;br /&gt;&lt;br /&gt;the comments of A.B.C after execution of the above statement are &lt;br /&gt;&lt;br /&gt;a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10 &lt;br /&gt;&lt;br /&gt;09.how many times PARA-A is performed : &lt;br /&gt;&lt;br /&gt;PERFORM PARA-A VARYING TIMES-COUNTER FROM 1 BY 1 &lt;br /&gt;&lt;br /&gt;UNTIL TIMES-COUNTER &gt;0 &lt;br /&gt;&lt;br /&gt;PARA-A &lt;br /&gt;&lt;br /&gt;MOVE P TO Q &lt;br /&gt;&lt;br /&gt;MOVE H TO TIMES COUNTER &lt;br /&gt;&lt;br /&gt;a.10 b.1 c.11 d.0 &lt;br /&gt;&lt;br /&gt;10.consider the following piece of code &lt;br /&gt;&lt;br /&gt;01 GROUP-ITEM &lt;br /&gt;&lt;br /&gt;05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 &lt;br /&gt;&lt;br /&gt;05 AMOUNT-2 PIC 9(4)V99 USAGE COMP &lt;br /&gt;&lt;br /&gt;MOVE ZERO TO GROUP-ITEM &lt;br /&gt;&lt;br /&gt;ADD 50 TO AMOUNT-1 &lt;br /&gt;&lt;br /&gt;what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable &lt;br /&gt;&lt;br /&gt;11.consider the following progrm statements &lt;br /&gt;&lt;br /&gt;MOVE 0 TO SW.NO.OF.REC &lt;br /&gt;&lt;br /&gt;PERFORM PRI-OUT UNTIL SW=1 &lt;br /&gt;&lt;br /&gt;DISPALY NO.OF.REC &lt;br /&gt;&lt;br /&gt;STOP RUN &lt;br /&gt;&lt;br /&gt;PRE-OUT &lt;br /&gt;&lt;br /&gt;READ IN-FILE AT END &lt;br /&gt;&lt;br /&gt;MOVE 1 TO SW &lt;br /&gt;&lt;br /&gt;WRITE OUO-REC FROM IN-REC &lt;br /&gt;&lt;br /&gt;ADD 1 TO NO.OF REC &lt;br /&gt;&lt;br /&gt;if the IN-FILE contains 1000 records what value will be displayedafter the &lt;br /&gt;&lt;br /&gt;PERFORM is over?assume that N0.OF.REC has PIC 9(4) &lt;br /&gt;&lt;br /&gt;a.1000 b.1001 c.1 d.none of the above since there is a syntex error &lt;br /&gt;&lt;br /&gt;12.study the data discriptions and answer the questions given below &lt;br /&gt;&lt;br /&gt;i)01 ORDER RECORD &lt;br /&gt;&lt;br /&gt;05 OUT-HEADER PIC X(50) &lt;br /&gt;&lt;br /&gt;05 ITEM-COUNT PIC 99 &lt;br /&gt;&lt;br /&gt;05 OUT-ITEM PIC X(20) OCCURS 1 TO 20 DEPENDING ON ITEM-COUNT &lt;br /&gt;&lt;br /&gt;ii)01 NAME-AND-ADDRESS &lt;br /&gt;&lt;br /&gt;05 N-AND-A-LINE OCCURES 5 &lt;br /&gt;&lt;br /&gt;05 LINE-LENGTH PIC P9 &lt;br /&gt;&lt;br /&gt;05 N-AND-A-CHAR PIC X OCCURS 1 TO 20 DEPENDING ON LINE-LENGTH &lt;br /&gt;&lt;br /&gt;iii)01 SALES-LIST &lt;br /&gt;&lt;br /&gt;05 SALESMAN-COUNT PIC 99 &lt;br /&gt;&lt;br /&gt;05 SALES PIC 9(6) OCCURS 1 TO 100 DEPENDING ON &lt;br /&gt;&lt;br /&gt;SALESMAN-COUNT &lt;br /&gt;&lt;br /&gt;iv)01 ORDER-RECORD &lt;br /&gt;&lt;br /&gt;05 NO-OF-BRANDS PIC 99 &lt;br /&gt;&lt;br /&gt;05 BRAND-PURCHASED OCCURS 1 TO 15 DEPENDING ON NO-OF-BRANDS &lt;br /&gt;&lt;br /&gt;which of the following is true? &lt;br /&gt;&lt;br /&gt;a.i) and iii) are valid b.i) and iv) are valid c.i) and iii) are not valid d.all are valid &lt;br /&gt;&lt;br /&gt;13.C1 C2 C3 are three conditions whose TRUTH values are as folloes. &lt;br /&gt;&lt;br /&gt;C1-TRUE C2-FALSE C3-TRUE &lt;br /&gt;&lt;br /&gt;A,B,C are defined as given below &lt;br /&gt;&lt;br /&gt;A:C1 AND(NOT C2) OR C3 &lt;br /&gt;&lt;br /&gt;B.(NOT C1) OR (NOT C2 AND NOT C3) &lt;br /&gt;&lt;br /&gt;C.(C1 OR C2)AND C3 &lt;br /&gt;&lt;br /&gt;D.C1 AND C2 OR C3 &lt;br /&gt;&lt;br /&gt;given the above information which of the following statements are valid? &lt;br /&gt;&lt;br /&gt;a.only A,B and C are TRUE b.only A,C and D are TRUE c.A,B,C and D are TRUE d.only C and D are TRUE &lt;br /&gt;&lt;br /&gt;14.consider the following &lt;br /&gt;&lt;br /&gt;FD FILE-1 &lt;br /&gt;&lt;br /&gt;01 REC-1 PIC X(80) &lt;br /&gt;&lt;br /&gt;...... &lt;br /&gt;&lt;br /&gt;WORKING-STORAGE SECTION &lt;br /&gt;&lt;br /&gt;01 W-REC PIC X(90) &lt;br /&gt;&lt;br /&gt;........ &lt;br /&gt;&lt;br /&gt;PROCEDURE DIVISION &lt;br /&gt;&lt;br /&gt;FIRST-PARA &lt;br /&gt;&lt;br /&gt;....... &lt;br /&gt;&lt;br /&gt;READ FILE-1 INTO W-REC AT END MOVE 1 TO EOF-FLAG &lt;br /&gt;&lt;br /&gt;which of the following is true with respect to the above? &lt;br /&gt;&lt;br /&gt;a.REC-1 will contain nothing and W-REC will contain the contains of the record read &lt;br /&gt;&lt;br /&gt;b.REC-1 and W-REC contain the same data &lt;br /&gt;&lt;br /&gt;c.syntex is invalid and error will occur d.REC-1 and W-REC must be of same size &lt;br /&gt;&lt;br /&gt;15.PERFORM ACCUMULATE-TOTALS &lt;br /&gt;&lt;br /&gt;VARYING A FROM 1 BY 2 UNTIL A &gt;2 &lt;br /&gt;&lt;br /&gt;AFTER B FROM1 BY 1 UNTIL B&gt;2 &lt;br /&gt;&lt;br /&gt;AFTER C FROM 2 BY -1 UNTIL C&lt;2 &lt;br /&gt;&lt;br /&gt;the paragraph ACCUMULATE-TOTALS would be exicuted &lt;br /&gt;&lt;br /&gt;a.18 times b.4 times c.8 times d.24 times &lt;br /&gt;&lt;br /&gt;16.there is a file whose ORGANISATION is INDEXED.you want to read the records &lt;br /&gt;&lt;br /&gt;from the file in RANDOM fashion as well as sequentially.then which of the &lt;br /&gt;&lt;br /&gt;access mode would you specify? &lt;br /&gt;&lt;br /&gt;a.SEQUENTIAL b.RANDOM c.DYNAMIC D.ACCESS MODE has nothing to do with it &lt;br /&gt;&lt;br /&gt;17.consider the following PROCEDURE DIVISION entry &lt;br /&gt;&lt;br /&gt;OPEN EXTEND IN-FILE &lt;br /&gt;&lt;br /&gt;identify the correct statement &lt;br /&gt;&lt;br /&gt;a.organization of IN-FILE is sequential and records can be added in the beginning &lt;br /&gt;&lt;br /&gt;b.organization of IN-FILE is sequential and records can be added in the end &lt;br /&gt;&lt;br /&gt;c.organization of IN-FILE is indexed and records can be added in the beginning &lt;br /&gt;&lt;br /&gt;d.organization of IN-FILE is indexed and records can be added in the end &lt;br /&gt;&lt;br /&gt;18.what is the size of W-REC in the following &lt;br /&gt;&lt;br /&gt;01 W-REC &lt;br /&gt;&lt;br /&gt;05 A PIC 9(4)V99 &lt;br /&gt;&lt;br /&gt;05 B READLINES A &lt;br /&gt;&lt;br /&gt;10 C PIC XX &lt;br /&gt;&lt;br /&gt;10 D PIC S9(4) &lt;br /&gt;&lt;br /&gt;05 E OCCURS 7 PIC ZZ.ZZ &lt;br /&gt;&lt;br /&gt;05 F OCCURS 5 &lt;br /&gt;&lt;br /&gt;10 G PIC ZZ.ZZZ99 &lt;br /&gt;&lt;br /&gt;10 H OCCURS 3 &lt;br /&gt;&lt;br /&gt;15 J PIC 9(3) &lt;br /&gt;&lt;br /&gt;15 K PIC V99 &lt;br /&gt;&lt;br /&gt;a.177 b.161 c.180 d.none of yhe above &lt;br /&gt;&lt;br /&gt;19.consider the following two IF statements: &lt;br /&gt;&lt;br /&gt;IF X AND NOT Y MOVE A TO B &lt;br /&gt;&lt;br /&gt;IF Z=1 OR 9 MOVE A TO B &lt;br /&gt;&lt;br /&gt;select one of the following data ivusion entries which gives identical results for both the above IF statements &lt;br /&gt;&lt;br /&gt;a.01 Z PIC 9 &lt;br /&gt;&lt;br /&gt;88 X VALUE 1.9 &lt;br /&gt;&lt;br /&gt;88 Y VALUE 0.2 THRU 8 &lt;br /&gt;&lt;br /&gt;b.01 Z PIC 9 &lt;br /&gt;&lt;br /&gt;88 X VALUE 0.2 THRU 8 &lt;br /&gt;&lt;br /&gt;Y VALUE 1.9 &lt;br /&gt;&lt;br /&gt;c.01 Z PIC 9 &lt;br /&gt;&lt;br /&gt;88 X VALUE 1.9 &lt;br /&gt;&lt;br /&gt;88 NOT-Y VALUE 0.2 THRU 1.9 &lt;br /&gt;&lt;br /&gt;d.none of yhe above &lt;br /&gt;&lt;br /&gt;20.consider the following two statements &lt;br /&gt;&lt;br /&gt;MOVE 10 TO N &lt;br /&gt;&lt;br /&gt;PERFORM PARA-X N TIMES &lt;br /&gt;&lt;br /&gt;STOP RUN &lt;br /&gt;&lt;br /&gt;PARA-X &lt;br /&gt;&lt;br /&gt;MOVE 5 TO N &lt;br /&gt;&lt;br /&gt;how many times PARA-X willbe exicuted? &lt;br /&gt;&lt;br /&gt;a.10 b.5 c.infinate d.execution error &lt;br /&gt;&lt;br /&gt;21.given the following: &lt;br /&gt;&lt;br /&gt;77 A PIC 9V9 VALUE 9.5 &lt;br /&gt;&lt;br /&gt;77 B PIC 9 VALUE 9. &lt;br /&gt;&lt;br /&gt;77 C PIC V9 VALUE 0.8 &lt;br /&gt;&lt;br /&gt;77 D PIC 9 &lt;br /&gt;&lt;br /&gt;77 E PIC 9 &lt;br /&gt;&lt;br /&gt;77 F PIC 9V999 &lt;br /&gt;&lt;br /&gt;what are the contenta of D E nad F after teh following statements are &lt;br /&gt;&lt;br /&gt;executed: &lt;br /&gt;&lt;br /&gt;COMPUTE F ROUNDED=A+C/B &lt;br /&gt;&lt;br /&gt;MULTIPLY A BY C GIVING E &lt;br /&gt;&lt;br /&gt;ADD B C A GIVING D ROUNDED &lt;br /&gt;&lt;br /&gt;a.F=9.589 E=8 D=1 b.F=9.589 E=8 D=9 &lt;br /&gt;&lt;br /&gt;c.F=9.589 E=7 D=9 d.F=9.589 E=7 D=1 &lt;br /&gt;&lt;br /&gt;22. Consider the follwoing IF condition: &lt;br /&gt;&lt;br /&gt;IF A LESS 1200 IF B GREATER 25 MOVE 47 TOC &lt;br /&gt;&lt;br /&gt;ELSE MOVE 57 TO C &lt;br /&gt;&lt;br /&gt;IF A GREATER 249 MOVE 67 TO C &lt;br /&gt;&lt;br /&gt;ELSE NEXT SENTENCE ELSE IF B LESS 67 &lt;br /&gt;&lt;br /&gt;MOVE 27 TO C &lt;br /&gt;&lt;br /&gt;What will be the value of C, when A is 137 and b is 25 &lt;br /&gt;&lt;br /&gt;(a) 27 (b) 57 (c) 67 (d) none &lt;br /&gt;&lt;br /&gt;23. Consider the following: &lt;br /&gt;&lt;br /&gt;77 W-NUM PIC 9 VALUE 0 &lt;br /&gt;&lt;br /&gt;------ &lt;br /&gt;&lt;br /&gt;MOVE 1 TO W-NUM &lt;br /&gt;&lt;br /&gt;PERFORM PARA-X UNTIL W-NUM &gt; 9. &lt;br /&gt;&lt;br /&gt;------ &lt;br /&gt;&lt;br /&gt;PARA-X &lt;br /&gt;&lt;br /&gt;ADD 1 TO W-NUM &lt;br /&gt;&lt;br /&gt;How many times PARA-X is executed ? &lt;br /&gt;&lt;br /&gt;(a) 10 (b) 9 (c) 11 (d) Infinite loop &lt;br /&gt;&lt;br /&gt;24. Consider the following code: &lt;br /&gt;&lt;br /&gt;77 A PIC 99V99 VALUE 55.35 &lt;br /&gt;&lt;br /&gt;77 B PIC 99V999 VALUE 32.754 &lt;br /&gt;&lt;br /&gt;ADD B TO A ON SIZE ERROR DISPLAY "ERROR!!!" &lt;br /&gt;&lt;br /&gt;What will be the result ? &lt;br /&gt;&lt;br /&gt;(a) A=88.10, B=32.754 (b) A=87.00 B=32.754 &lt;br /&gt;&lt;br /&gt;(c) A=87.10 B=32.754 (d) ERROR!!! will be DISPLAYed on the screen. &lt;br /&gt;&lt;br /&gt;25. Consider the following: &lt;br /&gt;&lt;br /&gt;77 A PIC 9(10) &lt;br /&gt;&lt;br /&gt;77 B PIC 9(10) &lt;br /&gt;&lt;br /&gt;77 C PIC 9(19) &lt;br /&gt;&lt;br /&gt;MULTIPLY AB BY B GIVING C &lt;br /&gt;&lt;br /&gt;Which of the following is true ? &lt;br /&gt;&lt;br /&gt;(a) The execution of the above may result in size error. &lt;br /&gt;&lt;br /&gt;(b) The execution of the above will result in size error. &lt;br /&gt;&lt;br /&gt;(c) The definition of C is invalid resulting in compilation error. &lt;br /&gt;&lt;br /&gt;(d) No error will be thee and the program would proceed correctly. &lt;br /&gt;&lt;br /&gt;26. A paragraph PARA-X is to be executed when none oof the data names &lt;br /&gt;&lt;br /&gt;A, B and C have value of 1. Which of the following will achieve this ? &lt;br /&gt;&lt;br /&gt;(a) IF A NOT = 1 OR B NOT = 1 OR C NOT = 1 PERFORM PARA-X &lt;br /&gt;&lt;br /&gt;(B) IF NOT A= 1 AND B= 1 AND C = 1 PERFORM PARA-X &lt;br /&gt;&lt;br /&gt;(C) IF A NOT =1 IF NOT B = 1 OR C= 1 PERFORM PARA-X &lt;br /&gt;&lt;br /&gt;(C) IF A NOT = 1 AND B NOT = 1 AND C NOT = 1 PERFORM PARA-X &lt;br /&gt;&lt;br /&gt;27. Study the five expressions and the class to which they belong: &lt;br /&gt;&lt;br /&gt;S.N. Expression Class &lt;br /&gt;&lt;br /&gt;1 "SPACES" Figurative constant &lt;br /&gt;&lt;br /&gt;2. "Depreciation Schedule Non-numeric literal &lt;br /&gt;&lt;br /&gt;3. "12%" Non-numeric literal &lt;br /&gt;&lt;br /&gt;4. INTEREST-DUE Non-numeric literal &lt;br /&gt;&lt;br /&gt;5. ZEROES Figurative constant &lt;br /&gt;&lt;br /&gt;Which of the following statement is true? &lt;br /&gt;&lt;br /&gt;(a) 1 and 3 are incorrect (b) 1 and 4 are incorrect (c) 3 and 4 are incorrect (d) All are correct &lt;br /&gt;&lt;br /&gt;28. Identify the invalid dataname from the following: &lt;br /&gt;&lt;br /&gt;(a) SAVINGS-ACCOUNT (b) ANNUAL-ALLOCATION-FOR-OVERHEAD (c) SAMOUNT250 (d) 12DEMAND &lt;br /&gt;&lt;br /&gt;29. Study the DATA DIVISION entries and the three PROCEDURE DIVISION entries &lt;br /&gt;&lt;br /&gt;given below: &lt;br /&gt;&lt;br /&gt;01 END-OF-FILE-SWITCH PIC XXX. &lt;br /&gt;&lt;br /&gt;88 NO-MORE-RECS VALUE "YES". &lt;br /&gt;&lt;br /&gt;88 MORE-RECS VALUE "NO". &lt;br /&gt;&lt;br /&gt;(i) READ SAMPLE-FILE AT END MOVE "YES" TO NO-MORE-RECS. &lt;br /&gt;&lt;br /&gt;(ii) IF NO-MORE-RECS = "YES" GO TO LAST-PARA. &lt;br /&gt;&lt;br /&gt;(iii) IF NO-MORE-RECS GO TO LAST-PARA. &lt;br /&gt;&lt;br /&gt;Which are wrong? (a) (i) and (ii) (b) (ii) and (iii) (c) (i) and (iii) (d) all &lt;br /&gt;&lt;br /&gt;30. The following entries appear in the WORKING-STORAGE SECTION: &lt;br /&gt;&lt;br /&gt;01 DATE-TODAY. &lt;br /&gt;&lt;br /&gt;05 YY PIC XX VALUE "90". &lt;br /&gt;&lt;br /&gt;05 MM PIC XX VALUE "12". &lt;br /&gt;&lt;br /&gt;05 DD PIC XX VALUE :31". &lt;br /&gt;&lt;br /&gt;01 DATE-EDIT PIC XX/XX/XX. &lt;br /&gt;&lt;br /&gt;MOVE DATE-TODAY TO DATE-EDIT. &lt;br /&gt;&lt;br /&gt;(a) 901231 (b) 90/12/31 (c) 31/12/90 (d) 311290 &lt;br /&gt;&lt;br /&gt;31. How many bytes will be allocated for the following record description &lt;br /&gt;&lt;br /&gt;entries? &lt;br /&gt;&lt;br /&gt;01 REC-A. &lt;br /&gt;&lt;br /&gt;05 A PIC S9(4). &lt;br /&gt;&lt;br /&gt;05 B PIC XXXBXXX. &lt;br /&gt;&lt;br /&gt;05 C PIC ____9.99. &lt;br /&gt;&lt;br /&gt;05 D PIC S9(5) COMP-3. &lt;br /&gt;&lt;br /&gt;05 E PIC 9(3) COMP. &lt;br /&gt;&lt;br /&gt;(a) 29 (b) 26 (c) 25 (d) 28 &lt;br /&gt;&lt;br /&gt;32. What is wrong with the following data declaration? &lt;br /&gt;&lt;br /&gt;01 W-DATE PIC X(6). &lt;br /&gt;&lt;br /&gt;05 DD PIC 99. &lt;br /&gt;&lt;br /&gt;05 MM PIC 99. &lt;br /&gt;&lt;br /&gt;05 YY PIC 99. &lt;br /&gt;&lt;br /&gt;(a) Nothing is wrong. &lt;br /&gt;&lt;br /&gt;(b) Under W-DATE all level 05 items are having a PIC 99 but level 01 has PIC X(6). &lt;br /&gt;&lt;br /&gt;(c) PIC can't be specified for a group item. (d) DD, MM, and YY are invalid datanames. &lt;br /&gt;&lt;br /&gt;33. What is the output generated by the following code? &lt;br /&gt;&lt;br /&gt;01 GRP-I. &lt;br /&gt;&lt;br /&gt;05 SUBFLD1 PIC XX VALUE "AB". &lt;br /&gt;&lt;br /&gt;05 FILTER PIC X(6) VALUE SPACES. &lt;br /&gt;&lt;br /&gt;01 GRP-2 REDEFINED GRP-1. &lt;br /&gt;&lt;br /&gt;05 SUB-FLD2 PIC XX. &lt;br /&gt;&lt;br /&gt;05 SUB-FLD3 PIC XX. &lt;br /&gt;&lt;br /&gt;05 FILTER PIC X(4). &lt;br /&gt;&lt;br /&gt;IF SUB-FLD1 NOT = SPACES &lt;br /&gt;&lt;br /&gt;DISPLAY "SUBFLD1" &lt;br /&gt;&lt;br /&gt;MOVE "ABBCCD" TO GRP-1 &lt;br /&gt;&lt;br /&gt;IF SUB-FLD3 = SPACES &lt;br /&gt;&lt;br /&gt;DISPLAY "SPACES" &lt;br /&gt;&lt;br /&gt;ELSE &lt;br /&gt;&lt;br /&gt;DISPLAY "SUBFLD3" &lt;br /&gt;&lt;br /&gt;DISPLAY "END" &lt;br /&gt;&lt;br /&gt;ELSE &lt;br /&gt;&lt;br /&gt;DISPLAY "SPACES" &lt;br /&gt;&lt;br /&gt;DISPLAY "END". &lt;br /&gt;&lt;br /&gt;(a) SUBFLD1 (b) SPACES &lt;br /&gt;&lt;br /&gt;SUBFLD3 END &lt;br /&gt;&lt;br /&gt;END &lt;br /&gt;&lt;br /&gt;(c) SUBFLD1 (d) SUBFLD1 &lt;br /&gt;&lt;br /&gt;END SPACES &lt;br /&gt;&lt;br /&gt;34. 88 level entry is used for &lt;br /&gt;&lt;br /&gt;(a) data items in WORKING-STORAGE SECTION (b) items with RENAMES clause &lt;br /&gt;&lt;br /&gt;(c) condition-names (d) None of the above &lt;br /&gt;&lt;br /&gt;35. ZEROES and SPACES are _______ constants &lt;br /&gt;&lt;br /&gt;(a) Figurative (b) Numeric (c) Non-numeric (d) Alphabete &lt;br /&gt;&lt;br /&gt;36. COMPUTE X = A * B - C * D and &lt;br /&gt;&lt;br /&gt;COMPUTE X = (A * B) - (C * D) &lt;br /&gt;&lt;br /&gt;(a) Are not the same (b) Are same (c) Syntactically wrong (d) Will yield a run time error &lt;br /&gt;&lt;br /&gt;37. OCCURS clause is used in the DATA DIVISION on data names at &lt;br /&gt;&lt;br /&gt;(a) 01 level (b) 77 level (c) 88 level (d) any level from 02 to 49 &lt;br /&gt;&lt;br /&gt;38. Consider the following COBOL entries: &lt;br /&gt;&lt;br /&gt;05 X PIC 99 VALUE 10. &lt;br /&gt;&lt;br /&gt;SUBTRACT 20 FROM X. &lt;br /&gt;&lt;br /&gt;The resultant value of X wil be &lt;br /&gt;&lt;br /&gt;(a) 10 (b) 00 (c) compile-time error (d) none of these &lt;br /&gt;&lt;br /&gt;39. Consider the following COBOL entries &lt;br /&gt;&lt;br /&gt;05 X PIC 99 VALUE 10. &lt;br /&gt;&lt;br /&gt;ADD 40 X TO X. &lt;br /&gt;&lt;br /&gt;COMPUTE X = 3 * X - 40. &lt;br /&gt;&lt;br /&gt;The result in X is (a) 10 (b) 40 (c) Compile or Run time error (d) none of these &lt;br /&gt;&lt;br /&gt;40. given the following piece of code: &lt;br /&gt;&lt;br /&gt;CALL SUB-PGM USING A, B, C. &lt;br /&gt;&lt;br /&gt;CALL SUB-PGM USING A, C, C. &lt;br /&gt;&lt;br /&gt;(a) Both CALL statements will always produce same result. &lt;br /&gt;&lt;br /&gt;(d) Both CALL statements may produce different result. &lt;br /&gt;&lt;br /&gt;(c) Compile-time error because SUB-PGM is a dataname. &lt;br /&gt;&lt;br /&gt;(d) Compile-time error because A, B, C are used twice. &lt;br /&gt;&lt;br /&gt;41. The hierarchy of the execution of logical operators is &lt;br /&gt;&lt;br /&gt;(a) NOT AND OR (b) AND OR NOT (c) OR AND NOT (d) OR NOT AND &lt;br /&gt;&lt;br /&gt;42. The order of precedence of arithmetic operators in an expression can be &lt;br /&gt;&lt;br /&gt;overridden with the use of &lt;br /&gt;&lt;br /&gt;(a) [] (b) () (c) {} (d) Any of the above &lt;br /&gt;&lt;br /&gt;Consider the following passage for answering questions 43 to 47. &lt;br /&gt;&lt;br /&gt;A program is written to accept an answer to the query "enough fo the Day?" &lt;br /&gt;&lt;br /&gt;If the respons is "N" then the program accepts quantity purchased and rate &lt;br /&gt;&lt;br /&gt;of the item and displays the amount to be collected. Then the above query &lt;br /&gt;&lt;br /&gt;is again displayed and the loop continues. At the end of the day, when &lt;br /&gt;&lt;br /&gt;the response to the above query is "Y", the day collections are displayed. &lt;br /&gt;&lt;br /&gt;The program checks that the quantity purchased is between 25 and 125 and the &lt;br /&gt;&lt;br /&gt;rate of the item is between 10.00 and 75.00. If any of these two conditions &lt;br /&gt;&lt;br /&gt;are violated, the program displays an appropriate message and asks for next &lt;br /&gt;&lt;br /&gt;input. The amounts are displayed with proper editing. The program is written &lt;br /&gt;&lt;br /&gt;assuming that there can be a maximum of 1000 transactions a day. &lt;br /&gt;&lt;br /&gt;43. How many variables would you declare for the above problem? &lt;br /&gt;&lt;br /&gt;(a) 3 (b) 4 (c) 5 (d) 7 &lt;br /&gt;&lt;br /&gt;44. What should be the PICTURE clause of the variable used to calculate &lt;br /&gt;&lt;br /&gt;end of the day collections? &lt;br /&gt;&lt;br /&gt;(a) 9(9)v99 (b) 9(8)v99 (c) 995)v99 (d) Information given is insufficient to arrive at the answer &lt;br /&gt;&lt;br /&gt;45. What should be the PICTURE clause of the variable used to calculate &lt;br /&gt;&lt;br /&gt;to be collected. &lt;br /&gt;&lt;br /&gt;(a) 9(9)v99 (b) 9(8)v99 (c) 9(5)v99 (d) Information given is insufficient to arrive at the answer &lt;br /&gt;&lt;br /&gt;46. Assuming that the above program is being executed in a Department &lt;br /&gt;&lt;br /&gt;Stores in MADRAS which of the following PICTURE clause will be &lt;br /&gt;&lt;br /&gt;suitable for DISPLAYing the end of the day collections? &lt;br /&gt;&lt;br /&gt;(a) Z(5)V99 (b) Z(5).99 (c) ZZ,ZZ,ZZ,ZZ9.99(d) Information given is insufficient to arrive at the answer &lt;br /&gt;&lt;br /&gt;47. How many _____ statements do you think will be there in the program? &lt;br /&gt;&lt;br /&gt;(a) 3 (b) 4 (c) 5 (d) Information given is insufficient to arrive at the answer &lt;br /&gt;&lt;br /&gt;48. Which of the following paragraphs is compulsory in every COBOL program? &lt;br /&gt;&lt;br /&gt;(a) SPECIAL-NAMES (b) PROGRAM-ID (c) FILE-CONTROL (d) OBJECT-COMPUTER &lt;br /&gt;&lt;br /&gt;49. Which of the following files can be OPENed in all the 4 modes? The four &lt;br /&gt;&lt;br /&gt;modes are INPUT, I-O, OUTPUT and EXTEND. &lt;br /&gt;&lt;br /&gt;(a) INDEXED (b) RELATIVE (c) SEQUENTIAL (d) All of the above &lt;br /&gt;&lt;br /&gt;50. Which of the following EDITind and PICTURE symbols is to be used if a &lt;br /&gt;&lt;br /&gt;minus(-) is to appear before the value if the value is -ve and a plus(+) &lt;br /&gt;&lt;br /&gt;is to appear before the value if the value is +ve? &lt;br /&gt;&lt;br /&gt;(a) + (b) - (c) + OR (d) It is not possible &lt;br /&gt;&lt;br /&gt;solutions &lt;br /&gt;&lt;br /&gt;b,b,c,c,c,a,d,a,b,a,c,c,b,b,b,c,b,d,a,a,c,b,d,a,d,d,b,c,d,b,a,c,a,c,a,b,d, &lt;br /&gt;&lt;br /&gt;a,c,b,a,b,b,b,c,c,a,b,c,a &lt;br /&gt;&lt;br /&gt;this is vocabulary section in tcs paper! &lt;br /&gt;&lt;br /&gt;with solutions &lt;br /&gt;&lt;br /&gt;----------- &lt;br /&gt;&lt;br /&gt;1 admonish : usurp 2 meager : scanty 3 alineate: estrange 4 merry :gay &lt;br /&gt;&lt;br /&gt;5 brim: boarder 6 obstinate:stubborn 7 adhesive:tenacious 8 tranquil :serene &lt;br /&gt;&lt;br /&gt;9 solicit: urge furtive : stealthy misery:distress volume:quantity &lt;br /&gt;&lt;br /&gt;hamper :obstruct verr :diverge belief:conviction incentive:merit inert:passive &lt;br /&gt;&lt;br /&gt;concur:acquise cargo:freight dispel:scatter caprice:whim heap:to pile &lt;br /&gt;&lt;br /&gt;covet:crave emancipate:liberate instigate:incite latitude:scope lethargy:stupor &lt;br /&gt;&lt;br /&gt;divulge:discretion hover:linger embrace:effigy baffle:frustate lament:wail &lt;br /&gt;&lt;br /&gt;stiffle:snithy subside:wane confiscate:appropriate discretion:prudence efface:deliberate latent:potential &lt;br /&gt;&lt;br /&gt;The technical comprises of 50 questions on C,Unix and windows. &lt;br /&gt;&lt;br /&gt;1.const char * &lt;br /&gt;&lt;br /&gt;char * const &lt;br /&gt;&lt;br /&gt;What is the differnce between the above tow?. &lt;br /&gt;&lt;br /&gt;2.In Unix inter process communication take place using?. &lt;br /&gt;&lt;br /&gt;3.What are the files in /etc directory?. &lt;br /&gt;&lt;br /&gt;4.About i-node numbers &lt;br /&gt;&lt;br /&gt;5.Max relaxable permisssion value with out giving write permission to others?. &lt;br /&gt;&lt;br /&gt;6.About ln(linking) &lt;br /&gt;&lt;br /&gt;7.A question on until &lt;br /&gt;&lt;br /&gt;until (who |grep mary) &lt;br /&gt;&lt;br /&gt;do &lt;br /&gt;&lt;br /&gt;sleep(60) &lt;br /&gt;&lt;br /&gt;done &lt;br /&gt;&lt;br /&gt;8.Linking across directories?. &lt;br /&gt;&lt;br /&gt;9.process id for kernell process &lt;br /&gt;&lt;br /&gt;10.very first process created by kernell &lt;br /&gt;&lt;br /&gt;11.function to repaint a window immediately?. &lt;br /&gt;&lt;br /&gt;12.Function entry for DLL in win3.1 &lt;br /&gt;&lt;br /&gt;13.win 3.1 is a &lt;br /&gt;&lt;br /&gt;14.win 3.1 supports which type of multi tasking?. &lt;br /&gt;&lt;br /&gt;15.Message displayed when a window is destroyed &lt;br /&gt;&lt;br /&gt;16.About fork()? &lt;br /&gt;&lt;br /&gt;17.About send message and post message &lt;br /&gt;&lt;br /&gt;18.Message to limit the size of window &lt;br /&gt;&lt;br /&gt;19.System call executable binary file intoa process &lt;br /&gt;&lt;br /&gt;20.About GDI object?. &lt;br /&gt;&lt;br /&gt;21.API used to hide window &lt;br /&gt;&lt;br /&gt;22.Initialize contents of a dialog?. &lt;br /&gt;&lt;br /&gt;APTITUDE TEST &lt;br /&gt;&lt;br /&gt;20 QUESTIONS;2 MARKS EACH &lt;br /&gt;&lt;br /&gt;TIME-20MINUTES &lt;br /&gt;&lt;br /&gt;1) ONE RECTANGULAR PLATE WITH LENGTH 8INCHES,BREADTH 11 INCHES AND 2 INCHES THICKNESS IS THERE.WHAT IS THE LENGTH OF THE CIRCULAR ROD WITH DIAMETER 8 INCHES AND EQUAL TO VOLUME OF RECTANGULAR PLATE? &lt;br /&gt;&lt;br /&gt;ANS: 3.5INCHES &lt;br /&gt;&lt;br /&gt;2) WHAT IS THE NUMBER OF ZEROS AT THE END OF THE PRODUCT OF THE NUMBERS FROM 1 TO 100 &lt;br /&gt;&lt;br /&gt;3) in some game 139 members have participated every time one fellow will get bye what is the number of matches to choose the champion to be held? ans: 138 &lt;br /&gt;&lt;br /&gt;4) one fast typist type some matter in 2hr and another slow typist type the same matter in 3hr. if both do combinely in how much time they will finish. ans: 1hr 12min &lt;br /&gt;&lt;br /&gt;5) in 8*8 chess board what is the total number of squares refer odel ans:204 &lt;br /&gt;&lt;br /&gt;6) falling height is proportional to square of the time. one object falls 64cm in 2sec than in 6sec from how much height the object will fall. &lt;br /&gt;&lt;br /&gt;7) gavaskar average in first 50 innings was 50 . after the 51st innings his average was 51 how many runs he made in the 51st innings &lt;br /&gt;&lt;br /&gt;8)2 oranges,3 bananas and 4 apples cost Rs.15 . 3 ornages 2 bananas 1 apple costs Rs 10. what is the cost of 3 oranges, 3 bananas and 3 apples ANs Rs 15. &lt;br /&gt;&lt;br /&gt;9)in 80 coins one coin is counterfiet what is minimum number of weighings to find out counterfiet coin &lt;br /&gt;&lt;br /&gt;10)in a company 30% are supervisors and 40% employees are male if 60% of supervisors are male. what is the probability that a randomly choosen employee is a male or female? &lt;br /&gt;&lt;br /&gt;11)statement: all green are blue are blue, all blue are white conclusion: &lt;br /&gt;&lt;br /&gt;I) some blue are green II) some white are green &lt;br /&gt;&lt;br /&gt;III)some green are not white IV) all white are blue &lt;br /&gt;&lt;br /&gt;a) he has given four choices like gre type &lt;br /&gt;&lt;br /&gt;12)all teachers are students. some students are girls. this type of questions are there. &lt;br /&gt;&lt;br /&gt;we cant able to reproduce them. &lt;br /&gt;&lt;br /&gt;TCS &lt;br /&gt;&lt;br /&gt;Source : jadavpur university &lt;br /&gt;&lt;br /&gt;Dated : 28/4/99 &lt;br /&gt;&lt;br /&gt;1. VOCABULARY.(SYNONYMS) 40 BITS. 20 MARKS. 20MIN. &lt;br /&gt;&lt;br /&gt;2. QUANTITATIVE APTITUDE 15 BITS 30 MARKS 15 MIN. &lt;br /&gt;&lt;br /&gt;3. CRITICAL REASIONING.(COMPREHENSION) 50 BITS 50 MARKS 25 MIN. &lt;br /&gt;&lt;br /&gt;4. PSYHOMETRIC TEST. 150 BITS 150 MARKS 30 MIN &lt;br /&gt;&lt;br /&gt;-------- ------ &lt;br /&gt;&lt;br /&gt;250 MARKS 90 MIN &lt;br /&gt;&lt;br /&gt;-------- &lt;br /&gt;&lt;br /&gt;------- &lt;br /&gt;&lt;br /&gt;THE PSYCHOMETRIC TEST IS SIMPLE AND THERE IS NO &lt;br /&gt;&lt;br /&gt;NEED OF OF PREPARATION. IT SIMPLY TEST YOUR PSYCHOLOGY. GIVE MOST &lt;br /&gt;&lt;br /&gt;POSITIVE ANSWERS TO THIS SECTION. I AM SENDING SOME QUESTIONS TO &lt;br /&gt;&lt;br /&gt;YOU. THE VOCAB. IS SAME. BUT THERE IS SOME CHANGES IN PASSAGES.BUT &lt;br /&gt;&lt;br /&gt;THE IDEA IS SAME. &lt;br /&gt;&lt;br /&gt;TAKE FOLLOWING PRECAUTIONS WHILE ANSWERING TEST. &lt;br /&gt;&lt;br /&gt;------------------------------------------------------------- &lt;br /&gt;&lt;br /&gt;1. DON'T WRITE FULL ANSWERS TO VOCAB. SECTION. DO ONLY 36 to 37 QWUE's.BECAUSE THEY DISQUALIFIED SOME CANDIDATES HERE. &lt;br /&gt;&lt;br /&gt;2. WE ARE SENDING ANSWERS TO THIS SECTION. SO YOU SIMPLY MUG UP ANSWERS. &lt;br /&gt;&lt;br /&gt;3. FOR CRITICAL REASONING SECTION WE ARE SENDING ANSWERS.BUT SOME OF THESE ANSWERS MAY CHANGE. SO YOU PLEASE CHECK IN EXAMINATION. THE ANSWERS IS SIMPLY (TRUE) OR (FALSE) OR (CAN'T SAY) TYPE. FOR THIS SECTION YOU HAVE READ AS FAST AS YOU CAN. IT SIMPLY TEST YOUR COMPREHENSION ABILITY. &lt;br /&gt;&lt;br /&gt;4. EVENTHOUGH WE ARE SENDING ANSWERS TO MATHEMATICAL ABILITY SECTION. YOU DO " ROUGH " WORK BACK OF YOUR PAGE. IT IS ALSO ONE OF IMPORTNANT CAUTION. &lt;br /&gt;&lt;br /&gt;5. IN PSYCHOLOGY SECTION THE QWE'S MAY REPEATE AT LEAST FOUR TIMES. BY SIMPLY CHANGING SENTENCE FORMATION. SO BECAREFUL GIVE SAME ANSWERS TO THOSE QWE'S. &lt;br /&gt;&lt;br /&gt;THERE WILL BE NO NEGATIVE MARKING. TIME 90 Min., APPEARED FOR EXAM =255 STUDENTS &lt;br /&gt;&lt;br /&gt;SELECTED FOR INTERVIEW =122, FINALLY SHORT LISTED = 55 STUDENTS. &lt;br /&gt;&lt;br /&gt;SECTION I VOCABULARY (SYNONYMS) TIME :15 Min. MARKS: 20. &lt;br /&gt;&lt;br /&gt;DIRECT ANSWERS : &lt;br /&gt;&lt;br /&gt;----------------------------------------------------------------- &lt;br /&gt;&lt;br /&gt;Admonish : usurp Meager :scanty Alienate : estrange &lt;br /&gt;&lt;br /&gt;Merry : gay Brim : Boarder obstinate : stubborn &lt;br /&gt;&lt;br /&gt;Pretention:pretentioius Tranquil:serene solicit : urge &lt;br /&gt;&lt;br /&gt;subside : wane furtive :stealthy misery : disstress &lt;br /&gt;&lt;br /&gt;volume :quantity veer : diverge stiffle :sniths &lt;br /&gt;&lt;br /&gt;adhesive : --- Hamper : obstruct belief : conviction &lt;br /&gt;&lt;br /&gt;lament : wail to merit :to deserve incentive : ---- &lt;br /&gt;&lt;br /&gt;inert: passive Baffle : Frustrate Confiscate : appropriat &lt;br /&gt;&lt;br /&gt;Covet : crave Caprice : whim Concur :acquiesce &lt;br /&gt;&lt;br /&gt;Cargo :freight Dispel : Scatter Divulge : ----- &lt;br /&gt;&lt;br /&gt;Discretion: prudence Emancipate : liberate Efface : obliterate &lt;br /&gt;&lt;br /&gt;Hover : linger Heap : to pile Instigate : incite &lt;br /&gt;&lt;br /&gt;latitude : scope latent : potential lethergy : stupor &lt;br /&gt;&lt;br /&gt;momentary : transient &lt;br /&gt;&lt;br /&gt;----- means , for these words we are not able to reproduce answers. &lt;br /&gt;&lt;br /&gt;PART II QUANTITATIVE APTITUDE ,TIME 20 Min. MARKS :30. &lt;br /&gt;&lt;br /&gt;----------------------------------------------------------------- &lt;br /&gt;&lt;br /&gt;1. Two pencils costs 8 cents, then 5 pencils cost how much(Ans:20 cents). &lt;br /&gt;&lt;br /&gt;2. A work is done by the people in 24 min. one of them can do this work a lonely in 40 min. how much time required to do the same work for the second person. (ans:60 min.) &lt;br /&gt;&lt;br /&gt;3. A car is filled with four and half gallons of oil for full round trip. fuel is taken 1/4 gallons mor3 in going than coming. what is the fiel consumed in coming up? (2 gallons) &lt;br /&gt;&lt;br /&gt;4. low temperature at the night in a city is 1/3 more than ½ hinge as higher temperature in a day. sum of the low temp and highest temp is 100C. then what is the low temperature (40 C) &lt;br /&gt;&lt;br /&gt;5. A person who decided to go weekend trip should not exceed 8 hours driving in a day Average speed of forward journy is 40 mph. Due to traffic in sundays, the return journey average speed is 30 mph. how far he can select a picnic spot (120 miles). &lt;br /&gt;&lt;br /&gt;6. A sales person multiplied a number and get the answer is 3, instead of that number divided by 3. what is th answer he actually has to get ? (1/3). &lt;br /&gt;&lt;br /&gt;7. A ship started from port and moving with I mph and another ship started from L and moving with H mph. At which place these two ships meet ? ( Ans is between I and J and close to J) &lt;br /&gt;&lt;br /&gt;!_____!_____!_____!_____!_____!_____! &lt;br /&gt;&lt;br /&gt;port G H I J K L &lt;br /&gt;&lt;br /&gt;8. A building with hight D ft shadow upto G A neighbour building with what height shadow C ft is (B ft.) &lt;br /&gt;&lt;br /&gt;!_____!_____!_____!_____!_____!_____!_____! &lt;br /&gt;&lt;br /&gt;A B C D E F G H &lt;br /&gt;&lt;br /&gt;9. A person was fined for exceeding the speed limit by 10 mph.Another person was also fined for exceeding the same speed limit by twice the same. If the second person was travelling at a speed of 35 mph. find the speed limit (15 mph) &lt;br /&gt;&lt;br /&gt;10. A bus started from bustand at 8.00a m and after 30 min staying at destination, it returned back to the bustand. the destination is 27miles from the bustand. the speed of the bus 50 percent fast &lt;br /&gt;&lt;br /&gt;speed. at what time it retur4ns to the bustand (11.00) &lt;br /&gt;&lt;br /&gt;11.in a mixture, R is 2 parts, S is 1 part. in order to make S to 25% of the mixture, howmuch R is to be added ( one part). &lt;br /&gt;&lt;br /&gt;12. wind flows 160 miles in 330 min, for 80 miles how much time required. &lt;br /&gt;&lt;br /&gt;13. with 4/5 full tank vehicle travels 12 miles, with 1/3 full tank how much distance travels ( 5 miles). &lt;br /&gt;&lt;br /&gt;14. two trees are there. one grows at 3/5 of the other. in 4 years, total growth of trees is 8 ft. what growth will smaller tree will have in 2 years. (&lt;2ft) &lt;br /&gt;&lt;br /&gt;15. A storm will move with a velocity of towords the center in hours. At the same rate how much far will it move in hrs. (but Ans is 8/3 or 2 2/3). &lt;br /&gt;&lt;br /&gt;PART III: TIME 25 Min, MARKS :50. &lt;br /&gt;&lt;br /&gt;----------------------------------------------- &lt;br /&gt;&lt;br /&gt;CRITICAL REASONING : THERE WILL BE 13 PASSAGES WITH 50 QUESTIONS TIME 30 MIN. HERE I AM SENDING ONLY SOME OF THE PASSAGES (these will give only rough idea) (ANSWERS WILL BE AS YES/NO/CAN'T SAY we are giving our answers, please check.) &lt;br /&gt;&lt;br /&gt;1. My father has no brothers. he has three sisters who has two childs each. &lt;br /&gt;&lt;br /&gt;1&gt; my grandfather has two sons (f) 2&gt; three of my aunts have two sons(can't say) &lt;br /&gt;&lt;br /&gt;3&gt; my father is only child to his father(f) 4&gt; i have six cousins from my mother side(f) &lt;br /&gt;&lt;br /&gt;5&gt; i have one uncle(f) &lt;br /&gt;&lt;br /&gt;2. Ether injected into gallablader to dissolve galstones. this type oneday treatment is enough for gallstones not for calcium stones. this method is alternative to surgery for millions of people who are suffering from this disease. &lt;br /&gt;&lt;br /&gt;1&gt; calcium stones can be cured in oneday (f) &lt;br /&gt;&lt;br /&gt;2&gt; hundreds of people contains calcium stones(can't say) &lt;br /&gt;&lt;br /&gt;3&gt; surgery is the only treatment to calcium stones(t) &lt;br /&gt;&lt;br /&gt;4&gt; Eather will be injected into the gallbleder to cure the cholestrol based gall stones(t). &lt;br /&gt;&lt;br /&gt;3. Hacking is illigal entry into other computer. this is done mostly because of lack of knowledge of computer networking with networks one machine can access to another machine. hacking go about without knowing that each network is accredited to use network facility. &lt;br /&gt;&lt;br /&gt;1&gt; Hacking people never break the code of the company which they work for (can't say). &lt;br /&gt;&lt;br /&gt;2&gt; Hacking is the only vulnerability of the computers for the usage of the data.(f) &lt;br /&gt;&lt;br /&gt;3&gt; Hacking is done mostly due to the lack of computer knowledge (f). &lt;br /&gt;&lt;br /&gt;(there will be some more questions in this one ) &lt;br /&gt;&lt;br /&gt;4. alphine tunnels are closed tunnels. in the past 30 yrs not even a single accident has been recorded for there is one accident in the rail road system. even in case of a fire accident it is possible to shift the passengers into adjacent wagons and even the living fire can be detected and &lt;br /&gt;&lt;br /&gt;extinguished with in the duration of 30 min. &lt;br /&gt;&lt;br /&gt;1&gt; no accident can occur in the closed tunnels (True) &lt;br /&gt;&lt;br /&gt;2&gt; fire is allowed to live for 30 min. (False) &lt;br /&gt;&lt;br /&gt;3&gt; All the care that travel in the tunnels will be carried by rail shutters.(t) &lt;br /&gt;&lt;br /&gt;4&gt; &lt;br /&gt;&lt;br /&gt;5. In the past helicopters are forced to ground or crash because of the formation of the ice on the rotors and engines. a new electronic device has been developed which can detect the watercontent in the atmosphere and warns the pilot if the temp.is below freezing temp. about the formation of the &lt;br /&gt;&lt;br /&gt;ice on the rotors and wings. &lt;br /&gt;&lt;br /&gt;1&gt; the electronic device can avoid formation of the ice on the wings (False). &lt;br /&gt;&lt;br /&gt;2&gt; There will be the malfunction of rotor &amp; engine because of formation of ice (t) &lt;br /&gt;&lt;br /&gt;3&gt; The helicopters are to be crashed or down (t) &lt;br /&gt;&lt;br /&gt;4&gt; There is only one device that warn about the formation of ice(t). &lt;br /&gt;&lt;br /&gt;6.In the survey conducted in mumbai out of 63 newly married house wives not a single house &lt;br /&gt;&lt;br /&gt;wife felt that the husbands should take equal part in the household work as they felt they loose their power over their husbands. inspite of their careers they opt to do the kitchen work themselves after coming back to home. The wives get half as much leisure time as the husbands get at the week ends. &lt;br /&gt;&lt;br /&gt;1&gt; housewives want the husbands to take part equally in the household(f) &lt;br /&gt;&lt;br /&gt;2&gt; wives have half as much leisure time as the husbands have(f) &lt;br /&gt;&lt;br /&gt;3&gt; 39% of the men will work equally in the house in cleaning and washing &lt;br /&gt;&lt;br /&gt;4&gt; &lt;br /&gt;&lt;br /&gt;7. copernicus is the intelligent. In the days of copernicus the transport and technology &lt;br /&gt;&lt;br /&gt;development was less &amp; it took place weeks to comunicate a message at that time.wherein we can send it through satellite with in no time ----------. even with this fast developments it has become difficult to understand each other. &lt;br /&gt;&lt;br /&gt;1&gt; people were not intelligent during Copernicus days (f). &lt;br /&gt;&lt;br /&gt;2&gt; Transport facilities are very much improved in noe a days (can't say) &lt;br /&gt;&lt;br /&gt;3&gt; Even with the fast developments of the techonology we can't live happily.(can't say) &lt;br /&gt;&lt;br /&gt;4&gt; We can understand the people very much with the development of communication(f). &lt;br /&gt;&lt;br /&gt;Q8) senior managers warned the workers that because of the intfoductors of japanese industry in the car market. There is the threat to the workers. They also said that there will be the eduction in the purchase of the sales of car in public.the interest rates of the car will be increased with &lt;br /&gt;&lt;br /&gt;the loss in demand. &lt;br /&gt;&lt;br /&gt;1&gt; japanese workers are taking over the jobs of indian industry.(false) &lt;br /&gt;&lt;br /&gt;2&gt; managers said car interests will go down after seeing the raise in interest rates.(true) &lt;br /&gt;&lt;br /&gt;3&gt; japanese investments are ceasing to end in the car industry.(false) &lt;br /&gt;&lt;br /&gt;4&gt; people are very much interested to buy the cars.(false) &lt;br /&gt;&lt;br /&gt;Q9) In the totalitariturican days,the words have very much devalued.In the present day,they are becoming domestic that is the words will be much more devalued. In that days, the words will be very much effected in political area.but at present,the words came very cheap .we can say they come free at cost. &lt;br /&gt;&lt;br /&gt;1&gt; totalitarian society words are devalued.(false) &lt;br /&gt;&lt;br /&gt;2&gt; totalitarian will have to come much about words(t) &lt;br /&gt;&lt;br /&gt;3&gt; The art totalitatian society the words are used for the political speeches. &lt;br /&gt;&lt;br /&gt;4&gt; &lt;br /&gt;&lt;br /&gt;Q10) There should be copyright for all arts. The reele has came that all the arts has come under one copy right society,they were use the money that come from the arts for the developments . There may be a lot of money will come from the Tagore works. We have to ask the benifiters from Tagore work to help for the development of his works. &lt;br /&gt;&lt;br /&gt;1&gt; Tagore works are came under this copy right rule.(f) &lt;br /&gt;&lt;br /&gt;2&gt; People are free to go to the because of the copy right rule.(can't say) &lt;br /&gt;&lt;br /&gt;3&gt; People gives to theater and collect the money for development.(can't say) &lt;br /&gt;&lt;br /&gt;4&gt; We have ask the Tagore resedents to help for the developments of art.(can't say) &lt;br /&gt;&lt;br /&gt;NOTE : DO 1,2,3,4,5 PASSAGES WHICH ARE EASY. LAST BUT ONE ALSO. DO THAT PASSAGES CAREFULLY. TIME WILL BE INSUFFICIENT. PASSAGES ARE NOT AS EXACTLY AS ABOVE. THERE IS HIGHLEVEL ENGLISH IN ALL THE PASSAGES, WE ARE GIVING IN OUR OWN WORDS , U CANNOT EXPECT THE SAME TYPE OF ENGLISH THERE. WHILE &lt;br /&gt;&lt;br /&gt;ANSWERING U SHOULD BE VERY FAST, DO NOT WASTE TIME, IT IS INSUFFICIENT, TRY TO ANSWER AS MANY AS POSSIBLE. &lt;br /&gt;&lt;br /&gt;SECTION 4. PSYCHOMETRIC TEST. &lt;br /&gt;&lt;br /&gt;---------------------------------------- &lt;br /&gt;&lt;br /&gt;DO NOT BOTHERE ABOUT MUCH ABOUT THIS TEST. BE OPTIMISTIC WHILE ANSWERE. THERE WILL BE 150 QUESTIONS IN 30 MIN. THE QUESTIONS IN THIS SECTION MAY REPEATED WITH SLIGHT VARIATIONS ANSWER SHOULD BE SAME IN BOTH THE CASES. (ans will be as yes/no/can't say) &lt;br /&gt;&lt;br /&gt;for example &lt;br /&gt;&lt;br /&gt;1&gt; you will be interested in social activities. &lt;br /&gt;&lt;br /&gt;2&gt; while going upstairs you will move two steps at a time. &lt;br /&gt;&lt;br /&gt;3&gt; you will be making friendship with same sex or with opposite sex also. &lt;br /&gt;&lt;br /&gt;4&gt; your friends will consider u as a leader in your group &lt;br /&gt;&lt;br /&gt;5&gt; people think that your'e serious minded. &lt;br /&gt;&lt;br /&gt;6&gt; some times you feel dull without any reason. &lt;br /&gt;&lt;br /&gt;7&gt; your'e host or hostes for several parties. &lt;br /&gt;&lt;br /&gt;8&gt; relatives come to your house you will entertain them. &lt;br /&gt;&lt;br /&gt;9&gt; you will do work for longtime without tireness. &lt;br /&gt;&lt;br /&gt;10&gt; in your company you want lead the organasition. &lt;br /&gt;&lt;br /&gt;etc.. the qwestions may repeate several times so becareful and give same &lt;br /&gt;&lt;br /&gt;ans's. &lt;br /&gt;&lt;br /&gt;In the paper I am sending,there r about 40 vocabulary questions.But this year's paper has only 20 of them.Time 5 min.Marks 10.Do only 15 or 16 bits correctly. &lt;br /&gt;&lt;br /&gt;Quantitative aptitude:I am sending 15 questions.In the latest paper we got, there r only 10 of them r present.Time 10 min.Marks 20.Do all the problems correctly. &lt;br /&gt;&lt;br /&gt;Reasoning:All answers r given.Remember them.In the exam, u willnot be having time to read the passages.So remember the answers. I dont remember two he passages (R and Q).U can read these passages in the exam and answer them.Remember: don't answer all questions.Write 7 or 8 incorrect answers.Time 45 min.Total 70 questions and Marks 70. &lt;br /&gt;&lt;br /&gt;Your ultimate aim is to get 75 to 85 marks.Because if u get high marks, they may assune that u know the paper beforehand and u may be disqualified. So don't get morethan 90 marks. &lt;br /&gt;&lt;br /&gt;WISH U ALL THE BEST. &lt;br /&gt;&lt;br /&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ &lt;br /&gt;&lt;br /&gt;Vocabulary &lt;br /&gt;&lt;br /&gt;---------- &lt;br /&gt;&lt;br /&gt;Admonish-usurp,meager-scant,alienate-estrange,merry-gay,brim-boarder,obstinate-stubbourn &lt;br /&gt;&lt;br /&gt;solicit-urge,subside-wane,furtive-stealthy,misery-distress,volume-quantity, &lt;br /&gt;&lt;br /&gt;veer-diverge,stiffle-snithy,adhesive-sticky,hamper-obstruct,belief-conviction, &lt;br /&gt;&lt;br /&gt;lament-wail,incentive-spur,innert-passive,baffle-frustrate,confiscate-appropriate, &lt;br /&gt;&lt;br /&gt;covert-crave,caprice-whim,concur-acquiesce,cargo-frieght,dispel-scatter,divulge-reveal, &lt;br /&gt;&lt;br /&gt;tomerit-todeserve,discreation-prudence,emancipate-liberate,efface-obliterate, &lt;br /&gt;&lt;br /&gt;hover-linger,heap-to pile,instigate-incite,latitude-scope,latent-potential,lethargy-stupor &lt;br /&gt;&lt;br /&gt;momentary-transient,pretentious-ostentatious,embrace-effigy &lt;br /&gt;&lt;br /&gt;Apptitude &lt;br /&gt;&lt;br /&gt;--------- &lt;br /&gt;&lt;br /&gt;1)2 pencils costs 8 cents,then 5 pencils cost how much a)20c &lt;br /&gt;&lt;br /&gt;2)a work is done by the people in 24 min.one of them can do this work a lonely in 40 min.how much time required to do the same work for the second person a)60min &lt;br /&gt;&lt;br /&gt;3)a car is filled with four and half gallons of oil for full round trip.fuel is taken 1/4 gallons more in going than coming.what is the fuel consumed in coming up. a)2 gallons &lt;br /&gt;&lt;br /&gt;4)low temperature at the night in a city is 1/3 more than 1/2 hinge as higher temperature in a day.sum of the low temp and high temp is 100 c. then what is the low temp. a)40 centigrade &lt;br /&gt;&lt;br /&gt;5)a person who decided to go weekend trip should not exceed 8 hours driving in a day average spped of forward journey is 40 mph.due to traffic insundays the return journey average speed is 30 mph.how far he can select a picnic spot. a)120 miles &lt;br /&gt;&lt;br /&gt;6)a sales person multiplied a number and get the answer is 3 instead of that number divided by 3.what is the answer he actually has to get. a)1/3 &lt;br /&gt;&lt;br /&gt;7)a ship started from a port and moving with I mph and another ship started from L and moving with H mph.at which place these two ships meet. a)between I and J and close to J &lt;br /&gt;&lt;br /&gt;8)a building with height D ft shadow upto G.A neighbour building with what height shadow C ft is &lt;br /&gt;&lt;br /&gt;a)B ft &lt;br /&gt;&lt;br /&gt;9)a person was fined for exceeding the speed limit by 10mph.another person was also fined for exceeding the same speed limit by twice the same if the second person was travellling at a speed of 35 mph.find the speed limit a)15mph &lt;br /&gt;&lt;br /&gt;10)a bus started from bustand at 8.00am and after 30min staying at destination it returned back to the bustand.the destination is 27 miles from the bustand the speed of the bus 50percent fast speed at what time it returns to the bustand. a)11.00am &lt;br /&gt;&lt;br /&gt;11)in a mixture,R is 2 parts,s is 1 part in order to make s to 25% of the mixture,howmuch r is to be added a)one part &lt;br /&gt;&lt;br /&gt;12)wind flows 160 miles in 330min.for 80 miles how much time required a)--- &lt;br /&gt;&lt;br /&gt;13)with 4/5 full tand vehicle travels 12 miles, with 1/3 full tand how much distance travels &lt;br /&gt;&lt;br /&gt;a)5 miles &lt;br /&gt;&lt;br /&gt;14)2 trees are there.one grows at 3/5 of the other.In 4 years total growth of the trees is 8 ft.what growth will smaller tree will have in 2 years. a)2 ft &lt;br /&gt;&lt;br /&gt;15)a storm will move with a velocity of --- towards the center in --- at the same rate how much far will it move in hrs a)8/3 or 2 2/3 &lt;br /&gt;&lt;br /&gt;15 not clear &lt;br /&gt;&lt;br /&gt;Reasoning &lt;br /&gt;&lt;br /&gt;---------- &lt;br /&gt;&lt;br /&gt;A. my father had no brothers but his 3 sisters are all married and each has 2 children.my grandfather has 2 sons. &lt;br /&gt;&lt;br /&gt;1.mu father was an only child F &lt;br /&gt;&lt;br /&gt;2.3 of my aunts have sons C &lt;br /&gt;&lt;br /&gt;3.i have six cousins on my mother's side C &lt;br /&gt;&lt;br /&gt;4.i have only one uncle F &lt;br /&gt;&lt;br /&gt;B. Senior managers in a leading company said that new japanese investment in india was transforming the car industry and warned that jobs were under threat from japanese competition. they stated that increasing competition would be coupled with an in evitable downturn i the car market and the recent rise in interst rates whaich had already hit demand. &lt;br /&gt;&lt;br /&gt;5.some senior managers said that more people will want to buy new cars in the future. F &lt;br /&gt;&lt;br /&gt;6.managers told workers that japanese workers are taking jobs away from indian workers in the car industry. F &lt;br /&gt;&lt;br /&gt;7.the managers issued their warning after a rise in interest rates. T &lt;br /&gt;&lt;br /&gt;8.the increased rate of the interest will mean that japanese firms will cease to operate in this country. C &lt;br /&gt;&lt;br /&gt;C.Researchers in mumbai have found that certain types of gallstones can be dissolved by injecting them with a gasoline additive in the form of ether the ether is injected through a tube directly into a tube directly into the gallbladder.the one day treatment works only on cholesterol-based &lt;br /&gt;&lt;br /&gt;stones.not those composed largely o calcium.however as the clolesterol stones are by far the most common typefor millions of gallstones sufferers the treatment should offer a welcome alternative tosurgery the commonest option in nost hospitals. &lt;br /&gt;&lt;br /&gt;9.injecting ether into the gallbladder dissolves most gallstones T &lt;br /&gt;&lt;br /&gt;10.surgery is the only treatment for calcium stones T &lt;br /&gt;&lt;br /&gt;11.hundreds of peoplecontains calcium stones C &lt;br /&gt;&lt;br /&gt;12.calcium stones will be cured in one day F &lt;br /&gt;&lt;br /&gt;D.organising the home can be perceived as conferring power so large numbers of women are unwilling to let go of chores,even when they have careers.a survey found that,out of 65 new marriages not one single wife expected her husband to share work equally.according to the family policy studies center 81% working wives return home to do all th cooking.The average male has nearly half as much more tfree time at weekends than his wife and the typical new father spends just 37 seconds a day &lt;br /&gt;&lt;br /&gt;talking to his baby. &lt;br /&gt;&lt;br /&gt;13.most working wives do not expect their husbands to share chores equally. T &lt;br /&gt;&lt;br /&gt;14.the average wife has half as much free time at weekends as her husband. F &lt;br /&gt;&lt;br /&gt;15.some women collude in the unequal distribution of house hold work because they want to retain control C &lt;br /&gt;&lt;br /&gt;16. 39% of all men with working wives do the cooking and all the cleaning F &lt;br /&gt;&lt;br /&gt;E.confucius said that to know the future we have to understand the pasthis time transport ,communications and scientific knowledge were less developed than they are today.news took weeks to travel where as today satellite links connect the continents virtually instantaneously.but &lt;br /&gt;&lt;br /&gt;our technological advances in the field of communications seem not to have &lt;br /&gt;&lt;br /&gt;improved our capacity to understand one another &lt;br /&gt;&lt;br /&gt;17.in confucius daay people were more intelligent C &lt;br /&gt;&lt;br /&gt;18.we understand each other better now than in confucius time because we can travel more quickly. F &lt;br /&gt;&lt;br /&gt;19.we have made great improvements in transport since confucius day T &lt;br /&gt;&lt;br /&gt;20.none of our scientific discoveries has really improved our lives C &lt;br /&gt;&lt;br /&gt;F.words in totalitarian systems have an unhealthy importance and in such states now attempting to return to a more democratic normality there has been a natural inevitable and healthy devaluation of words whereas previouslu a single word used in a speech or even a play or poem could be a serious political event now the words come cheaper almost free. politics is politics again and poetry only poetry &lt;br /&gt;&lt;br /&gt;21.totalitarian state devalue words T &lt;br /&gt;&lt;br /&gt;22.only non-totalitarian regimes produce poetry of political importance T &lt;br /&gt;&lt;br /&gt;23.writers under totalitarian regimes have to choose their words care fully T &lt;br /&gt;&lt;br /&gt;24. the democratic political system is healthier than others C &lt;br /&gt;&lt;br /&gt;G.statistics show that millions of vehicals have beencarried by shuttle over the past 30 years through alpine tunnels withouty one ever catching tire.in the alpine tunnels.drivers and passengers sit in theirvhehicals on the shuttle trains.only one vehical has evercaught fire on the bussy french motorail equivalent system.this sort of accidents is not possible in a closed shuttle. assertinos that a vehical fire will lead to catastophe have no basis. since the resoures exit do detect,control and extingush a fire and to remove any persons present safely to an adjoning wagon, leaving any surviving fire facing rapid extinction within a wagan built to contain fire for 30 minutes. catastrophe seems very unlikely. &lt;br /&gt;&lt;br /&gt;25. if a car cauget fire in a rail shuttle, probably none would be killed. (T) &lt;br /&gt;&lt;br /&gt;26.at least one vehical has cauht fire in an alpine tunnel.(f) &lt;br /&gt;&lt;br /&gt;27.if a fire started in a wagon, it would be allowed to burn itself out in 30 minutes.(f) &lt;br /&gt;&lt;br /&gt;28.if would theoreticaly be possible for a car to cath fire in aclosed shuttle system.(F) &lt;br /&gt;&lt;br /&gt;H)every form of art is protected by copy write,upon the expiration of whitch the property passes into the public domain and becomes freely available to any one wishing to exploit it commercialy. the time has come when all treasures shoud pass to the controled of a trust,and by this made readily available to anyone on pament of a fee or royality.the income fromthe works of tagore would alone be enarmous.these who now main financialbenifit from his genius should make some contribution to the welfare of the arts in general. &lt;br /&gt;&lt;br /&gt;29.tagore's plays are not protected by copyright. F &lt;br /&gt;&lt;br /&gt;30.tagore's decendants should be asked to make some contribution to the arts C &lt;br /&gt;&lt;br /&gt;31.instead of buying a ticket, theatregoers should pay a fee to trust for the benefit of the arts. C &lt;br /&gt;&lt;br /&gt;32. More people could go to the theatre if copy rightwere abolished C &lt;br /&gt;&lt;br /&gt;I. Hacking is a crime made possible by a relatively new technology, which one of the reasons it is often poorly understood and reported. Many computers, but no means all,are now linked togetherin networks which allow users on one computer to communicate with others on the same network.If a computer is not networked,no manipulation of its data from another machine is possible.So long as users are authorised, networking is just a way of making work easier and more productive.Hacking on the other hand,is the unauthorised use of networks or unauthorised entty into the computers themselves.Most people do not need to break into the networks they use,since they are already accredited users. &lt;br /&gt;&lt;br /&gt;33. Most hackers are authorised to break into networks F &lt;br /&gt;&lt;br /&gt;34. Computers are only vulerable to the unauthorised manipulation of their data via another computer if they are networked T &lt;br /&gt;&lt;br /&gt;35.The main reason why it is relatively easy to break into a computer is that few people understand the technology. C &lt;br /&gt;&lt;br /&gt;36.Hackers do not work fot the firms whose networks they break into. T &lt;br /&gt;&lt;br /&gt;J.Although invaders represent a threat to the conservation of flora and fauna,there are two special cases in which invasion have been deliberately brought about.One is the desire to control presents by natural predators, whichmay have to be brought in from other countries.The second is releasing organisms into the wild(or on to farms,from which they might escape)that are completely novel,beacause they have been genetically engineered.There is nothing intrinsically sinister about engineered organisms,but any novelty must be regarded as a potential invader. &lt;br /&gt;&lt;br /&gt;37.Pest control does not threat the conservation of flora and fauna. T &lt;br /&gt;&lt;br /&gt;38.Genetically engineered organisms must always be regarded as poten-tially dangerous. F &lt;br /&gt;&lt;br /&gt;39.Natural predators are work harmful than pests. T &lt;br /&gt;&lt;br /&gt;40.Genetically engineered organisms escaped from the farm,they will pose a threat to wildlife. T &lt;br /&gt;&lt;br /&gt;K.electronics technology is coming to the rescue of helicopters which can be grounded or crash in icy conditions the machines are especially vulnerable to the build up of ice on both their rotors and engine air intake when operating in cold damp conditions.the problem is 2 fold ice increases the weight and the build upp makes the aerofoils less efficient .now at last a detector has been devised which the company hopes will mean safer flightsand less frequent grounding.unlike most &lt;br /&gt;&lt;br /&gt;devices in use at present it can detect the liquid water content of cloud above freezing level.so the warning is ginven before the potential hazard is encountered. &lt;br /&gt;&lt;br /&gt;39.an electronic device has been invented which will prevent the build up of ice on helicopter rotors F &lt;br /&gt;&lt;br /&gt;40.helicopters are sometimes grounded because in cold damp weather their engine air intakes and rotors malfuntionowing to the formatrion of ice. T &lt;br /&gt;&lt;br /&gt;41.only one device can at present detect the liquid water content of cloud above freezing level C &lt;br /&gt;&lt;br /&gt;42.in future fewer helicopters will crash or have to grounded T &lt;br /&gt;&lt;br /&gt;L.anyone whos has systematically examined faces will have perceived a prepondreance although not a proliferation of asymmtry.whether or not the expression is volitinal and self controlled or spontaneous appears to predict facial asymmetry as does the type of emotion protrayed.positive emotions are usually displayed symmetrically although a left sided representation of a negative emotion is more common.posed expressions and negative emotions are less likely to be symmetrically represented. &lt;br /&gt;&lt;br /&gt;43.an angry person is more likely to have a lopsided expression than someone who is smiling T &lt;br /&gt;&lt;br /&gt;44.a deliberately assumed facial expression will always be asymmetrical F &lt;br /&gt;&lt;br /&gt;45.an actor is likely to smile symmetrically when acting C &lt;br /&gt;&lt;br /&gt;46.more self conscious people are likely to have less asymmetrically facial expressions than those who are less aware of themselves T &lt;br /&gt;&lt;br /&gt;M. human existence is not susceptible of arbitary division between consciousness and unconsciousness.the conscious world invades and shapes the activities of the unconscious while many of the great achievements of humanity's waking hours were wholly or partly inspires bu dreams .even if it could be argued that dreams precede experience such a dichotomy could not be drawn as the influence of dreaming on the waking state would remain unclear but as yet no common vocabulary exists to record the substance of prenatal dreaming &lt;br /&gt;&lt;br /&gt;47.sleep can be a creative state. T &lt;br /&gt;&lt;br /&gt;48.it is difficult to tell whether a sleeper is dr3eaming or not C &lt;br /&gt;&lt;br /&gt;49. if we knew what babies dream about before they are born we could &lt;br /&gt;&lt;br /&gt;show that conscious and unconscious mond influence one another F &lt;br /&gt;&lt;br /&gt;50. it is untrue to claim that conscious and unconscious worlds never impinge on one another F &lt;br /&gt;&lt;br /&gt;New twenty questions &lt;br /&gt;&lt;br /&gt;-------------------- &lt;br /&gt;&lt;br /&gt;N. disease x succeeds lung disease.it may also occur helthy persons the person looks healthier from outside.the number of red blood cells in the blood increased and this leads to thickness fo the blood as a result of which blood lacks inside the vessels .the person suffers heart attact. one possible solution is to remove a litre of blood or to control the growth of red blood cells. &lt;br /&gt;&lt;br /&gt;53.lung disease precedes the disease x T &lt;br /&gt;&lt;br /&gt;54.a person who gets heart attack always has disease x F &lt;br /&gt;&lt;br /&gt;55.people suffering from disease x look healthier C &lt;br /&gt;&lt;br /&gt;56.one litre of blood must be removed to cure this T &lt;br /&gt;&lt;br /&gt;O.a starfire engine has been designed to work only for unleaded petrol.this crossfire engine is designed for both 1500 and `1800 cc they internally and externally look alike except for the difference in wheels ----,2000 cc is differentr from the above.two in terms of 3 features --- ----- ---- on the bumber. &lt;br /&gt;&lt;br /&gt;57.the engine run only on the leaded petrol F &lt;br /&gt;&lt;br /&gt;58.1500 and 1800 cc look alike F &lt;br /&gt;&lt;br /&gt;59.apart from cross fire engines they manfacture ---- F &lt;br /&gt;&lt;br /&gt;60.internal structure of the 2000cc is same as that of both 1500 and 1800 cc C &lt;br /&gt;&lt;br /&gt;P.a weed killer to kill the weeds has been developed.the weed killer solution has to be applied to the growing tips. it need not to be applied to all the tips.the solution has to be prepared in a can in one hand and the plants are taken in the other hand with a glove and are immersed in the solution if we cannot immerse them in the solution the solution can be applied to the roots with a brush.it used without care it can pose danger to other plants. &lt;br /&gt;&lt;br /&gt;61.the solutions has to applied to growing leaves &lt;br /&gt;&lt;br /&gt;62.to use the weedkiller first take the plants in the cn as then pour the solution into it. &lt;br /&gt;&lt;br /&gt;63.it is sufficient to apply it only to some roots &lt;br /&gt;&lt;br /&gt;64.it effects to the other plants. &lt;br /&gt;&lt;br /&gt;Q. &lt;br /&gt;&lt;br /&gt;65.flora 3 sofa set gives value to ur money &lt;br /&gt;&lt;br /&gt;66.padding is used to increase durablity &lt;br /&gt;&lt;br /&gt;67.flora will made all other products other than sofa sets &lt;br /&gt;&lt;br /&gt;68.can we use wood as ----- T &lt;br /&gt;&lt;br /&gt;R. &lt;br /&gt;&lt;br /&gt;69.the length of the cracker will be less than 12 cm F &lt;br /&gt;&lt;br /&gt;70.the center part of the crackers is 4cm T &lt;br /&gt;&lt;br /&gt;------------------------------------------------------------------------------- &lt;br /&gt;&lt;br /&gt;In reasoning test at the end of each question we indicated F,T,C &lt;br /&gt;&lt;br /&gt;where F represents False &lt;br /&gt;&lt;br /&gt;" T " True &lt;br /&gt;&lt;br /&gt;" C " cant say. &lt;br /&gt;&lt;br /&gt;------------------------------------------------------------------------------ &lt;br /&gt;&lt;br /&gt;Tata Consultancy Services Sample Test#1 &lt;br /&gt;&lt;br /&gt;NOTE:EACH OF THE QUESTIONS GIVEN BELOW APPEAR AS MULTIPLE CHOICE QUESTIONS IN THE ACTUAL PAPER. &lt;br /&gt;&lt;br /&gt;VERBAL SECTION &lt;br /&gt;&lt;br /&gt;Directions for questions 1-15:Find the synonyms of the following words &lt;br /&gt;&lt;br /&gt;1. Merry Ans. Gay,Happy 2. Alienate Ans. Estrange &lt;br /&gt;&lt;br /&gt;3. Solicit Ans. To request 4.Heap Ans. To pile &lt;br /&gt;&lt;br /&gt;5.Cargo Ans. Freight 6.Momentary Ans. Transient &lt;br /&gt;&lt;br /&gt;7. Volume Ans.Quantity 8.Veer Ans.Diverge &lt;br /&gt;&lt;br /&gt;9.Dispel Ans.Dissipate 10.Admonish Ans.Cautious &lt;br /&gt;&lt;br /&gt;11.Meager Ans.Scanty 12.Latitude Ans.Scope &lt;br /&gt;&lt;br /&gt;13.Latent Ans.Potential 14.Covet Ans.Crave &lt;br /&gt;&lt;br /&gt;15.Discretion Ans. Prudence &lt;br /&gt;&lt;br /&gt;QUANTITATIVE SECTION &lt;br /&gt;&lt;br /&gt;1. If two pencils cost 8 cents, then how much do 5 pencils cost? Ans. 20 cents &lt;br /&gt;&lt;br /&gt;2. Some work is done by two people in 24 minutes. One of them can do this work alone in 40 minutes. How much time does the second person take to do the same work ? Ans. 60 minutes &lt;br /&gt;&lt;br /&gt;3. A car is filled with four and half gallons of fuel for a round trip.If the amount of fuel taken while going is 1/4 more than the amount taken for coming, what is the amount of fuel consumed while coming back? Ans.2 gallons &lt;br /&gt;&lt;br /&gt;4. The lowest temperature in the night in a city A is 1/3 more than 1/2 the highest during the day. Sum of the lowest temperature and the highest temperature is 100 degrees. Then what is the low temp? Ans.40 degrees &lt;br /&gt;&lt;br /&gt;5. Javagal, who decided to go to weekened trip should not exceed 8 hours driving in a day. The average speed of forward journey is 40 miles/hr.Due to traffic on sundays, the return journey's average speed is 30 m/h. How far he can select a picnic spot? &lt;br /&gt;&lt;br /&gt;a) 120 miles b) between 120 and 140 miles c) 160 miles Ans. 120 miles &lt;br /&gt;&lt;br /&gt;6. A salesperson by mistake multiplied a number and got the answer as 3, instead of dividing the number by 3.What is the answer he should have actually got? Ans. 3 &lt;br /&gt;&lt;br /&gt;7. A building with height D shadow upto G. What is the height of a neighbouring building with a shadow of C feet. Ans. (C*D)/G &lt;br /&gt;&lt;br /&gt;8. A person was fined for exceeding the speed limit by 10 mph. Another person was also fined for exceeding the same speed limit by twice the same. If the second person was travelling at a speed of 35 mph, find the speed limit. Ans. 15 mph &lt;br /&gt;&lt;br /&gt;9. A bus started from bustand at 8.00am, and after staying for 30 minutes at a destination, it returned back to the busstand. The destination is 27 miles from the busstand. The speed of the bus is 18mph. During the return journey bus travels with 50% faster speed.At what time does it return to the busstand? Ans. 11.00am &lt;br /&gt;&lt;br /&gt;10. In a mixture, R is 2 parts and S is 1 part. In order to make S to 25% of the mixture, how much of R is to be added? Ans.One part of R &lt;br /&gt;&lt;br /&gt;11. Wind flows 160 miles in 330 min, for travelling 80 miles how much time does it require? &lt;br /&gt;&lt;br /&gt;Ans. 2 hrs 45 mins &lt;br /&gt;&lt;br /&gt;12. With a 4/5 full tank a vehicle can travel 12 miles, how far can it travel with a 1/3 full tank &lt;br /&gt;&lt;br /&gt;Ans. 5 miles &lt;br /&gt;&lt;br /&gt;13. There are two trees in a lawn. One grows at a rate 3/5 of the other in 4 years. If the total growth of trees is 8 ft. What is the height of the smaller tree after 2 years Ans. 1 1/2 feet &lt;br /&gt;&lt;br /&gt;14. Refer to the figure below.A ship started from P and moves at a speed of I miles per hour and another ship starts from L and moving with H miles per hour simultaneously.Where do the two ships meet? &lt;br /&gt;&lt;br /&gt;||---g---||---h---||---i---||---j---||---k---||---l---|| &lt;br /&gt;&lt;br /&gt;PG H I J K L are the various stops in between denoted by || . The values g, h, i, j, k, l denote the distance between the ports. Ans. Between I and J, closer to J &lt;br /&gt;&lt;br /&gt;15. If A is travelling at 72 km per hour on a highway. B is travelling at a speed of 25 meters per second on a highway. What is the difference in their speeds in m/sec. Ans. 1 m/sec &lt;br /&gt;&lt;br /&gt;CRITICAL REASONING SECTION &lt;br /&gt;&lt;br /&gt;………………………………….. &lt;br /&gt;&lt;br /&gt;PYSCHOMETERIC TEST &lt;br /&gt;&lt;br /&gt;You don't need to fret much about this test. This test consists of 150 questions and is just a pyshcology test which should be answered confidently and doesn't require any preparation.One must try being consistent while answering as the same questions are repeatedly asked in different forms.Also one must answer all questions.Questions are of yes,no or can't say kind. &lt;br /&gt;&lt;br /&gt;1. Will you be interested in social activities. &lt;br /&gt;&lt;br /&gt;2. While going upstairs do you move two steps at a time. &lt;br /&gt;&lt;br /&gt;3. Can you make friends with people of the same sex or with opposite sex also &lt;br /&gt;&lt;br /&gt;4. Your friends consider you as a leader in your group &lt;br /&gt;&lt;br /&gt;5. People think that your'e serious minded. &lt;br /&gt;&lt;br /&gt;6. There are times you feel dull without any reason. &lt;br /&gt;&lt;br /&gt;7. You host several parties &lt;br /&gt;&lt;br /&gt;8. When relatives come to your house do you entertain them. &lt;br /&gt;&lt;br /&gt;9. You can work for long hours without tireness. &lt;br /&gt;&lt;br /&gt;10. In your company you want to lead the organisation. &lt;br /&gt;&lt;br /&gt;Tata Consultancy Services Sample Test#2 &lt;br /&gt;&lt;br /&gt;Home &lt;br /&gt;&lt;br /&gt;Back To TCS Page &lt;br /&gt;&lt;br /&gt;NOTE:EACH OF THE QUESTIONS GIVEN BELOW APPEAR AS MULTIPLE CHOICE QUESTIONS IN THE ACTUAL PAPER. &lt;br /&gt;&lt;br /&gt;VERBAL SECTION &lt;br /&gt;&lt;br /&gt;Directions for questions 1-15:Find the synonyms of the following words &lt;br /&gt;&lt;br /&gt;1. Depreciation Ans. Deflation, Depression, Devaluation, fall, slump in value &lt;br /&gt;&lt;br /&gt;2. Deprecate Ans. Feel and express disapproval of &lt;br /&gt;&lt;br /&gt;3. Incentive Ans. Thing one encourages a person to do something &lt;br /&gt;&lt;br /&gt;4. Echelon Ans. Level of authority or responsibility &lt;br /&gt;&lt;br /&gt;5. Innovation Ans.To make changes or introduce new things &lt;br /&gt;&lt;br /&gt;6. Intermittant Ans. Externally stopping and then starting &lt;br /&gt;&lt;br /&gt;7. Detrimental Ans.Harmful &lt;br /&gt;&lt;br /&gt;8. Aberration Ans. Deviation &lt;br /&gt;&lt;br /&gt;9. Conciliation Ans.To make less angry or more friendly &lt;br /&gt;&lt;br /&gt;10. Orthodox Ans.Conventional or superstitious &lt;br /&gt;&lt;br /&gt;11. Fallible Ans.Liable to err &lt;br /&gt;&lt;br /&gt;12. Volatile Ans.Ever changing &lt;br /&gt;&lt;br /&gt;13. Manifestion Ans.Clear or obvious &lt;br /&gt;&lt;br /&gt;14. Connotation Ans. Suggest in addition to the fundamental meaning &lt;br /&gt;&lt;br /&gt;15. Reciprocal Ans. Reverse, Opposite &lt;br /&gt;&lt;br /&gt;QUANTITATIVE SECTION &lt;br /&gt;&lt;br /&gt;1. There are 150 weights .Some are 1 kg weights and some are 2 kg weights. The sum of the weights is 260.What is the number of 1kg weights? Ans. 40 &lt;br /&gt;&lt;br /&gt;2. A is driving on a highway when the police fines him for overspeeding and exceedi&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-7391559491176881668?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/7391559491176881668/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/02/tcs_5710.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/7391559491176881668'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/7391559491176881668'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/02/tcs_5710.html' title='TCS'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-5334804640479782767</id><published>2009-02-01T21:52:00.000-08:00</published><updated>2009-02-01T22:03:51.829-08:00</updated><title type='text'>TCS</title><content type='html'>VERBAL SECTION &lt;br /&gt;&lt;br /&gt;Directions for questions 1-15:Find the synonyms of the following words &lt;br /&gt;&lt;br /&gt;1. Depreciation &lt;br /&gt;&lt;br /&gt;Ans. Deflation, Depression, Devaluation, fall, slump in value &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. Deprecate &lt;br /&gt;&lt;br /&gt;Ans. Feel and express disapproval of &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. Incentive &lt;br /&gt;&lt;br /&gt;Ans. Thing one encourages a person to do something &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4. Echelon &lt;br /&gt;&lt;br /&gt;Ans. Level of authority or responsibility &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5. Innovation &lt;br /&gt;&lt;br /&gt;Ans.To make changes or introduce new things &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6. Intermittant &lt;br /&gt;&lt;br /&gt;Ans. Externally stopping and then starting &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. Detrimental &lt;br /&gt;&lt;br /&gt;Ans.Harmful &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8. Aberration &lt;br /&gt;&lt;br /&gt;Ans. Deviation &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9. Conciliation &lt;br /&gt;&lt;br /&gt;Ans.To make less angry or more friendly &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;10. Orthodox &lt;br /&gt;&lt;br /&gt;Ans.Conventional or superstitious &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11. Fallible &lt;br /&gt;&lt;br /&gt;Ans.Liable to err &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;12. Volatile &lt;br /&gt;&lt;br /&gt;Ans.Ever changing &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;13. Manifestion &lt;br /&gt;&lt;br /&gt;Ans.Clear or obvious &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;14. Connotation &lt;br /&gt;&lt;br /&gt;Ans. Suggest in addition to the fundamental meaning &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;15. Reciprocal &lt;br /&gt;&lt;br /&gt;Ans. Reverse, Opposite &lt;br /&gt;&lt;br /&gt;QUANTITATIVE SECTION &lt;br /&gt;&lt;br /&gt;1. There are 150 weights .Some are 1 kg weights and some are 2 kg weights. The sum of the weights is 260.What is the number of 1kg weights? &lt;br /&gt;&lt;br /&gt;Ans. 40 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. A is driving on a highway when the police fines him for overspeeding and exceeding the limit by 10 km/hr.At the same time B is fined for overspeeding by twice the amount by which A exceeded the limit.If he was driving at 35 km/hr what is the speed limit for the road? &lt;br /&gt;&lt;br /&gt;Ans. 15 kmph &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. A moves 3 kms east from his starting point . He then travels 5 kms north. From that point he moves 8 kms to the east.How far is A from his starting point? &lt;br /&gt;&lt;br /&gt;Ans. 13 kms &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4. A car travels 12 kms with a 4/5th filled tank.How far will the car travel with 1/3 filled tank? &lt;br /&gt;&lt;br /&gt;Ans. 5 kms &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5. The sum of the digits of a two digit number is 8. When 18 is added to the number, the digits are reversed. Find the number? &lt;br /&gt;&lt;br /&gt;Ans. 35 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6. The cost of one pencil, two pens and four erasers is Rs.22 while the cost of five pencils, four pens and two erasers is Rs.32.How much will three pencils, three pens and three erasers cost? &lt;br /&gt;&lt;br /&gt;Ans. 27 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. Fathers age is 5 times his son's age. 4 years back the father was 9 times older than son.Find the fathers' present age. &lt;br /&gt;&lt;br /&gt;Ans. 40 years &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8. What number should be added to or subtracted from each term of the ratio 17 : 24 so that it becomes equal to 1 : 2. &lt;br /&gt;&lt;br /&gt;Ans. 10 should be subtracted &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9. What is the 12th term of the series 2, 5, 8, .... &lt;br /&gt;&lt;br /&gt;Ans. 35 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;10. If 20 men take 15 days to to complete a job, in how many days can 25 men finish that work? &lt;br /&gt;&lt;br /&gt;Ans. 12 days &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11. In a fraction, if 1 is added to both the numerator at the denominator, the fraction becomes 1/2. If numerator is subtracted from the denominator, the fraction becomes 3/4. Find the fraction. &lt;br /&gt;&lt;br /&gt;Ans. 3/7 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;12. If Rs.1260 is divided between between A, B and C in the ratio 2:3:4, what is C's share? &lt;br /&gt;&lt;br /&gt;Ans. Rs. 560 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;13. A shopkeeper bought a watch for Rs.400 and sold it for Rs.500.What is his profit percentage? &lt;br /&gt;&lt;br /&gt;Ans. 25% &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;14. What percent of 60 is 12? &lt;br /&gt;&lt;br /&gt;Ans. 20% &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;15. Hansie made the following amounts in seven games of cricket in India: Rs.10, Rs.15, Rs.21, Rs.12, Rs.18, Rs.19 and Rs.17(all figures in crores of course).Find his average earnings. &lt;br /&gt;&lt;br /&gt;Ans. Rs.16 crore &lt;br /&gt;&lt;br /&gt;CRITICAL REASONING SECTION &lt;br /&gt;&lt;br /&gt;This section is basically just a reading comprehension section.The critical reasoning section consists of some passages followed by 4 to 7 questions per passage.The questions are such that they require ability to read fast and comprehend.The questions asked in this section have three choices TRUE, FALSE, CAN'T SAY.Some examples of passages are given in test 1.For further practice you may go through any GRE or CAT book which will provide you with ample practice regarding these kinds of questions. &lt;br /&gt;&lt;br /&gt;PYSCHOMETERIC TEST &lt;br /&gt;&lt;br /&gt;This test consists of 150 questions and is just a pyshcology test which should be answered confidently and doesn't require any preparation.One must try being consistent while answering as the same questions are repeatedly asked in different forms.Also one must answer all questions.Questions are of yes or no kind. &lt;br /&gt;&lt;br /&gt;example: &lt;br /&gt;&lt;br /&gt;Are you sincere? &lt;br /&gt;&lt;br /&gt;If you find a purse in the market with loads of money would you return it to the rightful owner? &lt;br /&gt;&lt;br /&gt;While climbing up the stairs do you take two steps at a time? &lt;br /&gt;&lt;br /&gt;Do you drink and smoke more than you think you should? &lt;br /&gt;&lt;br /&gt;Are you the life of the party you attend? &lt;br /&gt;&lt;br /&gt;Are you shy?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-5334804640479782767?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/5334804640479782767/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/02/tcs_01.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/5334804640479782767'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/5334804640479782767'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/02/tcs_01.html' title='TCS'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-7510641685334486896</id><published>2009-02-01T21:51:00.000-08:00</published><updated>2009-02-01T21:52:15.149-08:00</updated><title type='text'>TCS</title><content type='html'>VERBAL SECTION &lt;br /&gt;&lt;br /&gt;Directions for questions 1-15:Find the synonyms of the following words &lt;br /&gt;&lt;br /&gt;1. Depreciation &lt;br /&gt;&lt;br /&gt;Ans. Deflation, Depression, Devaluation, fall, slump in value &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. Deprecate &lt;br /&gt;&lt;br /&gt;Ans. Feel and express disapproval of &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. Incentive &lt;br /&gt;&lt;br /&gt;Ans. Thing one encourages a person to do something &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4. Echelon &lt;br /&gt;&lt;br /&gt;Ans. Level of authority or responsibility &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5. Innovation &lt;br /&gt;&lt;br /&gt;Ans.To make changes or introduce new things &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6. Intermittant &lt;br /&gt;&lt;br /&gt;Ans. Externally stopping and then starting &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. Detrimental &lt;br /&gt;&lt;br /&gt;Ans.Harmful &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8. Aberration &lt;br /&gt;&lt;br /&gt;Ans. Deviation &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9. Conciliation &lt;br /&gt;&lt;br /&gt;Ans.To make less angry or more friendly &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;10. Orthodox &lt;br /&gt;&lt;br /&gt;Ans.Conventional or superstitious &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11. Fallible &lt;br /&gt;&lt;br /&gt;Ans.Liable to err &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;12. Volatile &lt;br /&gt;&lt;br /&gt;Ans.Ever changing &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;13. Manifestion &lt;br /&gt;&lt;br /&gt;Ans.Clear or obvious &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;14. Connotation &lt;br /&gt;&lt;br /&gt;Ans. Suggest in addition to the fundamental meaning &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;15. Reciprocal &lt;br /&gt;&lt;br /&gt;Ans. Reverse, Opposite &lt;br /&gt;&lt;br /&gt;QUANTITATIVE SECTION &lt;br /&gt;&lt;br /&gt;1. There are 150 weights .Some are 1 kg weights and some are 2 kg weights. The sum of the weights is 260.What is the number of 1kg weights? &lt;br /&gt;&lt;br /&gt;Ans. 40 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. A is driving on a highway when the police fines him for overspeeding and exceeding the limit by 10 km/hr.At the same time B is fined for overspeeding by twice the amount by which A exceeded the limit.If he was driving at 35 km/hr what is the speed limit for the road? &lt;br /&gt;&lt;br /&gt;Ans. 15 kmph &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. A moves 3 kms east from his starting point . He then travels 5 kms north. From that point he moves 8 kms to the east.How far is A from his starting point? &lt;br /&gt;&lt;br /&gt;Ans. 13 kms &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4. A car travels 12 kms with a 4/5th filled tank.How far will the car travel with 1/3 filled tank? &lt;br /&gt;&lt;br /&gt;Ans. 5 kms &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5. The sum of the digits of a two digit number is 8. When 18 is added to the number, the digits are reversed. Find the number? &lt;br /&gt;&lt;br /&gt;Ans. 35 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6. The cost of one pencil, two pens and four erasers is Rs.22 while the cost of five pencils, four pens and two erasers is Rs.32.How much will three pencils, three pens and three erasers cost? &lt;br /&gt;&lt;br /&gt;Ans. 27 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. Fathers age is 5 times his son's age. 4 years back the father was 9 times older than son.Find the fathers' present age. &lt;br /&gt;&lt;br /&gt;Ans. 40 years &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8. What number should be added to or subtracted from each term of the ratio 17 : 24 so that it becomes equal to 1 : 2. &lt;br /&gt;&lt;br /&gt;Ans. 10 should be subtracted &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9. What is the 12th term of the series 2, 5, 8, .... &lt;br /&gt;&lt;br /&gt;Ans. 35 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;10. If 20 men take 15 days to to complete a job, in how many days can 25 men finish that work? &lt;br /&gt;&lt;br /&gt;Ans. 12 days &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11. In a fraction, if 1 is added to both the numerator at the denominator, the fraction becomes 1/2. If numerator is subtracted from the denominator, the fraction becomes 3/4. Find the fraction. &lt;br /&gt;&lt;br /&gt;Ans. 3/7 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;12. If Rs.1260 is divided between between A, B and C in the ratio 2:3:4, what is C's share? &lt;br /&gt;&lt;br /&gt;Ans. Rs. 560 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;13. A shopkeeper bought a watch for Rs.400 and sold it for Rs.500.What is his profit percentage? &lt;br /&gt;&lt;br /&gt;Ans. 25% &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;14. What percent of 60 is 12? &lt;br /&gt;&lt;br /&gt;Ans. 20% &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;15. Hansie made the following amounts in seven games of cricket in India: Rs.10, Rs.15, Rs.21, Rs.12, Rs.18, Rs.19 and Rs.17(all figures in crores of course).Find his average earnings. &lt;br /&gt;&lt;br /&gt;Ans. Rs.16 crore &lt;br /&gt;&lt;br /&gt;CRITICAL REASONING SECTION &lt;br /&gt;&lt;br /&gt;This section is basically just a reading comprehension section.The critical reasoning section consists of some passages followed by 4 to 7 questions per passage.The questions are such that they require ability to read fast and comprehend.The questions asked in this section have three choices TRUE, FALSE, CAN'T SAY.Some examples of passages are given in test 1.For further practice you may go through any GRE or CAT book which will provide you with ample practice regarding these kinds of questions. &lt;br /&gt;&lt;br /&gt;PYSCHOMETERIC TEST &lt;br /&gt;&lt;br /&gt;This test consists of 150 questions and is just a pyshcology test which should be answered confidently and doesn't require any preparation.One must try being consistent while answering as the same questions are repeatedly asked in different forms.Also one must answer all questions.Questions are of yes or no kind. &lt;br /&gt;&lt;br /&gt;example: &lt;br /&gt;&lt;br /&gt;Are you sincere? &lt;br /&gt;&lt;br /&gt;If you find a purse in the market with loads of money would you return it to the rightful owner? &lt;br /&gt;&lt;br /&gt;While climbing up the stairs do you take two steps at a time? &lt;br /&gt;&lt;br /&gt;Do you drink and smoke more than you think you should? &lt;br /&gt;&lt;br /&gt;Are you the life of the party you attend? &lt;br /&gt;&lt;br /&gt;Are you shy?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-7510641685334486896?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/7510641685334486896/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/02/tcs.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/7510641685334486896'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/7510641685334486896'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/02/tcs.html' title='TCS'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-6457575674109954848</id><published>2009-01-31T03:19:00.000-08:00</published><updated>2009-01-31T03:21:51.868-08:00</updated><title type='text'>tcs</title><content type='html'>ANALYTICAL: &lt;br /&gt;1) Bhanu spends 30% of his income on petrol on scooter. ¼ of the remaining on house rent and the balance on food. If he spends Rs.300 on petrol then what is the expenditure on house rent? &lt;br /&gt;&lt;br /&gt;a) Rs.525 &lt;br /&gt;&lt;br /&gt;b) Rs.1000 &lt;br /&gt;&lt;br /&gt;c) Rs.675 &lt;br /&gt;&lt;br /&gt;d) Rs.175 &lt;br /&gt;&lt;br /&gt;2) If the numerator of a fraction is increased by 25% and denominator decreased by 20%, the new value is 5/4. What is the original value? &lt;br /&gt;&lt;br /&gt;a) 3/5 &lt;br /&gt;&lt;br /&gt;b) 4/5 &lt;br /&gt;&lt;br /&gt;c) 7/8 &lt;br /&gt;&lt;br /&gt;d) 3/7 &lt;br /&gt;&lt;br /&gt;3) The length of a rectangle is increased by 60%. By what % would the width have to be decreased to maintain the same area? &lt;br /&gt;&lt;br /&gt;a) 30% &lt;br /&gt;&lt;br /&gt;b) 60% &lt;br /&gt;&lt;br /&gt;c) 75% &lt;br /&gt;&lt;br /&gt;d) 37.5% &lt;br /&gt;&lt;br /&gt;4) The value of ¾ + 5 / 36 + 7 / 144 + …….+17 / 5184 + 19 / 8100 is &lt;br /&gt;&lt;br /&gt;a) 0.99 &lt;br /&gt;&lt;br /&gt;b) 0.98 &lt;br /&gt;&lt;br /&gt;c) 0.95 &lt;br /&gt;&lt;br /&gt;d) None of these &lt;br /&gt;&lt;br /&gt;5) A sporting goods store ordered an equal number of white and yellow balls. The tennis ball company delivered 45 extra white balls, making the ratio of white balls to yellow balls 1/5 : 1/6. How many white tennis balls did the store originally order for? &lt;br /&gt;&lt;br /&gt;a) 450 &lt;br /&gt;&lt;br /&gt;b) 270 &lt;br /&gt;&lt;br /&gt;c) 225 &lt;br /&gt;&lt;br /&gt;d) None of these &lt;br /&gt;&lt;br /&gt;6) A student's grade in a course is determined by 6 quizzes and one examination. If the examination counts thrice as much as each of the quizzes, what fraction of final grade is determined by the examination? &lt;br /&gt;&lt;br /&gt;a) 1/6 &lt;br /&gt;&lt;br /&gt;b) 1/5 &lt;br /&gt;&lt;br /&gt;c) 1/3 &lt;br /&gt;&lt;br /&gt;d) ¼ &lt;br /&gt;&lt;br /&gt;7) A sum of money is divided among A, B and C such that for each rupee A gets, B gets 65paise and C gets 35paise. If C's share is Rs.560, the sum is … &lt;br /&gt;&lt;br /&gt;a) 2400 &lt;br /&gt;&lt;br /&gt;b) 2800 &lt;br /&gt;&lt;br /&gt;c) 3200 &lt;br /&gt;&lt;br /&gt;d) 3800 &lt;br /&gt;&lt;br /&gt;8) Joe's father will be twice his age 6 years from now. His mother was twice his age 2 years before. If Joe will be 24 two years from now, what is the difference between his father's and mother's age? &lt;br /&gt;&lt;br /&gt;a) 4 &lt;br /&gt;&lt;br /&gt;b) 6 &lt;br /&gt;&lt;br /&gt;c) 8 &lt;br /&gt;&lt;br /&gt;d) 10 &lt;br /&gt;&lt;br /&gt;9) A traveler walks a certain distance. Had he gone half a kilometer an hour faster \, he would have walked it in 4/5 of the time, and had he gone half a Kilometer an hour slower, he would have walked 2 ½ hr longer. What is the distance? &lt;br /&gt;&lt;br /&gt;a) 10 Km &lt;br /&gt;&lt;br /&gt;b) 15 Km &lt;br /&gt;&lt;br /&gt;c) 20 Km &lt;br /&gt;&lt;br /&gt;d) Data Insufficient &lt;br /&gt;&lt;br /&gt;10) Two oranges, 3 bananas and 4 apples cost Rs.15. 3 oranges, 2 bananas and 1 apple cost Rs.10. I bought 3 oranges, 3 bananas and 3 apples. How much did I pay? &lt;br /&gt;&lt;br /&gt;a) 10 &lt;br /&gt;&lt;br /&gt;b) 8 &lt;br /&gt;&lt;br /&gt;c) 15 &lt;br /&gt;&lt;br /&gt;d) Cannot be determined &lt;br /&gt;&lt;br /&gt;11) A report consists of 20 sheets each of 55 lines and each such line consists of 65 characters. This report is retyped into sheets each of 65 lines such that each line consists of 70 characters. The % reduction in the number of sheets is closest to &lt;br /&gt;&lt;br /&gt;a) 20 &lt;br /&gt;&lt;br /&gt;b) 5 &lt;br /&gt;&lt;br /&gt;c) 30 &lt;br /&gt;&lt;br /&gt;d) 35 &lt;br /&gt;&lt;br /&gt;12) A ship leaves on a long voyage. When it is 18 miles from the shore, a seaplane, whose speed is 10 times that of the ship is sent to deliver mail. How far from the shore does the seaplane catch upo with the ship? &lt;br /&gt;&lt;br /&gt;a) 24 miles &lt;br /&gt;&lt;br /&gt;b) 25 miles &lt;br /&gt;&lt;br /&gt;c) 22miles &lt;br /&gt;&lt;br /&gt;d) 20 miles &lt;br /&gt;&lt;br /&gt;13) Anand finishes a work in 7 days, Bittu finishes the same job in 8 days and Chandu in 6 days. They take turns to finish the work. Anand on the first day, Bittu on the second and Chandu on the third day and then Anand again and so on. On which day will the work get over? &lt;br /&gt;&lt;br /&gt;a) 3rd &lt;br /&gt;&lt;br /&gt;b) 6th &lt;br /&gt;&lt;br /&gt;c) 9th &lt;br /&gt;&lt;br /&gt;d) 7th &lt;br /&gt;&lt;br /&gt;14) 3 men finish painting a wall in 8 days. Four boys do the same job in 7 days. In how many days will 2 men and 2 boys working together paint two such walls of the same size? &lt;br /&gt;&lt;br /&gt;a) 6 6/13 days &lt;br /&gt;&lt;br /&gt;b) 3 3/13 days &lt;br /&gt;&lt;br /&gt;c) 9 2/5 days &lt;br /&gt;&lt;br /&gt;d) 12 12/13 days &lt;br /&gt;&lt;br /&gt;15) There are 5 distinct pairs of white socks and 5 pairs of black socks in a cupboard. In the dark, how many socks do I have to pull out to ensure that I have at least 1 correct pair of white socks? &lt;br /&gt;&lt;br /&gt;a) 3 &lt;br /&gt;&lt;br /&gt;b) 11 &lt;br /&gt;&lt;br /&gt;c) 12 &lt;br /&gt;&lt;br /&gt;d) 16 &lt;br /&gt;&lt;br /&gt;16) In a circular race track of length 100 m, three persons A, B and C start together. A and B start in the same direction at speeds of 10 m/s and 8 m/s respectively. While C runs in the opposite at 15 m/s. When will all the three meet for the first time on the after the start? &lt;br /&gt;&lt;br /&gt;a) After 4 s &lt;br /&gt;&lt;br /&gt;b) After 50 s &lt;br /&gt;&lt;br /&gt;c) After 100 s &lt;br /&gt;&lt;br /&gt;d) After 200 s &lt;br /&gt;&lt;br /&gt;17) If the distance traveled (s) in time (t) by a partile is given by the formula s = 1+ 2t+3t2+4t3 , then what is the distance travelled in the 4th second of its motion? &lt;br /&gt;&lt;br /&gt;a) 141m &lt;br /&gt;&lt;br /&gt;b) 171m &lt;br /&gt;&lt;br /&gt;c) 243m &lt;br /&gt;&lt;br /&gt;d) 313m &lt;br /&gt;&lt;br /&gt;18) There is a circular pizza with negligible thickness that is cut into 'x' pieces by 4 straight line cuts. What is the maximum and minimum value of 'x' respectively? &lt;br /&gt;&lt;br /&gt;a) 12,6 &lt;br /&gt;&lt;br /&gt;b) 11,6 &lt;br /&gt;&lt;br /&gt;c) 12,5 &lt;br /&gt;&lt;br /&gt;d) 11,5 &lt;br /&gt;&lt;br /&gt;19) When ¾ of a unit's digit is added to the ten's digit of a two number, the sum of the digits becomes 10. If ¼ of the ten's digit added to the unit's digit, then the sum of the digits is 1 less than the previous. Find the number. &lt;br /&gt;&lt;br /&gt;a) 94 &lt;br /&gt;&lt;br /&gt;b) 84 &lt;br /&gt;&lt;br /&gt;c) 48 &lt;br /&gt;&lt;br /&gt;d) 88 &lt;br /&gt;&lt;br /&gt;20) LCM of x and y is 36 and HCF of x and y is 4. If x = 4 then which of the following is definitely not true? &lt;br /&gt;&lt;br /&gt;a) Y is divisible by 3 &lt;br /&gt;&lt;br /&gt;b) Y is divisible by 6 &lt;br /&gt;&lt;br /&gt;c) Y is divisible by 9 &lt;br /&gt;&lt;br /&gt;d) X+Y is divisible by &lt;br /&gt;&lt;br /&gt;21) Amal bought 5 pens, 7 pencils and 4 erasers. Rajan bought 6 pens, 8 erasers and 14 pencils for an amount which was half more than what Amal had paid. What % of the total amount paid by Amal was paid for pens? &lt;br /&gt;&lt;br /&gt;a) 37.5% &lt;br /&gt;&lt;br /&gt;b) 62.5% &lt;br /&gt;&lt;br /&gt;c) 50% &lt;br /&gt;&lt;br /&gt;d) None of these &lt;br /&gt;&lt;br /&gt;22) A non stop bus to Amritsar overtakes an auto also moving towards Amritsar at 10 am. The bus reaches Amritsar at 12.30 pm and starts on the return journey after 1 hr. On the way back it meets the auto at 2 pm. At what time the auto will reach Amritsar? &lt;br /&gt;&lt;br /&gt;a) 2.30pm &lt;br /&gt;&lt;br /&gt;b) 3.00pm &lt;br /&gt;&lt;br /&gt;c) 3.15pm &lt;br /&gt;&lt;br /&gt;d) 3.30pm &lt;br /&gt;&lt;br /&gt;23) The total expense of a boarding house are partly fixed and partly variable with the number of boarders. The charge is Rs.70 per head when there are 25 boarders and Rs.60 when there are 50 boarders. Find the charge per head when there are 100 boarders. &lt;br /&gt;&lt;br /&gt;a) 65 &lt;br /&gt;&lt;br /&gt;b) 55 &lt;br /&gt;&lt;br /&gt;c) 50 &lt;br /&gt;&lt;br /&gt;d) 45 &lt;br /&gt;&lt;br /&gt;24) How many positive integer solutions does the equation 2x+3y = 100 have? &lt;br /&gt;&lt;br /&gt;a) 50 &lt;br /&gt;&lt;br /&gt;b) 33 &lt;br /&gt;&lt;br /&gt;c) 16 &lt;br /&gt;&lt;br /&gt;d) 35 &lt;br /&gt;&lt;br /&gt;25) A person had to multiply two numbers. Instead of multiplying by 35, he multiplied by 53and the product went up by 540. What was the raised product? &lt;br /&gt;&lt;br /&gt;a) 780 &lt;br /&gt;&lt;br /&gt;b) 1040 &lt;br /&gt;&lt;br /&gt;c) 1590 &lt;br /&gt;&lt;br /&gt;d) 1720 &lt;br /&gt;&lt;br /&gt;1.If g (0)=g (1)=1 &lt;br /&gt;&lt;br /&gt;And g (n)= g (n-1) + g (n -2) find g (6); &lt;br /&gt;&lt;br /&gt;2.A plane moves from 9?N40?E to 9?N40?W. If the plane starts at 10 am and takes 8 hours to reach the destination, find the local arrival time. &lt;br /&gt;&lt;br /&gt;3. If log 0.317=……… and log 0.318=………. Then find the value of log 0.319. &lt;br /&gt;&lt;br /&gt;4.You will be given the bit position values for A, B and C and using the relation (A?B) u C you have to construct the truth table. Then find the corresponding decimal number and choose the right option. &lt;br /&gt;&lt;br /&gt;5.Complete the sequence 9,10,11,13,15, __, 21,28. &lt;br /&gt;&lt;br /&gt;6.In a certain format TUBUJPO is coded as STATION. The code of which string is FILTER? &lt;br /&gt;&lt;br /&gt;7. What is the code formed by reversing the First and second letters, the third and fourth letters and son on of the string SIMULTANEOUSLY? &lt;br /&gt;&lt;br /&gt;8.The base 5 representation of the decimal number 2048 is _____. &lt;br /&gt;&lt;br /&gt;9.Which is the largest prime number that can be stored in a 9-bit register? &lt;br /&gt;&lt;br /&gt;10.Find the physical quantity represented by MOMENTUM *VELOCITY] / [LENGTH * ACCELERATION]? &lt;br /&gt;&lt;br /&gt;11.A can do a piece of work in 20 days, which B can do in 12 days. In 9 days B does ¾ of the work. How many days will A take to finish the remaining work? &lt;br /&gt;&lt;br /&gt;ANNA University-Campus Recruitment July2003 &lt;br /&gt;&lt;br /&gt;QUANTITATIVE AND LOGICAL REASONING. &lt;br /&gt;&lt;br /&gt;1. In a two-dimensional array, X (9, 7), with each element occupying 4 bytes of memory, with the address of the first element X (1, 1) is 3000, find the address of X (8, 5). &lt;br /&gt;&lt;br /&gt;ANS: 3212 &lt;br /&gt;&lt;br /&gt;2. In the word ORGANISATIONAL, if the first and second, third and forth, forth and fifth, fifth and sixth words are interchanged up to the last letter, what would be the tenth letter from right? &lt;br /&gt;&lt;br /&gt;ANS: I(ROANISATIONALG) &lt;br /&gt;&lt;br /&gt;2E. In the word ORGANISATIONAL, if the first and second, third and forth, fifth and sixth words are interchanged up to the last letter, what would be the tenth letter from right? &lt;br /&gt;&lt;br /&gt;ANS: I(ROAGINASITNOLA) &lt;br /&gt;&lt;br /&gt;3. What is the largest prime number that can be stored in an 8-bit memory? &lt;br /&gt;&lt;br /&gt;ANS:127 &lt;br /&gt;&lt;br /&gt;4. Select the odd one out. a. Java b. Lisp c. Smalltalk d.Eiffel. &lt;br /&gt;&lt;br /&gt;ANS: LISP &lt;br /&gt;&lt;br /&gt;5. Select the odd one out a. SMTP b. WAP c. SAP d. ARP &lt;br /&gt;&lt;br /&gt;ANS: SAP &lt;br /&gt;&lt;br /&gt;6. Select the odd one out a. Oracle b. Linux c. Ingress d. DB2 &lt;br /&gt;&lt;br /&gt;ANS:LINUX &lt;br /&gt;&lt;br /&gt;7. Select the odd one out a. WAP b. HTTP c. BAAN d. ARP &lt;br /&gt;&lt;br /&gt;ANS:BAAN &lt;br /&gt;&lt;br /&gt;8. Select the odd one out a. LINUX b. UNIX c.SOLARIS d. SQL SERVER &lt;br /&gt;&lt;br /&gt;ANS:SQL SERVER &lt;br /&gt;&lt;br /&gt;9. Select the odd one out a. SQL b. DB2 c.SYBASE d. HTTP &lt;br /&gt;&lt;br /&gt;ANS:HTTP &lt;br /&gt;&lt;br /&gt;10. The size of a program is N. And the memory occupied by the program is given by M = square root of 100N. If the size of the program is increased by 1% then how much memory now occupied? &lt;br /&gt;&lt;br /&gt;11. A man, a woman, and a child can do a piece of work in 6 days. Man only can do it in 24 days. Woman can do it in 16 days and in how many days child can do the same work? &lt;br /&gt;&lt;br /&gt;ANS:16 &lt;br /&gt;&lt;br /&gt;12. In which of the system, decimal number 194 is equal to 1234? &lt;br /&gt;&lt;br /&gt;ANS:5 &lt;br /&gt;&lt;br /&gt;13. Find the value of the 678 to the base 7. &lt;br /&gt;&lt;br /&gt;ANS:1656 &lt;br /&gt;&lt;br /&gt;14. Number of faces, vertices and edges of a cube &lt;br /&gt;&lt;br /&gt;ANS:6,8,12 &lt;br /&gt;&lt;br /&gt;15. Complete the series 2, 7, 24, 77,__ &lt;br /&gt;&lt;br /&gt;ANS:238 &lt;br /&gt;&lt;br /&gt;16. Find the value of @@+25-++@1..., where @ denotes "square" and + denotes "square root". &lt;br /&gt;&lt;br /&gt;ANS:121 &lt;br /&gt;&lt;br /&gt;17. Find the result of the following _expression if, M denotes modulus operation, R denotes round-off, T denotes truncation: &lt;br /&gt;&lt;br /&gt;M(373,5)+R(3.4)+T(7.7)+R(5.8) ANS:19 &lt;br /&gt;&lt;br /&gt;18. If TAFJHH is coded as RBEKGI then RBDJK can be coded as --------- &lt;br /&gt;&lt;br /&gt;ANS:PCCKJ &lt;br /&gt;&lt;br /&gt;19. G(0)=-1, G(1)=1, G(N)=G(N-1) - G(N-2), G(5)= ? &lt;br /&gt;&lt;br /&gt;ANS:-2 &lt;br /&gt;&lt;br /&gt;20. What is the max possible 3 digit prime number? &lt;br /&gt;&lt;br /&gt;ANS: &lt;br /&gt;&lt;br /&gt;21. A power unit is there by the bank of the river of 750 meters width. A cable is made from power unit to power a plant opposite to that of the river and 1500mts away from the power unit. The cost of the &lt;br /&gt;&lt;br /&gt;cable below water is Rs. 15/- per meter and cost of cable on the bank is Rs.12/- per meter. Find the total of laying the cable. &lt;br /&gt;&lt;br /&gt;ANS:20250 &lt;br /&gt;&lt;br /&gt;22. The size of a program is N. And the memory occupied by the program is given by M = square root of 100N. If the size of the program is increased by 1% then how much memory now occupied? &lt;br /&gt;&lt;br /&gt;23. In Madras, temperature at noon varies according to -t^2/2 + 8t + 3, where t is elapsed time. Find how much temperature more or less in 4pm to 9pm. &lt;br /&gt;&lt;br /&gt;ANS: 385.8(DB) &lt;br /&gt;&lt;br /&gt;24. The size of the bucket is N kb. The bucket fills at the rate of 0.1 kb per millisecond. A programmer sends a program to receiver. There it waits for 10 milliseconds. And response will be back to programmer in 20 milliseconds. How much time the program takes to get a response back to the programmer, after it &lt;br /&gt;&lt;br /&gt;is sent? &lt;br /&gt;&lt;br /&gt;ANS: 30MILISECOND &lt;br /&gt;&lt;br /&gt;25. A man, a woman, and a child can do a piece of work in 6 days. Man only can do it in 24 days. Woman can do it in 16 days and in how many days child can do the same work? &lt;br /&gt;&lt;br /&gt;26. If the vertex (5,7) is placed in the memory. First vertex (1,1) ?s address is 1245 and then address of (5,7) is ---------- &lt;br /&gt;&lt;br /&gt;27. Which of the following are orthogonal pairs? &lt;br /&gt;&lt;br /&gt;a. 3i+2j b. i+j &lt;br /&gt;&lt;br /&gt;c. 2i-3j d. -7i+j &lt;br /&gt;&lt;br /&gt;ANS: (A)&amp; (C). &lt;br /&gt;&lt;br /&gt;28. If VXUPLVH is written as SURMISE, what is SHDVD? &lt;br /&gt;&lt;br /&gt;ANS: PEASA &lt;br /&gt;&lt;br /&gt;29. If A, B and C are the mechanisms used separately to reduce the wastage of fuel by 30%, 20% and 10%. What will be the fuel economy if they were used &lt;br /&gt;&lt;br /&gt;combined. &lt;br /&gt;&lt;br /&gt;ANS: 20% &lt;br /&gt;&lt;br /&gt;30. What is the power of 2? a. 2068 b.2048 c.2668 &lt;br /&gt;&lt;br /&gt;ANS: (B). 2048 &lt;br /&gt;&lt;br /&gt;31. Complete the series. 3, 8, --, 24, --, 48, 63 &lt;br /&gt;&lt;br /&gt;ANS: 15,35 &lt;br /&gt;&lt;br /&gt;32. Complete the series. 4, -5, 11, -14, 22, --- &lt;br /&gt;&lt;br /&gt;ANS: -27 &lt;br /&gt;&lt;br /&gt;33. A, B and C are 8 bit no?s. They are as follows: &lt;br /&gt;&lt;br /&gt;A 1 1 0 1 1 0 1 1 &lt;br /&gt;&lt;br /&gt;B 0 1 1 1 1 0 1 0 &lt;br /&gt;&lt;br /&gt;C 0 1 1 0 1 1 0 1 &lt;br /&gt;&lt;br /&gt;Find ( (A-B) u C )=? &lt;br /&gt;&lt;br /&gt;Hint : &lt;br /&gt;&lt;br /&gt;A-B is {A} - {A n B} &lt;br /&gt;&lt;br /&gt;ANS: 0 1 1 1 1 1 1 1 (DB) &lt;br /&gt;&lt;br /&gt;A Flight takes off at 2 A.M from northeast direction and travels for 11 hours to reach the destination which is in north west direction.Given the latitude and longitude of source and destination. Find the &lt;br /&gt;&lt;br /&gt;local time of destination when the flight reaches there? &lt;br /&gt;&lt;br /&gt;ANS: 1:00 P.M &lt;br /&gt;&lt;br /&gt;35. A can copy 50 papers in 10 hours while both A &amp; B can copy 70 papers in 10 hours. Then for how many hours required for B to copy 26 papers? &lt;br /&gt;&lt;br /&gt;ANS: 13 &lt;br /&gt;&lt;br /&gt;36. A is twice efficient than B. A and B can both work together to complete a work in 7 days. Then find in how many days A alone can complete the work? &lt;br /&gt;&lt;br /&gt;ANS: 10.5 DAYS(11) &lt;br /&gt;&lt;br /&gt;37. A finish the work in 10 days. B is 60% efficient than A. So hoW days does B take to finish the work?ANS : 4DAYS. &lt;br /&gt;&lt;br /&gt;38. A finishes the work in 10 days &amp; B in 8 days individually. If A works for only 6 days then how many days should B work to complete A?s work? &lt;br /&gt;&lt;br /&gt;ANS : 3.2 DAYS(4) &lt;br /&gt;&lt;br /&gt;39. Given the length of the 3 sides of a triangle. Find the one that is &lt;br /&gt;&lt;br /&gt;impossible? (HINT : sum of smaller 2 sides is greater than the other one which is larger) &lt;br /&gt;&lt;br /&gt;40. Find the singularity matrix from a given set of matrices?(Hint det(A)==0) &lt;br /&gt;&lt;br /&gt;41. A 2D array is declared as A[9,7] and each element requires 2 byte.If A[ 1,1 &lt;br /&gt;&lt;br /&gt;] is stored in 3000. Find the memory of A[8,5] ? &lt;br /&gt;&lt;br /&gt;ANS: 3106. &lt;br /&gt;&lt;br /&gt;42. Sum of slopes of 2 perpendicular st. lines is given. Find the pair of lines from the given set of options which satisfy the above condition? &lt;br /&gt;&lt;br /&gt;43. (a) 2+3i (b)1+i (c) 3-2i (d) 1-7i .Find &lt;br /&gt;&lt;br /&gt;which of the above is orthogonal. &lt;br /&gt;&lt;br /&gt;ANS : (A) &amp; (C). &lt;br /&gt;&lt;br /&gt;44. (Momentum*Velocity)/(Acceleration * distance ) find units. &lt;br /&gt;&lt;br /&gt;ANS:MASS &lt;br /&gt;&lt;br /&gt;45. The number 362 in decimal system is given by (1362)x in the X system of numbers find the value of X a}5 b) 6 c) 7 d) 8 e) 9 &lt;br /&gt;&lt;br /&gt;46. Given $ means Tripling and % means change of sign then find the value of $%$6-%$%6 &lt;br /&gt;&lt;br /&gt;ANS : -72 &lt;br /&gt;&lt;br /&gt;47. My flight takes of at 2am from a place at 18N 10E and landed 10 Hrs later at a place with coordinates 36N70W. What is the local time when my plane landed. &lt;br /&gt;&lt;br /&gt;a) 6:00 am b) 6:40am c)7:40 d)7:00 &lt;br /&gt;&lt;br /&gt;e)8:00 (Hint : Every 1 deg &lt;br /&gt;&lt;br /&gt;longitude is equal to 4 minutes . If west to east add time else subtract time) &lt;br /&gt;&lt;br /&gt;ANS: (E) 8:00 &lt;br /&gt;&lt;br /&gt;48. Find the highest prime number that can be stored in an 8bit computer. &lt;br /&gt;&lt;br /&gt;49. Which of the following set of numbers has the highest Standard deviation? &lt;br /&gt;&lt;br /&gt;1,0,1,0,1,0 &lt;br /&gt;&lt;br /&gt;-1,-1,-1,-1,-1,-1 &lt;br /&gt;&lt;br /&gt;1,1,1,1,1,1 &lt;br /&gt;&lt;br /&gt;1,1,0,-1,0,-1 &lt;br /&gt;&lt;br /&gt;50. Match the following: &lt;br /&gt;&lt;br /&gt;1. Male - Boy ---&gt; &lt;br /&gt;&lt;br /&gt;a. A type of &lt;br /&gt;&lt;br /&gt;2. Square - Polygon ---&gt; &lt;br /&gt;&lt;br /&gt;b. A part of &lt;br /&gt;&lt;br /&gt;3. Roof - Building ---&gt; &lt;br /&gt;&lt;br /&gt;c. Not a &lt;br /&gt;&lt;br /&gt;type of &lt;br /&gt;&lt;br /&gt;4. Mushroom - Vegetables ---&gt; d. &lt;br /&gt;&lt;br /&gt;A superset of &lt;br /&gt;&lt;br /&gt;Ans: 1- d, 2- a, 3- b, 4- c &lt;br /&gt;&lt;br /&gt;51. Match the following. &lt;br /&gt;&lt;br /&gt;1. brother - sister &lt;br /&gt;&lt;br /&gt;---&gt; a. Part of &lt;br /&gt;&lt;br /&gt;2. Alsatian - dog ---&gt; &lt;br /&gt;&lt;br /&gt;b. Sibling &lt;br /&gt;&lt;br /&gt;3. sentence - paragraph ---&gt; &lt;br /&gt;&lt;br /&gt;c. Type of &lt;br /&gt;&lt;br /&gt;4. car - steering &lt;br /&gt;&lt;br /&gt;---&gt; d. Not a type &lt;br /&gt;&lt;br /&gt;of &lt;br /&gt;&lt;br /&gt;Ans. 1-b, 2-c, 3-a, 4-d &lt;br /&gt;&lt;br /&gt;1. Two pencils costs 8 cents, then 5 pencils cost how much &lt;br /&gt;&lt;br /&gt;(Ans:20 cents). &lt;br /&gt;&lt;br /&gt;2. A work is done by the people in 24 min. one of them can do &lt;br /&gt;&lt;br /&gt;this work a lonely in 40 min. how much time required to do the &lt;br /&gt;&lt;br /&gt;same &lt;br /&gt;&lt;br /&gt;work for the second person. &lt;br /&gt;&lt;br /&gt;(ans:60 min.) &lt;br /&gt;&lt;br /&gt;3. A car is filled with four and half gallons of oil for full &lt;br /&gt;&lt;br /&gt;round &lt;br /&gt;&lt;br /&gt;trip. fuel is taken 1/4 gallons mor3 in going than coming. what is &lt;br /&gt;&lt;br /&gt;the fiel consumed in coming up? (2 gallons) &lt;br /&gt;&lt;br /&gt;4. low temperature at the night in a city is 1/3 more than 1/2 &lt;br /&gt;&lt;br /&gt;hinge as higher temperature in a day. sum of the low temp and &lt;br /&gt;&lt;br /&gt;higherst temp is 100C. then what is the low temperature (40 C) &lt;br /&gt;&lt;br /&gt;5. A person who decided to go weekend trip should not exceed 8 &lt;br /&gt;&lt;br /&gt;hours &lt;br /&gt;&lt;br /&gt;driving in a day Average speed of forward journy is 40 mph. due &lt;br /&gt;&lt;br /&gt;to &lt;br /&gt;&lt;br /&gt;traffic in sundays, the return journey average speed is 30 mph. &lt;br /&gt;&lt;br /&gt;how far he can select a picnic spot (120 miles). &lt;br /&gt;&lt;br /&gt;6. A sales person multiplied a number and get the answer is 3, &lt;br /&gt;&lt;br /&gt;instead of that number divided by 3. what is th answer he actually &lt;br /&gt;&lt;br /&gt;has to get ? (1/3). &lt;br /&gt;&lt;br /&gt;7. A ship started from port and moving with I mph and another ship &lt;br /&gt;&lt;br /&gt;started from L and moving with H mph. At which place these two &lt;br /&gt;&lt;br /&gt;ships &lt;br /&gt;&lt;br /&gt;meet ? ( Ans is between I and J and close to J) &lt;br /&gt;&lt;br /&gt;!_____!_____!_____!_____!_____!_____! &lt;br /&gt;&lt;br /&gt;port G H I J K L &lt;br /&gt;&lt;br /&gt;8. A building with hight D ft shadow upto G A neighbour building &lt;br /&gt;&lt;br /&gt;with &lt;br /&gt;&lt;br /&gt;what height shadow C ft is (B ft.) &lt;br /&gt;&lt;br /&gt;!_____!_____!_____!_____!_____!_____!_____! &lt;br /&gt;&lt;br /&gt;A B C D E F G H &lt;br /&gt;&lt;br /&gt;9. A person was fined for exceeding the speed limit by 10 &lt;br /&gt;&lt;br /&gt;mph.Another &lt;br /&gt;&lt;br /&gt;person was also fined for exceeding the same speed limit by twice &lt;br /&gt;&lt;br /&gt;the same. If the second person was travelling at a speed of 35 &lt;br /&gt;&lt;br /&gt;mph. &lt;br /&gt;&lt;br /&gt;find the speed limit (15 mph) &lt;br /&gt;&lt;br /&gt;10. A bus started from bustand at 8.00a m and after 30 min staying &lt;br /&gt;&lt;br /&gt;at &lt;br /&gt;&lt;br /&gt;destination, it returned back to the bustand. the destination is &lt;br /&gt;&lt;br /&gt;27 &lt;br /&gt;&lt;br /&gt;miles from the bustand. the speed of the bus 50 percent fast &lt;br /&gt;&lt;br /&gt;speed. &lt;br /&gt;&lt;br /&gt;at what time it retur4ns to the bustand (11.00) &lt;br /&gt;&lt;br /&gt;11.in a mixture, R is 2 parts, S is 1 part. in order to make S to &lt;br /&gt;&lt;br /&gt;25% &lt;br /&gt;&lt;br /&gt;of the mixture, howmuch R is to be added ( one part). &lt;br /&gt;&lt;br /&gt;12. wind flows 160 miles in 330 min, for 80 miles how much time &lt;br /&gt;&lt;br /&gt;required. &lt;br /&gt;&lt;br /&gt;13. with 4/5 full tank vehicle travels 12 miles, with 1/3 full &lt;br /&gt;&lt;br /&gt;tank &lt;br /&gt;&lt;br /&gt;how much distance travels ( 5 miles). &lt;br /&gt;&lt;br /&gt;14. two trees are there. one grows at 3/5 of the other. in 4 &lt;br /&gt;&lt;br /&gt;years, &lt;br /&gt;&lt;br /&gt;total growth of trees is 8 ft. what growth will smaller tree will &lt;br /&gt;&lt;br /&gt;have in 2 years. (&lt;2ft) &lt;br /&gt;&lt;br /&gt;15. A storm will move with a velocity of towords the center in &lt;br /&gt;&lt;br /&gt;hours. At the same rate how much far will it move in hrs. &lt;br /&gt;&lt;br /&gt;(but Ans is 8/3 or 2 2/3). &lt;br /&gt;&lt;br /&gt;1. If two pencils cost 8 cents, then how much do 5 pencils cost? &lt;br /&gt;&lt;br /&gt;Ans. 20 cents &lt;br /&gt;&lt;br /&gt;2. Some work is done by two people in 24 minutes. One of them can do this work alone in 40 minutes. How much time does the second person take to do the same work ? &lt;br /&gt;&lt;br /&gt;Ans. 60 minutes &lt;br /&gt;&lt;br /&gt;3. A car is filled with four and half gallons of fuel for a round trip.If the amount of fuel taken while going is 1/4 more than the amount taken for coming, what is the amount of fuel consumed while coming back? &lt;br /&gt;&lt;br /&gt;Ans.2 gallons &lt;br /&gt;&lt;br /&gt;4. The lowest temperature in the night in a city A is 1/3 more than 1/2 the highest during the day. Sum of the lowest temperature and the highest temperature is 100 degrees. Then what is the low temp? &lt;br /&gt;&lt;br /&gt;Ans.40 degrees &lt;br /&gt;&lt;br /&gt;5. Javagal, who decided to go to weekened trip should not exceed 8 hours driving in a day. The average speed of forward journey is 40 miles/hr.Due to traffic on sundays, the return journey's average speed is 30 m/h. How far he can select a picnic spot? &lt;br /&gt;&lt;br /&gt;a) 120 miles &lt;br /&gt;&lt;br /&gt;b) between 120 and 140 miles &lt;br /&gt;&lt;br /&gt;c) 160 miles &lt;br /&gt;&lt;br /&gt;Ans. 120 miles &lt;br /&gt;&lt;br /&gt;6. A salesperson by mistake multiplied a number and got the answer as 3, instead of dividing the number by 3.What is the answer he should have actually got? &lt;br /&gt;&lt;br /&gt;Ans. 3 &lt;br /&gt;&lt;br /&gt;7. A building with height D shadow upto G. What is the height of a neighbouring building with a shadow of C feet. &lt;br /&gt;&lt;br /&gt;Ans. (C*D)/G &lt;br /&gt;&lt;br /&gt;8. A person was fined for exceeding the speed limit by 10 mph. Another person was also fined for exceeding the same speed limit by twice the same. If the second person was travelling at a speed of 35 mph, find the speed limit. &lt;br /&gt;&lt;br /&gt;Ans. 15 mph &lt;br /&gt;&lt;br /&gt;9. A bus started from bustand at 8.00am, and after staying for 30 minutes at a destination, it returned back to the busstand. The destination is 27 miles from the busstand. The speed of the bus is 18mph. During the return journey bus travels with 50% faster speed.At what time does it return to the busstand? &lt;br /&gt;&lt;br /&gt;Ans. 11.00am &lt;br /&gt;&lt;br /&gt;10. In a mixture, R is 2 parts and S is 1 part. In order to make S to 25% of the mixture, how much of R is to be added? &lt;br /&gt;&lt;br /&gt;Ans.One part of R &lt;br /&gt;&lt;br /&gt;11. Wind flows 160 miles in 330 min, for travelling 80 miles how much time does it require? &lt;br /&gt;&lt;br /&gt;Ans. 2 hrs 45 mins &lt;br /&gt;&lt;br /&gt;12. With a 4/5 full tank a vehicle can travel 12 miles, how far can it travel with a 1/3 full tank &lt;br /&gt;&lt;br /&gt;Ans. 5 miles &lt;br /&gt;&lt;br /&gt;13. There are two trees in a lawn. One grows at a rate 3/5 of the other in 4 years. If the total growth of trees is 8 ft. What is the height of the smaller tree after 2 years &lt;br /&gt;&lt;br /&gt;Ans. 1 1/2 feet &lt;br /&gt;&lt;br /&gt;14. Refer to the figure below.A ship started from P and moves at a speed of I miles per hour and another ship starts from L and moving with H miles per hour simultaneously.Where do the two ships meet? &lt;br /&gt;&lt;br /&gt;||---g---||---h---||---i---||---j---||---k---||---l---|| &lt;br /&gt;&lt;br /&gt;PG H I J K L are the various stops in between denoted by || . The values g, h, i, j, k, l denote the distance between the ports. &lt;br /&gt;&lt;br /&gt;Ans. Between I and J, closer to J &lt;br /&gt;&lt;br /&gt;15. If A is travelling at 72 km per hour on a highway. B is travelling at a speed of 25 meters per second on a highway. What is the difference in their speeds in m/sec. &lt;br /&gt;&lt;br /&gt;Ans. 1 m/sec &lt;br /&gt;&lt;br /&gt;1. There are 150 weights .Some are 1 kg weights and some are 2 kg weights. The sum of the weights is 260.What is the number of 1kg weights? &lt;br /&gt;&lt;br /&gt;Ans. 40 &lt;br /&gt;&lt;br /&gt;2. A is driving on a highway when the police fines him for overspeeding and exceeding the limit by 10 km/hr.At the same time B is fined for overspeeding by twice the amount by which A exceeded the limit.If he was driving at 35 km/hr what is the speed limit for the road? &lt;br /&gt;&lt;br /&gt;Ans. 15 kmph &lt;br /&gt;&lt;br /&gt;3. A moves 3 kms east from his starting point . He then travels 5 kms north. From that point he moves 8 kms to the east.How far is A from his starting point? &lt;br /&gt;&lt;br /&gt;Ans. 13 kms &lt;br /&gt;&lt;br /&gt;4. A car travels 12 kms with a 4/5th filled tank.How far will the car travel with 1/3 filled tank? &lt;br /&gt;&lt;br /&gt;Ans. 5 kms &lt;br /&gt;&lt;br /&gt;5. The sum of the digits of a two digit number is 8. When 18 is added to the number, the digits are reversed. Find the number? &lt;br /&gt;&lt;br /&gt;Ans. 35 &lt;br /&gt;&lt;br /&gt;6. The cost of one pencil, two pens and four erasers is Rs.22 while the cost of five pencils, four pens and two erasers is Rs.32.How much will three pencils, three pens and three erasers cost? &lt;br /&gt;&lt;br /&gt;Ans. 27 &lt;br /&gt;&lt;br /&gt;7. Fathers age is 5 times his son's age. 4 years back the father was 9 times older than son.Find the fathers' present age. &lt;br /&gt;&lt;br /&gt;Ans. 40 years &lt;br /&gt;&lt;br /&gt;8. What number should be added to or subtracted from each term of the ratio 17 : 24 so that it becomes equal to 1 : 2. &lt;br /&gt;&lt;br /&gt;Ans. 10 should be subtracted &lt;br /&gt;&lt;br /&gt;9. What is the 12th term of the series 2, 5, 8, .... &lt;br /&gt;&lt;br /&gt;Ans. 35 &lt;br /&gt;&lt;br /&gt;10. If 20 men take 15 days to to complete a job, in how many days can 25 men finish that work? &lt;br /&gt;&lt;br /&gt;Ans. 12 days &lt;br /&gt;&lt;br /&gt;11. In a fraction, if 1 is added to both the numerator at the denominator, the fraction becomes 1/2. If numerator is subtracted from the denominator, the fraction becomes 3/4. Find the fraction. &lt;br /&gt;&lt;br /&gt;Ans. 3/7 &lt;br /&gt;&lt;br /&gt;12. If Rs.1260 is divided between between A, B and C in the ratio 2:3:4, what is C's share? &lt;br /&gt;&lt;br /&gt;Ans. Rs. 560 &lt;br /&gt;&lt;br /&gt;13. A shopkeeper bought a watch for Rs.400 and sold it for Rs.500.What is his profit percentage? &lt;br /&gt;&lt;br /&gt;Ans. 25% &lt;br /&gt;&lt;br /&gt;14. What percent of 60 is 12? &lt;br /&gt;&lt;br /&gt;Ans. 20% &lt;br /&gt;&lt;br /&gt;15. Hansie made the following amounts in seven games of cricket in India: Rs.10, Rs.15, Rs.21, Rs.12, Rs.18, Rs.19 and Rs.17(all figures in crores of course).Find his average earnings. &lt;br /&gt;&lt;br /&gt;Ans. Rs.16 crore &lt;br /&gt;&lt;br /&gt;**** &lt;br /&gt;&lt;br /&gt;Quantitative: &lt;br /&gt;&lt;br /&gt;1. 3 angles or 3 sides r given.Which will form a triangle? &lt;br /&gt;&lt;br /&gt;2. units of basic quantities : &lt;br /&gt;&lt;br /&gt;1. (energy * time * time )/(mass * dist) = distance Freshersworld.com &lt;br /&gt;&lt;br /&gt;2. (momentum * velocity)/(force * time) = velocity &lt;br /&gt;&lt;br /&gt;3.”&amp;” is for doubling the value “%” is for change of sign then what is the value &lt;br /&gt;&lt;br /&gt;5-&amp;%&amp;5 Ans-30 (Check) &lt;br /&gt;&lt;br /&gt;3. 58,27,12,x,2,1. Find x. &lt;br /&gt;&lt;br /&gt;4. R-rounding off, M-modulus, T-truncate &lt;br /&gt;&lt;br /&gt;M(893,10)+r( )+t( ) is asked &lt;br /&gt;&lt;br /&gt;5.vertices edges and surfaces of a cube Ans-8,12,6 &lt;br /&gt;&lt;br /&gt;6.Sums on Recursive functions &lt;br /&gt;&lt;br /&gt;7.Questions on General computer awareness &lt;br /&gt;&lt;br /&gt;Pick the odd one….. &lt;br /&gt;&lt;br /&gt;1.http 2.arp 3.snmp 4.sap Ans-sap &lt;br /&gt;&lt;br /&gt;1.linux 2.windows NT 3.sql server 4.Unix Ans-Sql server Freshersworld.com &lt;br /&gt;&lt;br /&gt;Another…..ans-Smtp &lt;br /&gt;&lt;br /&gt;Ans-MVS &lt;br /&gt;&lt;br /&gt;8. Which of the following is a singular matrix. (Determinant must be zero) &lt;br /&gt;&lt;br /&gt;9. Aeroplane is flying at a particular angle and latitude,after some time another latitude is given..(8 hrs later), u r asked to find the local time of the place. &lt;br /&gt;&lt;br /&gt;10.a series of letters are given &lt;br /&gt;&lt;br /&gt;how many Ws r followed by F and preceded by T. &lt;br /&gt;&lt;br /&gt;11. 7,9,13,_,27,37. Ans-19 &lt;br /&gt;&lt;br /&gt;12.SURFW Code is translated as SHEET…..these kinda ques r there….. Freshersworld.com &lt;br /&gt;&lt;br /&gt;13.194 base 10 = ____ base 5 (1234) &lt;br /&gt;&lt;br /&gt;14.Largest prime no. in a 6 bit,8 bit (Ans 127),9 bit microprocessor &lt;br /&gt;&lt;br /&gt;15.Venn Diagram kinda ques. &lt;br /&gt;&lt;br /&gt;Some know English, some French,some German……how many know two languages….. &lt;br /&gt;&lt;br /&gt;16.Bar Diagram, Pie Chart (similar to Data interpretation) &lt;br /&gt;&lt;br /&gt;17.Code Interchanging, A word is given…. Letters are reversed..u r asked to find the nth letter from right or left…. &lt;br /&gt;&lt;br /&gt;Eg. &lt;br /&gt;&lt;br /&gt;DESTABILIZATION Ans-T &lt;br /&gt;&lt;br /&gt;18. Sums on logarithms, e power x curves. Freshersworld.com &lt;br /&gt;&lt;br /&gt;19.n=68 x 12 x 51 &lt;br /&gt;&lt;br /&gt;Which of the follg is not an integer Ans- n/122 &lt;br /&gt;&lt;br /&gt;20.Which is a/not a power of 2 or 3. &lt;br /&gt;&lt;br /&gt;Power of 4 Ans-4096 &lt;br /&gt;&lt;br /&gt;21. A-- 1 0 10 10 (Not exact values) &lt;br /&gt;&lt;br /&gt;1. If VXUPLVH is written as SURMISE, what is SHDVD ? &lt;br /&gt;Ans. PEASA (hint: in the first word, the alphabets of the jumbled one is three alphabets after the corresponding alphabet in the word SURMISE. S = V-3, similarly find the one for SHDVD) &lt;br /&gt;&lt;br /&gt;2. If DDMUQZM is coded as CENTRAL then RBDJK can be coded as --------- &lt;br /&gt;Ans. QCEIL (hint: Write both the jumbled and the coded word as a table, find the relation between the corresponding words, i.e C= D-1, N=M+1 &amp; so on &lt;br /&gt;&lt;br /&gt;3. In the word ECONOMETRICS, if the first and second , third and forth ,forth and fifth, fifth and sixth words are interchanged up to the last letter, what would be the tenth letter from right? &lt;br /&gt;Ans. word is CENOMOTEIRSC tenth word is R &lt;br /&gt;&lt;br /&gt;4. Find the result of the following expression if, M denotes modulus operation, R denotes round-off, T denotes truncation: M(373,5)+R(3.4)+T(7.7)+R(5.8) &lt;br /&gt;Ans. 19 &lt;br /&gt;&lt;br /&gt;5. What is the largest prime number that can be stored in an 8-bit memory? &lt;br /&gt;Ans. &lt;br /&gt;&lt;br /&gt;6. Find the physical quantity in units from the equation: (Force*Distance)/(Velocity*Velocity) &lt;br /&gt;Ans. Ns2/m &lt;br /&gt;&lt;br /&gt;7. Find the value of @@+25-++@16, where @ denotes "square" and + denotes "square root". &lt;br /&gt;Ans: 621 &lt;br /&gt;&lt;br /&gt;8. If f(0)=1 and f(n)= f(n-1)*n, find the value of f(4). &lt;br /&gt;Ans: 24 &lt;br /&gt;&lt;br /&gt;9. Convert the decimal number 310 to the base 6. &lt;br /&gt;Ans: 1234 &lt;br /&gt;&lt;br /&gt;10. Find the missing number in the series: 2, 5, __ , 19 , 37, 75 &lt;br /&gt;Ans: 9 &lt;br /&gt;&lt;br /&gt;11. In a two-dimensional array, X(9,7), with each element occupying 4 bytes of memory, with the address of the first element X(1,1) is 3000, find the address of X(8,5). &lt;br /&gt;Ans. &lt;br /&gt;&lt;br /&gt;12. Find the fourth row, having the bit pattern as an integer in an 8-bit computer, and express the answer in its decimal value. &lt;br /&gt;A 0 0 0 0 1 1 1 1 &lt;br /&gt;B 0 0 1 1 0 0 1 1 &lt;br /&gt;C 0 1 0 1 0 1 0 1 &lt;br /&gt;(AU(B-C)) ? &lt;br /&gt;Ans. 29 &lt;br /&gt;&lt;br /&gt;13. Complete the series 2, 7, 24, 77,__ (hint: 2*12= 24, 7*11= 77, therefore 24*10= 240) &lt;br /&gt;Ans: 240 &lt;br /&gt;&lt;br /&gt;14. Consider the following diagram for answering the following questions: &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;A. Find the difference between people playing cricket and tennis alone. &lt;br /&gt;Ans: 4 &lt;br /&gt;&lt;br /&gt;B. Find the percentage of people playing hockey to that playing both hockey and cricket. &lt;br /&gt;Ans: &lt;br /&gt;&lt;br /&gt;C. Find the percentage of people playing all the games to the total number of players. &lt;br /&gt;Ans: 6% &lt;br /&gt;&lt;br /&gt;15. One more question of the same type (Same type of diagram; of course in a different set) &lt;br /&gt;&lt;br /&gt;1. How many more or less speak English than French? &lt;br /&gt;&lt;br /&gt;2. What % people speak all the three languages? &lt;br /&gt;&lt;br /&gt;3. What % people speak German but not English? &lt;br /&gt;&lt;br /&gt;{In another set cricket, hockey and tennis are changed with the name of some computer languages, such as Java, Cobol, Fortran (may be some other name)} &lt;br /&gt;&lt;br /&gt;16. Select the odd one out &lt;br /&gt;a. Oracle b. Linux c. Ingress d. DB2 &lt;br /&gt;&lt;br /&gt;17. Select the odd one out &lt;br /&gt;a. SMTP b. WAP c. SAP d. ARP &lt;br /&gt;&lt;br /&gt;18. Select the odd man out. &lt;br /&gt;a. Java b. Lisp c. Smalltalk d. Eiffel &lt;br /&gt;&lt;br /&gt;19. Which of the following are orthogonal pairs? &lt;br /&gt;a. 3i+2j b. i+j c. 2i-3j d. -7i+j &lt;br /&gt;&lt;br /&gt;20. Number of faces, vertices and edges of a cube &lt;br /&gt;a. 12,8,6 b. 4,6,8 c. 6,8,12 d. 6,12,8 &lt;br /&gt;&lt;br /&gt;21. Given a Bar Chart showing the sales of a company. (In Figure) The sales in years as shown in the figure are (in crores) 1998-1999 - 130, 1997-1998 - 90, 1996-1997 - 90, 1995-1996 - 70 &lt;br /&gt;&lt;br /&gt;1. The highest growth rate was for the year &lt;br /&gt;Ans. 1998-1999 &lt;br /&gt;&lt;br /&gt;2. The net increase in sales of the company in the year span of 1995-1999 &lt;br /&gt;Ans. 60 crores. &lt;br /&gt;&lt;br /&gt;3. The lowest growth rate was for the year &lt;br /&gt;Ans. 1997 &lt;br /&gt;&lt;br /&gt;22. Find the value of the decimal number to the base 7. &lt;br /&gt;Ans. 1436. &lt;br /&gt;&lt;br /&gt;23. Complete the series:5,6,7,8,10,11,14,__. &lt;br /&gt;Ans. 15 &lt;br /&gt;&lt;br /&gt;24. If the vertex (5,7) is placed in the memory. First vertex (1,1) ‘s address is 1245 and then address of (5,7) is ---------- &lt;br /&gt;Ans. &lt;br /&gt;&lt;br /&gt;25. In which of the system, decimal number 384 is equal to 1234? &lt;br /&gt;Ans. &lt;br /&gt;&lt;br /&gt;26. A man, a woman, and a child can do a piece of work in 6 days. Man only can do it in 24 days. Woman can do it in 16 days and in how many days child can do the same work? &lt;br /&gt;Ans. &lt;br /&gt;&lt;br /&gt;27. In Madras, temperature at noon varies according to -t^2/2 + 8t + 3, where t is elapsed time. Find how much temperature more or less in 4pm to 9pm. &lt;br /&gt;Ans. &lt;br /&gt;&lt;br /&gt;28. The size of the bucket is N kb. The bucket fills at the rate of 0.1 kb per millisecond. A programmer sends a program to receiver. There it waits for 10 milliseconds. And response will be back to programmer in 20 milliseconds. How much time the program takes to get a response back to the programmer, after it is sent? &lt;br /&gt;Ans. &lt;br /&gt;&lt;br /&gt;29. The size of a program is N. And the memory occupied by the program is given by M = square root of 100N. If the size of the program is increased by 1% then how much memory now occupied ? &lt;br /&gt;Ans. &lt;br /&gt;&lt;br /&gt;30. A power unit is there by the bank of the river of 750 meters width. A cable is made from power unit to power a plant opposite to that of the river and 1500mts away from the power unit. The cost of the cable below water is Rs. 15/- per meter and cost of cable on the bank is Rs.12/- per meter. Find the total of laying the cable. &lt;br /&gt;Ans. Rs. 22,500 (hint: the plant is on the other side of the plant i.e. it is not on the same side as the river) &lt;br /&gt;&lt;br /&gt;{There are two questions, both showing a curve. In the first one, you have to identify the curve. In the second one you have to Write the equation of the curve. In } &lt;br /&gt;&lt;br /&gt;SECTION II 1. If A can copy 50 pages in 10 hours and A and B together can copy 70 pages in 10 hours, how much time does B takes to copy 26 pages? &lt;br /&gt;a. b. c. d. &lt;br /&gt;&lt;br /&gt;2. Match the following: &lt;br /&gt;1. Male - Boy ---&gt; a. A type of &lt;br /&gt;2. Square - Polygon ---&gt; b. A part of &lt;br /&gt;3. Roof - Building ---&gt; c. Not a type of &lt;br /&gt;4. Mushroom - Vegetables ---&gt; d. A superset of &lt;br /&gt;Ans: 1- d, 2- a, 3- b, 4- c &lt;br /&gt;&lt;br /&gt;3. Match the following. &lt;br /&gt;1. brother - sister ---&gt; a. Part of &lt;br /&gt;2. Alsatian - dog ---&gt; b. Sibling &lt;br /&gt;3. sentence - paragraph ---&gt; c. Type of &lt;br /&gt;4. car - steering ---&gt; d. Not a type of &lt;br /&gt;Ans. 1-b, 2-c, 3-a, 4-d &lt;br /&gt;&lt;br /&gt;1)In a well of 20feet depth, a frog jumps 5feet up in the morning and comes 4feet down in the evening,on which day the frog gets out of the well. ____________________________________________________________________________ ___________________ 2)Next number in the series: 77,49,36,18,? answer 8 (7*7=49)(4*9=36)(3*6=18) (1*8=8) ____________________________________________________________________________ ___________________ 3)A &amp; B are playing a game .There are 8 oranges in a row on the table.one Player can take 1-4 oranges in a pick (a maximum of 4),one who picks the last orange wins the game.'A' plays first How many oranges should he pick first time inorder to win the game. answer 3. ____________________________________________________________________________ ___________________ 4)9/10 or 10/11 which is greater. ____________________________________________________________________________ ____________________ 5) (x-y/3)-(y-x/3)=? ____________________________________________________________________________ ____________________ 6)x:y=3 and x+y=80 what is the value of y? answer y=20 ____________________________________________________________________________ _____________________ 7)Average of 5 number is -10 sum of 3 numbers is 16,what is the average of other two numbers? answer -33 ____________________________________________________________________________ _____________________ 8)16 litre can, 7 litre can,3 litre can,the customer has to be given 11 litres of milk using all the three cans only explain? ____________________________________________________________________________ ______________________ 9)A car has run 10000 miles using 5 tyres interchangably,To have a equal wornout by all tyres how many miles each tyre should have run. answer 4000 miles/tyre ____________________________________________________________________________ ______________________ 10) 8 to the power of x is 32,what is the value of x? ____________________________________________________________________________ _____________________ 11) 12 Blacksox and 12 Whitesox mixed in a box,a pair of sox is picked at a time,in which pick/ how many pick ,to get the right pair(black&amp;black or white&amp;white)? ____________________________________________________________________________ _____________________ 12)Two coins one with HEAD IN BOTH SIDES and the other coin HEAD IN ONE SIDE AND TAIL IN THE OTHER SIDE is in a box,a coin is taken at random and FOUND HEAD IN ONE SIDE ..what is the probability that THE OTHER SIDE IS HEAD? ____________________________________________________________________________ _____________________ 13)A man shapes 3 cardboards in 50 minutes,how many cardboards does he shape in 5 hours? answer 18cardboards. ____________________________________________________________________________ _____________________ 14)How many 3 digits with 3 Distinct digits are there from 100-1000. ____________________________________________________________________________ _____________________ 15)Three men goes to a hotel to stay ,the clerk says $30 per room/day so all the three plans to stay in one room so each pays $10.After some time the clerk realises that he made a mistake of collecting $30 but the room cost only $25,there fore he decides to return $5 to them so he calls the roomboy and gives him $5 asking him to return.The roomboy keeps $2 with him and he returns only $3($1 for each). Now Totally all have paid $9 each($27)+rommboy $2 which is equal to $27.where did $1 go,who has made THE MISTAKE &lt;br /&gt;&lt;br /&gt;1. WHICH IS THE NEXT NO: &lt;br /&gt;&lt;br /&gt;5,6,7,8,10,11,14,? ANS: 18 &lt;br /&gt;&lt;br /&gt;2. BFGE CODED AS CEHD THEN CODE PVHDJ ANS: QUICK &lt;br /&gt;&lt;br /&gt;3. FIND THE NO. OF Y FOLLOWED BY W BUT THAT IS NOT FOLLOWED BY Z. &lt;br /&gt;&lt;br /&gt;Y W R U D D Y W Z ............... &lt;br /&gt;&lt;br /&gt;4. WHAT IS THE LARGEST PRIME NO THAT IS STORED IN 8 BIT PATTERN &lt;br /&gt;&lt;br /&gt;ANS: 253 (NOT SURE) &lt;br /&gt;&lt;br /&gt;5.WHICH WILL GIVE GOOD STANDARD DEVIATION &lt;br /&gt;&lt;br /&gt;1. (7,0,-7,0,7) 2. (7,-7,7,-7,7) 3. (1,0,-1,0,1) &lt;br /&gt;&lt;br /&gt;6. WHICH IS NOT A SIDE OF A RECTANGULAR &lt;br /&gt;&lt;br /&gt;1. (2,3,4) 2.(3,4,7) 3. (3,5,9) &lt;br /&gt;&lt;br /&gt;7.WHICH SHAPE WILL BE OBTAINED BY USING THESE VALUES OF X ,Y &lt;br /&gt;&lt;br /&gt;X Y &lt;br /&gt;&lt;br /&gt;0 0.00001 &lt;br /&gt;&lt;br /&gt;10 1.02 &lt;br /&gt;&lt;br /&gt;100 1.72 &lt;br /&gt;&lt;br /&gt;1000 3.00 &lt;br /&gt;&lt;br /&gt;9999 4.72 &lt;br /&gt;&lt;br /&gt;8. WHICH EQUATION THAT BEST SUITS THIS CURVE &lt;br /&gt;&lt;br /&gt;A LINE CUTS X AT -1 WHEN Y=0 AND X=0 WHEN Y=3 AND GOES UPWARD &lt;br /&gt;&lt;br /&gt;Y &lt;br /&gt;&lt;br /&gt;X &lt;br /&gt;&lt;br /&gt;9. A MAN , WOMAN AND A BOY JOINDLY DID A JOB IN 6 DAYS. A MAN ALONE FINISHES IN 10 DAYS, A WOMEN ALONE FINISH IN 24 DAYS. THEN HOW MANY DAYS THE BOY CAN TAKE TO FINSH? &lt;br /&gt;&lt;br /&gt;10. FOR TEMPERATURE A FUNCTION IS GIVEN ACCORDING TO TIME : ((t**2)/6) + 4t +12 &lt;br /&gt;&lt;br /&gt;WHAT IS THE TEMPERATURE RISE OR FALL BETWEEN 4.AM TO 9 AM &lt;br /&gt;&lt;br /&gt;11. AN AEROPLANE STARTS FROM A (SOME LATITUDE IS GIVEN ACCORDING TO PLACE)AT 2 AM LOCAL TIME TO B(SOME LATITUDE). TRAVELLLING TIME IS 10 HOURS. WHAT IS THE LOCAL TIME OF B WHEN IT REACHES B &lt;br /&gt;&lt;br /&gt;12. A FILE IS TRANSFERRED FROM A PLACE TO ADESTINATION CAPABLE OF 10 KB . THEY GIVEN SOME RATE OF TRANSFER. U HAVE FIND A EQUATION THAT BEST SUIT THIS. &lt;br /&gt;&lt;br /&gt;13. IN A PLANAR CUBE , THE NO. OF VERTICES, NO OF EDGES AND NO OF FACES ARE &lt;br /&gt;&lt;br /&gt;1. 6,6,6 2. 4,8,12 3.... 4......... &lt;br /&gt;&lt;br /&gt;14. VENN DIAGROM below &lt;br /&gt;&lt;br /&gt;1. HOW MANY PERSON KNOW ENGLISH MORE THAN FRENCH &lt;br /&gt;&lt;br /&gt;2. HOW MUCH % OF PEOPLE KNOWS ALL THE 3 LANGUAGES &lt;br /&gt;&lt;br /&gt;3. HOW MUCH % OF PEOPLE THOSE WHO KNOWS FRENCH AND GERMAN AND NOT ENGLISH &lt;br /&gt;&lt;br /&gt;FRENCH &lt;br /&gt;&lt;br /&gt;15. CORRECT CHART WITH CORRECT VALUES &lt;br /&gt;&lt;br /&gt;X- YEAR &lt;br /&gt;&lt;br /&gt;Y- NO OF PERSONS &lt;br /&gt;&lt;br /&gt;1. AVERAGE NO. OF PERSONS FROM 1995 - 1999 &lt;br /&gt;&lt;br /&gt;2. WHICH YEAR HAS LARGE DIFFERENCES IN NO OF PERSONS &lt;br /&gt;&lt;br /&gt;3. IF 10% OF PEOPLE LEAVES THE OFFICE IN 1998 THEN, HOW MANY FRESH CANDIDATES CAN BE ADDED IN THE NEXT YEAR &lt;br /&gt;&lt;br /&gt;16. WHAT IS THE VALUE OF &lt;br /&gt;&lt;br /&gt;M(373, 7) + R(6.8) -T(3.4) + R( 3.4) &lt;br /&gt;&lt;br /&gt;M- MODULAS R- ROUNDOFF T- TRUNCATE &lt;br /&gt;&lt;br /&gt;17. WHAT IS THE VALUE OF &lt;br /&gt;&lt;br /&gt;% # % (5) + # % # (2) &lt;br /&gt;&lt;br /&gt;WHERE % - DOUBLING #- RECIPROCAL &lt;br /&gt;&lt;br /&gt;18. MATCH THE FOLLOWING &lt;br /&gt;&lt;br /&gt;A B &lt;br /&gt;&lt;br /&gt;1. SENTENCE, PARAGRAPH 1. TYPE OF &lt;br /&gt;&lt;br /&gt;2. BASMATI, WHEAT 2. A PART OF &lt;br /&gt;&lt;br /&gt;3. BROTHER, SISTER 3. NOT A TYPE OF &lt;br /&gt;&lt;br /&gt;4. BREIGAL, DOG 4. SIBLING &lt;br /&gt;&lt;br /&gt;ANS: 1-&gt; 2 2-&gt;1 3-&gt;3 4-&gt;4 &lt;br /&gt;&lt;br /&gt;19. G (0) =1 G (1)= -1 IF G (N)=2* (G (N-1))- 3(G (N-2)) THEN WHAT IS THE VALUE &lt;br /&gt;&lt;br /&gt;OF G (4)? &lt;br /&gt;&lt;br /&gt;20. A 0 0 0 0 1 1 1 1 &lt;br /&gt;&lt;br /&gt;B 0 0 1 1 0 0 1 1 &lt;br /&gt;&lt;br /&gt;C 0 1 0 1 0 1 0 1 &lt;br /&gt;&lt;br /&gt;( A U B ) P C &lt;br /&gt;&lt;br /&gt;21. TIME DEGREE &lt;br /&gt;&lt;br /&gt;2 7 ° 6’ 43.15” &lt;br /&gt;&lt;br /&gt;4 5° 31’ 4.3” &lt;br /&gt;&lt;br /&gt;THEN WHAT WILL BE THE DEGREE WHEN TIME IS 3 O CLOCK &lt;br /&gt;&lt;br /&gt;22. THREE COMPANIES WORKING INDEPENDENTLY AND GET SAVINGS 10%, &lt;br /&gt;&lt;br /&gt;20%, 25%. IF THE COMPANIES WORK JUST OPPOSITE THEN WHAT WILL BE THE NET SAVING? &lt;br /&gt;&lt;br /&gt;23. WHICH ONE WILL BE THE EXACT POWER OF 3 &lt;br /&gt;&lt;br /&gt;(i) 2768 (ii)2678 (III) 2187 &lt;br /&gt;&lt;br /&gt;24. SOME RELATION THAT IS DEDUCE TO &lt;br /&gt;&lt;br /&gt;A (POW 2) DIRECT PROPORTIONAL TO X (POW 3) &lt;br /&gt;&lt;br /&gt;B (POW 2) DIRECT PROPORTIONAL TO Y (POW 3) &lt;br /&gt;&lt;br /&gt;SOME FOUR ANSWERS WERE GIVEN &lt;br /&gt;&lt;br /&gt;ANS: ALL OF THE ABOVE &lt;br /&gt;&lt;br /&gt;25. 900 M WIDE 3000 M WIDTH &lt;br /&gt;&lt;br /&gt;SOMETHING I CAN’T REMEMBER SOME VALUES ARE GIVEN &lt;br /&gt;&lt;br /&gt;BY AIR PER M Rs. 4 BY GROUND PER M Rs. 5 &lt;br /&gt;&lt;br /&gt;THEN WHERE U WILL CUT &lt;br /&gt;&lt;br /&gt;ADD MAN OUT &lt;br /&gt;&lt;br /&gt;26. 1.JAVA 2.SMALLTALK 3.LISP 4.EIFFEL &lt;br /&gt;&lt;br /&gt;27. 1.SAP 2.ARP 3.WAP 4.TCP IP &lt;br /&gt;&lt;br /&gt;28. WHICH IS THE PERFECT ONE AMONG THE 4 &lt;br /&gt;&lt;br /&gt;1. 2x +3y=4 2. x + y= -1 3. Y=2x+ 3 &lt;br /&gt;&lt;br /&gt;PHYSCOMETRY TEST &lt;br /&gt;&lt;br /&gt;the logic here is the same question will be repeated many times in many forms.for all of them u have to say the same answer.very easy one .dont try to be honest ,but pretend to be correct.like if u say that u r easy in making friendships,stick to it through out the paper . &lt;br /&gt;&lt;br /&gt;Direction: &lt;br /&gt;In this section you will find different questions with the same meaning. In all such questions your answer has to be same. for e.g.: &lt;br /&gt;In being thrown by chance with a stranger, you wait for the person to introduce himself or herself. &lt;br /&gt;(a) Yes (b) No (c) ? &lt;br /&gt;&lt;br /&gt;It is difficult for you to chat about things in general with people. &lt;br /&gt;(a) Yes (b) No (c) ? &lt;br /&gt;&lt;br /&gt;These two questions have similar meanings. If you answer the first one 'NO' and the second one 'YES', i.e. if you differ in your answers to similar questions you lose marks for every question with the above meaning. &lt;br /&gt;&lt;br /&gt;The choices to these questions are: &lt;br /&gt;(a) Yes. &lt;br /&gt;(b) No. &lt;br /&gt;(c) ? &lt;br /&gt;&lt;br /&gt;1. You start to work on a project with great deal of enthusiasm. &lt;br /&gt;2. You would rather plan an activity than take part in it. &lt;br /&gt;3. You have more than once taken lead in organizing project or a group of some kind. &lt;br /&gt;4. You like to entertain guests. &lt;br /&gt;5. Your interests change quickly from one thing to another. &lt;br /&gt;6. When you eat a meal with others, you are usually one of the last to finish. &lt;br /&gt;7. You believe in the idea that we should " eat, drink and be merry, for tomorrow we die." &lt;br /&gt;8. When you find that something you have bought is defective, you hesitate to demand an exchange or a &lt;br /&gt;refund. &lt;br /&gt;9. You find it easy to find new acquaintances.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-6457575674109954848?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/6457575674109954848/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_8273.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/6457575674109954848'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/6457575674109954848'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_8273.html' title='tcs'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-8664998250362131704</id><published>2009-01-31T03:17:00.000-08:00</published><updated>2009-01-31T03:18:59.234-08:00</updated><title type='text'>tcs</title><content type='html'>Questions &lt;br /&gt;&lt;br /&gt;1. To merry = Enjoy &lt;br /&gt;&lt;br /&gt;2.To Alienate = abandon &lt;br /&gt;&lt;br /&gt;3.To Solicit = Humble &lt;br /&gt;&lt;br /&gt;4.To Heep =to gather &lt;br /&gt;&lt;br /&gt;5.Cargo = load,luggage &lt;br /&gt;&lt;br /&gt;6.Momentary = for small time &lt;br /&gt;&lt;br /&gt;7.Volume = quantity &lt;br /&gt;&lt;br /&gt;8.To Veer = &lt;br /&gt;&lt;br /&gt;9.To Admonish= &lt;br /&gt;&lt;br /&gt;10. To Meager = small,little &lt;br /&gt;&lt;br /&gt;11. To lattitude, &lt;br /&gt;&lt;br /&gt;12. Latent = &lt;br /&gt;&lt;br /&gt;13. To Covet = To desire &lt;br /&gt;&lt;br /&gt;14. To Discretion = &lt;br /&gt;&lt;br /&gt;15. Potential = ability &lt;br /&gt;&lt;br /&gt;16. To Emancipate, &lt;br /&gt;&lt;br /&gt;17. To Wethargy, &lt;br /&gt;&lt;br /&gt;18. To Concur = similiar &lt;br /&gt;&lt;br /&gt;19. To Confiscate = To take charge, to annex &lt;br /&gt;&lt;br /&gt;20. To Dispel = &lt;br /&gt;&lt;br /&gt;21. Baffle = puzzle &lt;br /&gt;&lt;br /&gt;22. Subsidise = &lt;br /&gt;&lt;br /&gt;23. Misery = &lt;br /&gt;&lt;br /&gt;24. Pretentrous = &lt;br /&gt;&lt;br /&gt;25. Tranquil = calm, silent &lt;br /&gt;&lt;br /&gt;26.Ellace &lt;br /&gt;&lt;br /&gt;28.Rinaile, &lt;br /&gt;&lt;br /&gt;29.Obstinate &lt;br /&gt;&lt;br /&gt;30.Hover &lt;br /&gt;&lt;br /&gt;31.Caprice, &lt;br /&gt;&lt;br /&gt;33.Belate =after time &lt;br /&gt;&lt;br /&gt;34.Brim = edge &lt;br /&gt;&lt;br /&gt;35.Divulge, &lt;br /&gt;&lt;br /&gt;36.Lamont, &lt;br /&gt;&lt;br /&gt;37.Bileaf, &lt;br /&gt;&lt;br /&gt;38. Embrace = &lt;br /&gt;&lt;br /&gt;39.Adhesive = &lt;br /&gt;&lt;br /&gt;40. Miserable = &lt;br /&gt;&lt;br /&gt;Vocabulary &lt;br /&gt;&lt;br /&gt;Admonish-usurp,meager-scant,alienate-estrange,merry-gay,brim-boarder,obstina te-stubbournsolicit-urge,subside-wane,furtive-stealthy,misery-distress,volum &lt;br /&gt;&lt;br /&gt;e-quantity,veer-diverge,stiffle-snithy,adhesive-sticky,hamper-obstruct,belief-conviction,lament-wail,incentive-spur,innert-passive,baffle-frustrate,confiscate-appr &lt;br /&gt;&lt;br /&gt;opriate,covert-crave,caprice-whim,concur-acquiesce,cargo-frieght,dispel-scatter,divulge-reveal,tomerit-todeserve,discreation-prudence,emancipate-liberate,efface-obliterate, &lt;br /&gt;&lt;br /&gt;hover-linger,heap-topile,instigate-incite,latitude-scope,latent-potential,lethargy-stupormomentary-transient,pretentious- ostentatious,embrace-effigy &lt;br /&gt;&lt;br /&gt;Vocabulary &lt;br /&gt;&lt;br /&gt;---------- &lt;br /&gt;&lt;br /&gt;Admonish-usurp,meager-scant,alienate-estrange,merry-gay,brim-boarder,obstinate-stubbourn,solicit-urge,subside-wane,furtive-stealthy,misery-distress,volume-quantity,Veer-diverge,stiffle-snithy,adhesive-sticky,hamper-obstruct,belief-conviction,lament-wail, &lt;br /&gt;&lt;br /&gt;incentive-spur,innert-passive,baffle-frustrate,confiscate-appropriate,covert-crave,caprice-whim,concur-acquiesce,cargo-frieght,dispel-scatter,divul &lt;br /&gt;&lt;br /&gt;ge-reveal,tomerit-todeserve,discreation-prudence,emancipate-liberate,efface-obliterate, hover-linger,heap-topile,instigate-incite,latitude-scope,latent-potential,lethargy-stupor &lt;br /&gt;&lt;br /&gt;momentary-transient,pretentious-ostentatious,embrace-effigy &lt;br /&gt;&lt;br /&gt;TCS &lt;br /&gt;&lt;br /&gt;======== &lt;br /&gt;&lt;br /&gt;SECTION 1 INTURN CONSISTS OF THREE PARTS. &lt;br /&gt;&lt;br /&gt;PART 1 &lt;br /&gt;&lt;br /&gt;VERBAL--- &lt;br /&gt;&lt;br /&gt;IT CONSISTS OF 40 WORDS WHICH HAS 5 MULTIPLE ANSWERS &lt;br /&gt;&lt;br /&gt;FOR THEM.THE MAIN WORDS WHICH I REMEMBER ARE AS &lt;br /&gt;&lt;br /&gt;FOLLOWS FOR WHICH &lt;br /&gt;&lt;br /&gt;YOU SHOULD LEARN THE SYNONYMS OF THESE--- &lt;br /&gt;&lt;br /&gt;SECTION 1 PART B 20MIN 30 marks 15 QUANTITATIVE. &lt;br /&gt;&lt;br /&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ &lt;br /&gt;&lt;br /&gt;THESE ARE SOME PROBLEMS : &lt;br /&gt;&lt;br /&gt;1.) two pencils cost 8 cents. then 5 pencils cost? &lt;br /&gt;&lt;br /&gt;(20 cents) &lt;br /&gt;&lt;br /&gt;2. A work is done by the people in 24 minutes. One of them can do this workalonely in 40 minutes. How much time to do &lt;br /&gt;&lt;br /&gt;the same work for the second person? &lt;br /&gt;&lt;br /&gt;(60 minutes) &lt;br /&gt;&lt;br /&gt;3. A car is filled with four and half gallons of fuel for a round trip. Fuel is taken 1/4 more in going then coming. What is &lt;br /&gt;&lt;br /&gt;the fuel consumed in coming up? (2 gallons) &lt;br /&gt;&lt;br /&gt;4.Low temperature at the night in a city is 1/3 more than 1/2 high as higher temperature in a day. Sum of the low tem. and &lt;br /&gt;&lt;br /&gt;highest temp. is 100 degrees. Then what is the low temp? (40 deg.) &lt;br /&gt;&lt;br /&gt;5. A person, who decided to go to weekened trip should not exceed 8 hours driving in a day. Average speed of forward journey &lt;br /&gt;&lt;br /&gt;is 40 m/h. Due to traffic in sundays, the return journey average speed is 30 m/h. How far he can select a picnic spot? &lt;br /&gt;&lt;br /&gt;a) 120 miles &lt;br /&gt;&lt;br /&gt;b) between 120 and 140 miles &lt;br /&gt;&lt;br /&gt;c) 160 miles &lt;br /&gt;&lt;br /&gt;ans: 120 miles &lt;br /&gt;&lt;br /&gt;6. A salesperson multiplied a number and get the answer 3, instead of that number devided by 3. what is the answer he actually has to get? &lt;br /&gt;&lt;br /&gt;1 x 3 = 3 so number = 1 devided by 3, the ans. is 1/3. &lt;br /&gt;&lt;br /&gt;7. A ship started from port and moving with I miles per hour and another ship started from L and moving with H miles per &lt;br /&gt;&lt;br /&gt;hour. At which place these two ships meet? (between I and J, nearer to J) &lt;br /&gt;&lt;br /&gt;|----|----|----|----|----|----| &lt;br /&gt;&lt;br /&gt;port G H I J K L &lt;br /&gt;&lt;br /&gt;8. A building with height D shadow upto G. A neighbour building with what height shadows C feet. (height = B ft) &lt;br /&gt;&lt;br /&gt;|----|----|----|----|----|----|----| &lt;br /&gt;&lt;br /&gt;A B C D E F G H &lt;br /&gt;&lt;br /&gt;9. A person was fined for exceeding the speed limit by 10 mph. Another person was also fined for exceeding the same &lt;br /&gt;&lt;br /&gt;speed limit by twice the same. If the second person was travelling at a speed of 35 mph, find the speed limit. (15 mph) &lt;br /&gt;&lt;br /&gt;10.A bus started from bustand at 8.00am, and after 30 minutes staying at destination, it returned back to the busstand. &lt;br /&gt;&lt;br /&gt;The destination is 27 miles from the busstand. The speed of the bus is 18mph. In return journey bus travels with 50% fast speed. &lt;br /&gt;&lt;br /&gt;At what time it returns to the busstand? (11.00am). &lt;br /&gt;&lt;br /&gt;11.In a mixture, R is 2 parts, S is 1 part. In aoder to make S to 25% of the mixture, howmuch R is to be added? ( one &lt;br /&gt;&lt;br /&gt;part of R) &lt;br /&gt;&lt;br /&gt;12. wind flows 160 miles in 330 min, for 80 miles how much time required. &lt;br /&gt;&lt;br /&gt;13. with 4/5 full tank vehicle travels 12 miles, with 1/3 full tank how much distance travels ( 5 miles ) &lt;br /&gt;&lt;br /&gt;14. two trees are there. one grows at 3/5 of the other in 4 years, total growth of trees is 8 ft. what growth will &lt;br /&gt;&lt;br /&gt;smaller tree will have in 2 years ( &lt;&gt; &lt;br /&gt;&lt;br /&gt;15. A storm will move with a velocity of towards the centre in hours, At the same rate how much far will it move in hrs. &lt;br /&gt;&lt;br /&gt;( but the answer is 8/3 or 2 2/3 ) &lt;br /&gt;&lt;br /&gt;SECTION-1 PART-3 marks-50 questions-50 30 min &lt;br /&gt;&lt;br /&gt;CRITICAL REASONING &lt;br /&gt;&lt;br /&gt;1. My father has no brothers. he has three sisters who has two childs each. My grandfather has sons. &lt;br /&gt;&lt;br /&gt;a) my grandfather has two sons (false) &lt;br /&gt;&lt;br /&gt;b) three of my aunts have two sons (can't say) &lt;br /&gt;&lt;br /&gt;c) my father is only child to his father (false) &lt;br /&gt;&lt;br /&gt;d) i have six cousins from jmy mother side (can't say) &lt;br /&gt;&lt;br /&gt;e) i have one uncle (false) &lt;br /&gt;&lt;br /&gt;2. Ether injected into gallablader to dissolve galstones. this type oneday treatment is enough for gallastones not for calcium &lt;br /&gt;&lt;br /&gt;stones. this method is alternative to surgery for millions of people who are suffering from this disease. &lt;br /&gt;&lt;br /&gt;a) calcium stones can be cured in oneday (false) &lt;br /&gt;&lt;br /&gt;b) hundreds of people contains calcium stones (can't say) &lt;br /&gt;&lt;br /&gt;c) surgery is the only treatment to calcium stones (true) &lt;br /&gt;&lt;br /&gt;d) Eather will be injected into the gallblader to cure the cholostrol based gall stones (true) &lt;br /&gt;&lt;br /&gt;3. Hacking is illegal entry into other computer. this is done mostly because of lack of knowledge of computer networking with &lt;br /&gt;&lt;br /&gt;networks one machine can access to another machine. hacking go about without knowing that each network is accredited to use network facility. &lt;br /&gt;&lt;br /&gt;a) Hacking people never break the code of the company which they work for (can't say) &lt;br /&gt;&lt;br /&gt;b) Hacking is the only vulnerability of the computers for the usage of the data. (false) &lt;br /&gt;&lt;br /&gt;c) Hacking is done mostly due to the lack of computer knowledge. (false) &lt;br /&gt;&lt;br /&gt;(there will be some more questions in this one) &lt;br /&gt;&lt;br /&gt;4. Alphine tunnels are closed tunnels. in the past 30 years not even a single accident has been recorded for there is one accident &lt;br /&gt;&lt;br /&gt;in the rail road system. even in case of a fire accident it is possible to shift the passengers into adjacent wagons and even the living fire can be &lt;br /&gt;&lt;br /&gt;detected and extinguished with in the duration of 30 min. &lt;br /&gt;&lt;br /&gt;a) no accident can occur in the closed tunnels (false) &lt;br /&gt;&lt;br /&gt;b) fire is allowed to live for 30 min. (false) &lt;br /&gt;&lt;br /&gt;c) all the care that travel in the tunnels will be carried by rail shutters. (true) &lt;br /&gt;&lt;br /&gt;d) &lt;br /&gt;&lt;br /&gt;5. In the past helicopters are forced to ground or crash because of the formation of the ice on the rotors and engines. a &lt;br /&gt;&lt;br /&gt;new electronic device has been developed which can detect the watercontent in the atmosphere and warns the pilot if the temp. is below freezing temp. &lt;br /&gt;&lt;br /&gt;about the formation of the ice on the rotors and wings. &lt;br /&gt;&lt;br /&gt;a) the electronic device can avoid formation of the ice on the wings(false) &lt;br /&gt;&lt;br /&gt;b) there will be the malfunction of rotor &amp; engine because of formation of ice (true) &lt;br /&gt;&lt;br /&gt;c) the helicopters are to be crashed or down (true) &lt;br /&gt;&lt;br /&gt;d) there is only one device that warn about the formation of ice. (true) &lt;br /&gt;&lt;br /&gt;6. In the survey conducted in mumbai out of 63 newly married house wives not a single house wife felt that the husbands &lt;br /&gt;&lt;br /&gt;should take equal part in the household work as they felt they loose their power over their husbands. inspite of their careers they opt to do the kitchen &lt;br /&gt;&lt;br /&gt;work themselves after coming back to home. the wives get half as much leisure time as the husbands get at the week ends. &lt;br /&gt;&lt;br /&gt;a) housewives want the husbands to take part equally in the household(false) &lt;br /&gt;&lt;br /&gt;b) wives have half as much leisure time as the husbands have (false) &lt;br /&gt;&lt;br /&gt;c) 39% of the men will work equally in the house in cleaning and washing(can'tsay) &lt;br /&gt;&lt;br /&gt;d) &lt;br /&gt;&lt;br /&gt;7. In confucius days the technology development was less and it took weeks to communicate a message. wherein we can send it &lt;br /&gt;&lt;br /&gt;through satellite with in no time........ even with this fast developments it has become difficult to understand each other. &lt;br /&gt;&lt;br /&gt;a) people were not intelligent during confucius days (false) &lt;br /&gt;&lt;br /&gt;b) transport facilities are very much improved in now-a-days(true) &lt;br /&gt;&lt;br /&gt;c) even with the fast developments of the technology we cannot live happily. (can't say) &lt;br /&gt;&lt;br /&gt;d) we can understand the people very much with the development of communication. (false) &lt;br /&gt;&lt;br /&gt;8. Senior manager in a big company said that new japanies company invades in India for transfering the cars from industrial &lt;br /&gt;&lt;br /&gt;and warned that jobs were under threat from japanies company. They stated that increasing competence would be coupled with an inevitable down term in car &lt;br /&gt;&lt;br /&gt;market and recent rise in interest rate which has already hit demand. &lt;br /&gt;&lt;br /&gt;a) manager issue their warning after a rise in interest rate (true) &lt;br /&gt;&lt;br /&gt;b) manager told workers that japanies workers are taking jobs away from indian workers (false) &lt;br /&gt;&lt;br /&gt;c) manager said that more people want to buy new cars in future (false) &lt;br /&gt;&lt;br /&gt;d) increasing rate of interest mean that japanies firm will create into operate in the country &lt;br /&gt;&lt;br /&gt;9. Human existence is suspecious of arbitrary divide between concise and unconcise. The concise world invades shape activity &lt;br /&gt;&lt;br /&gt;of the unconcise, while many of great activity of humanity waking as whole or partially improved by dreams. Even it could be ignored that dreams &lt;br /&gt;&lt;br /&gt;precede exceptional such a dichotomy could not be drawn as the influence of dream on waking state would reamin unclear. But as yet no company rebuilt exists &lt;br /&gt;&lt;br /&gt;to record the substitute of prendtl dreaming. &lt;br /&gt;&lt;br /&gt;a) sleepy can be creative state (true) &lt;br /&gt;&lt;br /&gt;b) it is difficult to tell whether a sleeper is dream or not (true) &lt;br /&gt;&lt;br /&gt;c) if we know what babies would dream about before they are born we could show that the concise and unconcise mind influence &lt;br /&gt;&lt;br /&gt;on one another &lt;br /&gt;&lt;br /&gt;d) it is untrue claim that concise and unconcise world never impinge one another (true) &lt;br /&gt;&lt;br /&gt;10. Any one who has has systematic exam phases will have perceived a profound although not a prolif of asymmetry whether &lt;br /&gt;&lt;br /&gt;or not the exception is volitions and self control of spontoneous appeal to predict facial as symmetry as does the type of emotion potrayed. &lt;br /&gt;&lt;br /&gt;position can not displace symmetric at left side regret of a negative emotion is more common posed statement negation emotions are likely to be &lt;br /&gt;&lt;br /&gt;symmetric representation and where as symmetric occurs relative left sided statement is more common. &lt;br /&gt;&lt;br /&gt;a) any angry person is more likely to have left sided statement than some one who has smiling (true) &lt;br /&gt;&lt;br /&gt;b) an actor is likely to smile symmetric when acting (false) &lt;br /&gt;&lt;br /&gt;c) delecious facial statement will always be as symmetrical &lt;br /&gt;&lt;br /&gt;11. In the totalitariturian days, the words have very much dreviewued. In the present day, they are becoming domestic that is the &lt;br /&gt;&lt;br /&gt;words will be much more dreviewued. In that days, the words will be very much effected in political area. but at present, the words came very cheap, we &lt;br /&gt;&lt;br /&gt;can say they come free at cost. &lt;br /&gt;&lt;br /&gt;a) totalitarian society words are dreviewued (true) &lt;br /&gt;&lt;br /&gt;b) totalitarian will have to come much about words &lt;br /&gt;&lt;br /&gt;c) the art totalitarian society the words are used for the political speeches (true) &lt;br /&gt;&lt;br /&gt;d) &lt;br /&gt;&lt;br /&gt;12. There should be copyright for all arts. the rule has come that all the arts has come under one copy right society, they &lt;br /&gt;&lt;br /&gt;were use the money that come from the arts for the developments. There may be a lot of money will come from the Tagore works. we have to ask the &lt;br /&gt;&lt;br /&gt;benifiters from Tagore work to help for the development of his works. &lt;br /&gt;&lt;br /&gt;a) Tagore works are come under this copy right rule (false) &lt;br /&gt;&lt;br /&gt;b) people gives to theater and collect the money for development(can't say) &lt;br /&gt;&lt;br /&gt;c) people are free to go to the because of the copy right rule (can't say) &lt;br /&gt;&lt;br /&gt;d) we have ask the Tagore residents to help for the developments of art. (can't say) &lt;br /&gt;&lt;br /&gt;Regarding Interview: &lt;br /&gt;&lt;br /&gt;you should say everything confidentially, whatever you say tell them frankly and confidentially i.e. I will do this, I will &lt;br /&gt;&lt;br /&gt;definetely learn within this period, now I am learning etc. regarding C-language, COBOL, etc. they will ask, how can you be best suited to our TCS &lt;br /&gt;&lt;br /&gt;(or soft ware field)? &lt;br /&gt;&lt;br /&gt;ans: some of my seniors told that TCS is doing consultancy business in soft-ware field, this requires some sort of programming skills, knowledge of &lt;br /&gt;&lt;br /&gt;programming languages, in addition to this it requires a sort of aptitude skill which I am sure of possing it, this I can say &lt;br /&gt;&lt;br /&gt;based on my past academic ahcievements. Also now I am learning C, I learned up to .... (say arrays or functions) I will go through Pointers &lt;br /&gt;&lt;br /&gt;etc. also I am learning COBOL, I am preparing for TCS C, COBOL test. Why are you shifting from your mechanical &lt;br /&gt;&lt;br /&gt;field to software field? &lt;br /&gt;&lt;br /&gt;ans: I am interested in soft-ware field, because of its bright &amp; prosperous future and quick recogniton of talent leading to &lt;br /&gt;&lt;br /&gt;faster growth. They will ask about your family members and you, you just simply answer the truth frankly, they donot bouther about your &lt;br /&gt;&lt;br /&gt;father occupation i.e business studies, etc. how can you compete with a computer background student as you &lt;br /&gt;&lt;br /&gt;are a pure mechanical student? &lt;br /&gt;&lt;br /&gt;ans: actually I have taken Fortran as one of my courses in B.Tech. degree course, now here in IIT I learned --------- &lt;br /&gt;&lt;br /&gt;languages( something about what you learned in IITB), initially I found slightly difficulty to compete with a student having computers background, but now I am &lt;br /&gt;&lt;br /&gt;confident of learning programming skills as once I am in the process of learning I am sure of achieving this. here we have first about family, then about 4 &lt;br /&gt;&lt;br /&gt;minutes talk on my project then they questioned on the project, then they asked about soft-ware i.e do you know about INTERNET, Y2K problem, etc. I &lt;br /&gt;&lt;br /&gt;frankly told that I donot know about INTERNET, I know a little bit about Y2K problem and explained about Y2K problem i.e now in all computers year is &lt;br /&gt;&lt;br /&gt;indicated by two digits only, finally after the 99th year (1999) the computer will treat as 00 year(1900) instead of considering it as 2000. meanwhile one or &lt;br /&gt;&lt;br /&gt;two question on my academic record, about my refrigeration companies, etc. if you have a good topic on your project, you tell &lt;br /&gt;&lt;br /&gt;about that one and have a little knowledge on it so you can answer well their questions. &lt;br /&gt;&lt;br /&gt;20 QUESTIONS;2 MARKS EACH TIME-20MINUTES &lt;br /&gt;&lt;br /&gt;1) ONE RECTANGULAR PLATE WITH LENGTH 8INCHES,BREADTH 11 INCHES AND &lt;br /&gt;&lt;br /&gt;2 INCHES THICKNESS IS THERE.WHAT IS THE LENGTH OF THE CIRCULAR ROD WITH DIAMETER 8 INCHES AND EQUAL TO VOLUME OF &lt;br /&gt;&lt;br /&gt;RECTANGULAR PLATE? &lt;br /&gt;&lt;br /&gt;ANS: 3.5INCHES &lt;br /&gt;&lt;br /&gt;2) WHAT IS THE NUMBER OF ZEROS AT THE END OF THE PRODUCT OF THE NUMBERS FROM 1 TO 100 &lt;br /&gt;&lt;br /&gt;3) in some game 139 members have participated every time one fellow will get bye what is the number of matches to choose the &lt;br /&gt;&lt;br /&gt;champion to be held? &lt;br /&gt;&lt;br /&gt;ans: 138 &lt;br /&gt;&lt;br /&gt;4) one fast typist type some matter in 2hr and another slow typist type the same matter in 3hr. if both do combinely in how much &lt;br /&gt;&lt;br /&gt;time they will finish. &lt;br /&gt;&lt;br /&gt;ans: 1hr 12min &lt;br /&gt;&lt;br /&gt;5) in 8*8 chess board what is the total number of squares refer odel &lt;br /&gt;&lt;br /&gt;ans:204 &lt;br /&gt;&lt;br /&gt;6) falling height is proportional to square of the time. one object falls 64cm in 2sec than in 6sec from how much &lt;br /&gt;&lt;br /&gt;height the object will fall. &lt;br /&gt;&lt;br /&gt;7) gavaskar average in first 50 innings was 50 . after the 51st innings his average was 51 how many runs he made in &lt;br /&gt;&lt;br /&gt;the 51st innings &lt;br /&gt;&lt;br /&gt;8)2 oranges,3 bananas and 4 apples cost Rs.15 . 3 ornages 2 bananas 1 apple costs Rs 10. what is the cost of 3 oranges, &lt;br /&gt;&lt;br /&gt;3 bananas and 3 apples ANs Rs 15. &lt;br /&gt;&lt;br /&gt;9)in 80 coins one coin is counterfiet what is minimum number of weighings to find out counterfiet coin &lt;br /&gt;&lt;br /&gt;10)in a company 30% are supervisors and 40% &lt;br /&gt;&lt;br /&gt;employees are male if 60% of supervisors are male. what is the probability that a randomly choosen employee is a male or &lt;br /&gt;&lt;br /&gt;female? &lt;br /&gt;&lt;br /&gt;11)statement: all green are blue are blue, all blue are white conclusion: &lt;br /&gt;&lt;br /&gt;I) some blue are green II) some white are green &lt;br /&gt;&lt;br /&gt;III)some green are not white IV) all white are blue &lt;br /&gt;&lt;br /&gt;a) he has given four choices like gre type &lt;br /&gt;&lt;br /&gt;12)all teachers are students. some students are girls. this type of questions are there. we cant able to reproduce them. &lt;br /&gt;&lt;br /&gt;Apptitude &lt;br /&gt;&lt;br /&gt;--------- &lt;br /&gt;&lt;br /&gt;1)2 pencils costs 8 cents,then 5 pencils cost how much &lt;br /&gt;&lt;br /&gt;a)20c &lt;br /&gt;&lt;br /&gt;2)a work is done by the people in 24 min.one of them can do this work a lonely in 40 min.how much time required to do the &lt;br /&gt;&lt;br /&gt;same work for the second person &lt;br /&gt;&lt;br /&gt;a)60min &lt;br /&gt;&lt;br /&gt;3)a car is filled with four and half gallons of oil for full round trip.fuel is taken 1/4 gallons more in going than coming.what is the fuel &lt;br /&gt;&lt;br /&gt;consumed in coming up. &lt;br /&gt;&lt;br /&gt;a)2 gallons &lt;br /&gt;&lt;br /&gt;4)low temperature at the night in a city is 1/3 more than 1/2 hinge as higher temperature in a day.sum of the low temp and &lt;br /&gt;&lt;br /&gt;high temp is 100 c. then what is the low temp. &lt;br /&gt;&lt;br /&gt;a)40 centigrade &lt;br /&gt;&lt;br /&gt;5)a person who decided to go weekend trip should not exceed 8 hours driving in a day average spped of forward journey is &lt;br /&gt;&lt;br /&gt;40 mph.due to traffic insundays the return journey average speed is 30 mph.how far he can select a picnic spot. &lt;br /&gt;&lt;br /&gt;a)120 miles &lt;br /&gt;&lt;br /&gt;6)a sales person multiplied a number and get the answer is 3 instead of that number divided by 3.what is the &lt;br /&gt;&lt;br /&gt;answer he actually has to get. &lt;br /&gt;&lt;br /&gt;a)1/3 &lt;br /&gt;&lt;br /&gt;7)a ship started from a port and moving with I mph and another ship started from L and moving with H mph.at which place &lt;br /&gt;&lt;br /&gt;these two ships meet. &lt;br /&gt;&lt;br /&gt;a)between I and J and close to J &lt;br /&gt;&lt;br /&gt;8)a building with height D ft shadow upto G.A neighbour building with what height shadow C ft is &lt;br /&gt;&lt;br /&gt;a)B ft &lt;br /&gt;&lt;br /&gt;9)a person was fined for exceeding the speed limit by 10mph.another person was also fined for exceeding the same speed &lt;br /&gt;&lt;br /&gt;limit by twice the same if the second person was travellling at a speed of 35 mph.find the speed limit &lt;br /&gt;&lt;br /&gt;a)15mph &lt;br /&gt;&lt;br /&gt;10)a bus started from bustand at 8.00am and after 30min staying at destination it returned back to the bustand.the &lt;br /&gt;&lt;br /&gt;destination is 27 miles from the bustand the speed of the bus 50percent fast speed at what time it returns to the bustand. &lt;br /&gt;&lt;br /&gt;a)11.00am &lt;br /&gt;&lt;br /&gt;11)in a mixture,R is 2 parts,s is 1 part in order to make s to 25% of the mixture,howmuch r is to be added a)one part &lt;br /&gt;&lt;br /&gt;12)wind flows 160 miles in 330min.for 80 miles how much time required &lt;br /&gt;&lt;br /&gt;a)--- &lt;br /&gt;&lt;br /&gt;13)with 4/5 full tand vehicle travels 12 miles, with 1/3 full tand how much distance travels &lt;br /&gt;&lt;br /&gt;a)5 miles &lt;br /&gt;&lt;br /&gt;14)2 trees are there.one grows at 3/5 of the other.In 4 years total growth of the trees is 8 ft.what growth will smaller tree will have &lt;br /&gt;&lt;br /&gt;in 2 years. &lt;br /&gt;&lt;br /&gt;a)2 ft &lt;br /&gt;&lt;br /&gt;15)a storm will move with a velocity of --- towards the center in --- at the same rate how much far will it move in hrs &lt;br /&gt;&lt;br /&gt;a)8/3 or 2 2/3 &lt;br /&gt;&lt;br /&gt;15 not clear &lt;br /&gt;&lt;br /&gt;Reasoning &lt;br /&gt;&lt;br /&gt;---------- &lt;br /&gt;&lt;br /&gt;A. &lt;br /&gt;&lt;br /&gt;my father had no brothers but his 3 sisters are all married and each has 2 children.my grandfather has 2 sons. &lt;br /&gt;&lt;br /&gt;1.mu father was an only child F &lt;br /&gt;&lt;br /&gt;2.3 of my aunts have sons C &lt;br /&gt;&lt;br /&gt;3.i have six cousins on my mother's side C &lt;br /&gt;&lt;br /&gt;4. i have only one uncle F &lt;br /&gt;&lt;br /&gt;B. Senior managers in a leading company said that new japanese investment in india was transforming the car industry and &lt;br /&gt;&lt;br /&gt;warned that jobs were under threat from japanese competition. they stated that increasing competition would be coupled with an in evitable &lt;br /&gt;&lt;br /&gt;downturn i the car market and the recent rise in interst rates whaich had already hit demand. &lt;br /&gt;&lt;br /&gt;5.some senior managers said that more people will want to buy new cars in the future. F &lt;br /&gt;&lt;br /&gt;6.managers told workers that japanese workers are taking jobs away from indian workers in the car industry. F &lt;br /&gt;&lt;br /&gt;7.the managers issued their warning after a rise in interest rates. T &lt;br /&gt;&lt;br /&gt;8.the increased rate of the interest will mean that japanese firms will cease to operate in this country. C &lt;br /&gt;&lt;br /&gt;C.Researchers in mumbai have found that certain types of gallstones can be dissolved by injecting them with a gasoline additive &lt;br /&gt;&lt;br /&gt;in the form of ether the ether is injected through a tube directly into a tube directly into the gallbladder.the one day treatment works only on &lt;br /&gt;&lt;br /&gt;cholesterol-based stones.not those composed largely o calcium.however as the clolesterol stones are by far the most common typefor millions &lt;br /&gt;&lt;br /&gt;of gallstones sufferers the treatment should offer a welcome alternative tosurgery the commonest option in nost hospitals. &lt;br /&gt;&lt;br /&gt;9.injecting ether into the gallbladder dissolves most gallstones T &lt;br /&gt;&lt;br /&gt;10.surgery is the only treatment for calcium stones T &lt;br /&gt;&lt;br /&gt;11.hundreds of peoplecontains calcium stones C &lt;br /&gt;&lt;br /&gt;12.calcium stones will be cured in one day F &lt;br /&gt;&lt;br /&gt;D.organising the home can be perceived as conferring power so large numbers of women are unwilling to let go of chores,even when they have &lt;br /&gt;&lt;br /&gt;careers.a survey found that,out of 65 new marriages not one single wife expected her husband to share work equally.according &lt;br /&gt;&lt;br /&gt;to the family policy studies center 81% working wives return home to do all th cooking.The average male has nearly half as much more tfree time &lt;br /&gt;&lt;br /&gt;at weekends than his wife and the typical new father spends just 37 seconds a day talking to his baby. &lt;br /&gt;&lt;br /&gt;. 13.most working wives do not expect their husbands to share chores equally. T &lt;br /&gt;&lt;br /&gt;14.the average wife has half as much free time at weekends as her husband. F &lt;br /&gt;&lt;br /&gt;15.some women collude in the unequal distribution of house hold work because they want to retain control C &lt;br /&gt;&lt;br /&gt;16. 39% of all men with working wives do the cooking and all the cleaning F &lt;br /&gt;&lt;br /&gt;E.confucius said that to know the future we have to understand the pasthis time transport ,communications and scientific &lt;br /&gt;&lt;br /&gt;knowledge were less developed than they are today.news took weeks to travel where as today satellite links connect the continents virtually &lt;br /&gt;&lt;br /&gt;instantaneously.but our technological advances in the field of communications seem not to have improved our capacity to understand one another &lt;br /&gt;&lt;br /&gt;17.in confucius daay people were more intelligent C &lt;br /&gt;&lt;br /&gt;18.we understand each otheer better now than in confucius time because we can travel more quickly. F &lt;br /&gt;&lt;br /&gt;19.we have made great improvements in transport since confucius day T &lt;br /&gt;&lt;br /&gt;20.none of our scientific discoveries has really improved our lives C &lt;br /&gt;&lt;br /&gt;F.words in totalitarian systems have an unhealthy importance and in such states now attempting to return to a more democratic &lt;br /&gt;&lt;br /&gt;normality there has been a natural inevitable and healthy dreviewuation of words whereas previouslu a single word used in a sppech &lt;br /&gt;&lt;br /&gt;or even a play or poem could be a serious political event now the words come cheaper almost free. politics is politics again and poetry only poetry &lt;br /&gt;&lt;br /&gt;21.totalitarian state dreviewue words T &lt;br /&gt;&lt;br /&gt;22.only non-totalitarian regimes produce poetry of political importance T &lt;br /&gt;&lt;br /&gt;23.writers under totalitarian regimes have to choose their words carefully T &lt;br /&gt;&lt;br /&gt;24. the democratic political system is healthier than others C &lt;br /&gt;&lt;br /&gt;G.statistics show that millions of vehicals have beencarried by shuttle over the past 30 years through alpine tunnels &lt;br /&gt;&lt;br /&gt;withouty one ever catching tire.in the alpine tunnels.drivers and passengers sit in theirvhehicals on the shuttle trains.only one vehical has evercaught &lt;br /&gt;&lt;br /&gt;fire on the bussy french motorail equivalent system.this sort of accidents is not possible in a closed shuttle. assertinos that a vehical fire &lt;br /&gt;&lt;br /&gt;will lead to catastophe have no basis. since the resoures exit do detect,control and extingush a fire and to remove any persons present &lt;br /&gt;&lt;br /&gt;safely to an adjoning wagon, leaving any surviving fire facing rapid extinction within a wagan built to contain fire for 30 minutes. catastrophe &lt;br /&gt;&lt;br /&gt;seems very unlikely. &lt;br /&gt;&lt;br /&gt;25. if a car cauget fire in a rail shuttle, probably none would be killed. (T) &lt;br /&gt;&lt;br /&gt;26.at least one vehical has cauht fire in an alpine tunnel.(f) &lt;br /&gt;&lt;br /&gt;27.if a fire started in a wagon, it would be allowed to burn itself out in 30 minutes.(f) &lt;br /&gt;&lt;br /&gt;28.if would theoreticaly be possible for a car to cath fire in aclosed shuttle system.(F) &lt;br /&gt;&lt;br /&gt;H)every form of art is protected by copy write,uponthe expiration of whitch the property passes into the public domain and becomes freely available to any one wishing to exploit it &lt;br /&gt;&lt;br /&gt;commercialy. the time has come when all treasures shoud pass to the controled of a trust,and by this made readily available to anyone on pament of a fee or &lt;br /&gt;&lt;br /&gt;royality.the income fromthe works of tagore would alone be enarmous.these who now main financialbenifit from his genius should make some &lt;br /&gt;&lt;br /&gt;contribution to the welfare of the arts in general. &lt;br /&gt;&lt;br /&gt;29.tagore's plays are not protected by copyright. F &lt;br /&gt;&lt;br /&gt;30.tagore's decendants should be asked to make some contribution to the arts C &lt;br /&gt;&lt;br /&gt;31.instead of buying a ticket , theatregoers should pay a fee to trust for the benefit of the arts. C &lt;br /&gt;&lt;br /&gt;32. More people could go to the theatre if copy rightwere abolished C &lt;br /&gt;&lt;br /&gt;I. Hacking is a crime made possible by a relatively new technology, which one of the reasons it is often poorly understood &lt;br /&gt;&lt;br /&gt;and reported. Many computers, but no means all,are now linked togetherin networks which allow users on one computer to communicate with &lt;br /&gt;&lt;br /&gt;otherson the same network.If a computer is not networked,no manipulation of its datafrom another machine is possible.So long as users are &lt;br /&gt;&lt;br /&gt;authorised, networking is just a way of making work easier and more productive.Hacking on the other hand,is the unauthorised use of networks or &lt;br /&gt;&lt;br /&gt;unauthorised entty into the computers themselves.Most people do not need to break into the networks they use,since they are already accredited &lt;br /&gt;&lt;br /&gt;users. &lt;br /&gt;&lt;br /&gt;33. Most hackers are authorised to break into networks F &lt;br /&gt;&lt;br /&gt;34. Computers are only vulerable to the unauthorised manipulation of their data via another computer if they are networked T &lt;br /&gt;&lt;br /&gt;35.The main reason why it is relatively easy to break into a computer is that few people understand the technology. C &lt;br /&gt;&lt;br /&gt;36.Hackers do not work fot the firms whose networks they break into. T &lt;br /&gt;&lt;br /&gt;J.Although invaders represent a threat to the conservation of flora and fauna,there are two special cases in which &lt;br /&gt;&lt;br /&gt;invasion have been deliberately brought about.One is the desire to control presents bynatural predators, whichmay have to be brought in from other &lt;br /&gt;&lt;br /&gt;countries.The second is releasing organisms into the wild(or on tofarms,from which they mightescape)that are completely novel,beacause they have &lt;br /&gt;&lt;br /&gt;been genetically engineered.There is nothing intrinsically sinister about engineered organisms,but any novelty must be regarded as a &lt;br /&gt;&lt;br /&gt;potential invader. &lt;br /&gt;&lt;br /&gt;37.Pest control does not threat the conservation of flora and fauna. T &lt;br /&gt;&lt;br /&gt;38.Genetically engineered organisms must always be regarded as poten- tially dangerous. F &lt;br /&gt;&lt;br /&gt;39.Natural predators are work harmful than pests.T &lt;br /&gt;&lt;br /&gt;40.Genetically engineered organisms escaped from the farm,they will be pose a threat to wildlife. T &lt;br /&gt;&lt;br /&gt;K.electronics technology is coming to the rescue of helicopters which can be grounded or crash in icy conditions the &lt;br /&gt;&lt;br /&gt;machines are especially vulnerable to the build up of ice on both their rotors and engine air intake when operating in cold damp conditions.the &lt;br /&gt;&lt;br /&gt;problem is 2 fold ice increases the weight and the build upp makes the aerofoils less efficient .now at last a detector has been &lt;br /&gt;&lt;br /&gt;devised which the company hopes will mean safer flightsand less frequent grounding.unlike most devices in use at present it can detect the liquid &lt;br /&gt;&lt;br /&gt;water content of cloud above freezing level.so the warning is ginven before the potential hazard is encountered. &lt;br /&gt;&lt;br /&gt;39.an electronic device has been invented which will prevent the build up of ice on helicopter rotors F &lt;br /&gt;&lt;br /&gt;40.helicopters are sometimes grounded because incold damp weather their engine air intakes and rotors malfuntion &lt;br /&gt;&lt;br /&gt;owing to the formatrion of ice. T &lt;br /&gt;&lt;br /&gt;41.only one device can at present detect theliquid water content of cloud above freezing level C &lt;br /&gt;&lt;br /&gt;42.in future fewer helicopters will crash or have to grounded T &lt;br /&gt;&lt;br /&gt;L.anyone whos has systematically examined faceswill have perceived a prepondreance although not a proliferation of &lt;br /&gt;&lt;br /&gt;asymmtry.whether or not the statement is volitinal and self controlled orspontaneous appears to predict facial asymmetry as does the type of &lt;br /&gt;&lt;br /&gt;emotion protrayed.positive emotions are usually displayed symmetrically although a left sided representation of a negative emotion is more &lt;br /&gt;&lt;br /&gt;common.posed statements and negative emotions are less likely to be symmetrically represented. &lt;br /&gt;&lt;br /&gt;43.an angry person is more likely to have a lopsided statement than someone who is smiling T &lt;br /&gt;&lt;br /&gt;44.a deliberately assumed facial statement will always be asymmetrical F &lt;br /&gt;&lt;br /&gt;45.an actor is likely to smile symmetrically when acting C &lt;br /&gt;&lt;br /&gt;46.more self conscious people are likely to have less asymmetrically facial statements than those who are less aware of &lt;br /&gt;&lt;br /&gt;themselves T &lt;br /&gt;&lt;br /&gt;M. human existence is not susceptible of arbitary division between consciousness and unconsciousness.the conscious &lt;br /&gt;&lt;br /&gt;world invades and shapes the activities of the unconscious while many of the great achievements of humanity's waking hours were wholly or partly &lt;br /&gt;&lt;br /&gt;inspires bu dreams .even if it could be argued that dreams precede experience such a dichotomy could not be drawn as the influence of dreaming on the &lt;br /&gt;&lt;br /&gt;waking state would remain unclear but as yet no common vocabulary exists to record the substance of prenatal dreaming &lt;br /&gt;&lt;br /&gt;47.sleep can be a creative state. T &lt;br /&gt;&lt;br /&gt;48.it is difficult to tell whether a sleeper is dr3eaming or not C &lt;br /&gt;&lt;br /&gt;49. if we knew what babies dream about before they are born we could show that conscious and unconscious mond influence &lt;br /&gt;&lt;br /&gt;one another F &lt;br /&gt;&lt;br /&gt;50. it is untrue to claim that the conscious and unconscious worlds never impinge on one another F &lt;br /&gt;&lt;br /&gt;New twenty questions &lt;br /&gt;&lt;br /&gt;-------------------- &lt;br /&gt;&lt;br /&gt;N. disease x succeeds lung disease.it may also occur helthy persons the person looks healthier from outside.the number of &lt;br /&gt;&lt;br /&gt;red blood cells in the blood increased and this leads to thickness fo the blood as a result of which blood lacks inside the vessels .the person &lt;br /&gt;&lt;br /&gt;suffers heart attact. one possible solution is to remove a litre of blood or to control the growth of red blood cells. &lt;br /&gt;&lt;br /&gt;53.lung disease precedes the disease x T &lt;br /&gt;&lt;br /&gt;54.a person who gets heart attack always has disease x F &lt;br /&gt;&lt;br /&gt;55.people suffering from disease x look healthier C &lt;br /&gt;&lt;br /&gt;56.one litre of blood must be removed to cure this T &lt;br /&gt;&lt;br /&gt;O.a starfire engine has been designed to work onlyfor unleaded petrol.this crossfire engine is designed for both 1500 and `1800 cc &lt;br /&gt;&lt;br /&gt;they internally and externally look alike except for the difference in wheels ----,2000 cc is differentr from the above.two in terms of 3 &lt;br /&gt;&lt;br /&gt;features --- ----- ---- on the bumber. &lt;br /&gt;&lt;br /&gt;57.the engine run only on the leaded petrol F &lt;br /&gt;&lt;br /&gt;58.1500 and 1800 cc look alike F &lt;br /&gt;&lt;br /&gt;59.apart from cross fire engines they manfacture ---- F &lt;br /&gt;&lt;br /&gt;60.internal structure of the 2000cc is same as that of both 1500 and 1800 cc C &lt;br /&gt;&lt;br /&gt;P.a weed killer to kill the weeds has beendeveloped.the weed killer solution has to be applied to the growing tips. it &lt;br /&gt;&lt;br /&gt;need not to be appliedto all the tips.the solution has to be prepared in a can in one hand and the plants are taken in the other hand with a &lt;br /&gt;&lt;br /&gt;glove and are immersed in the solution if we cannot immerse them in the solution the solution can be applied to the roots with a brush.it used &lt;br /&gt;&lt;br /&gt;without care it can pose danger to other plants. &lt;br /&gt;&lt;br /&gt;61.the solutions has to applied to growing leaves &lt;br /&gt;&lt;br /&gt;62.to use the weedkiller first take the plants in the cn as then pour the solution into it. &lt;br /&gt;&lt;br /&gt;63.it is sufficient to apply it only to some roots &lt;br /&gt;&lt;br /&gt;64.it effects to the other plants. &lt;br /&gt;&lt;br /&gt;Q. &lt;br /&gt;&lt;br /&gt;65.flora 3 sofa set gives value to ur money &lt;br /&gt;&lt;br /&gt;66.padding is used to increase durablity &lt;br /&gt;&lt;br /&gt;67.flora will made all other products other than sofa sets &lt;br /&gt;&lt;br /&gt;68.can we use wood as ----- T &lt;br /&gt;&lt;br /&gt;R. &lt;br /&gt;&lt;br /&gt;69.the length of the cracker will be less than 12 cm F &lt;br /&gt;&lt;br /&gt;70.the center part of the crackers is 4cm T &lt;br /&gt;&lt;br /&gt;--------------------------------------------------------------------------- &lt;br /&gt;&lt;br /&gt;In reasoning test at the end of each question we &lt;br /&gt;&lt;br /&gt;indicated &lt;br /&gt;&lt;br /&gt;F,T,C &lt;br /&gt;&lt;br /&gt;where F represents False &lt;br /&gt;&lt;br /&gt;" T " True &lt;br /&gt;&lt;br /&gt;" C " cant say. &lt;br /&gt;&lt;br /&gt;--------------------------------------------------------------------------- &lt;br /&gt;&lt;br /&gt;openion paper: &lt;br /&gt;&lt;br /&gt;---------------- &lt;br /&gt;&lt;br /&gt;Q#1.How important are the following criteria for the selection of a fresh graduate during campus interviews? &lt;br /&gt;&lt;br /&gt;(Please rank them according to your preference.) &lt;br /&gt;&lt;br /&gt;Criteria &lt;br /&gt;&lt;br /&gt;Rank &lt;br /&gt;&lt;br /&gt;1.Academic Performance/Consistency - 1 &lt;br /&gt;&lt;br /&gt;2.TechnicalAptitude/Fundamentals - 3 &lt;br /&gt;&lt;br /&gt;3.Communication Skills -2 &lt;br /&gt;&lt;br /&gt;4.Leadership Qualities-5 &lt;br /&gt;&lt;br /&gt;5.Extracurricular Activities &lt;br /&gt;&lt;br /&gt;6.Industrial Training and Project Work-4 &lt;br /&gt;&lt;br /&gt;7.General Awareness &lt;br /&gt;&lt;br /&gt;8.Overall Personality &lt;br /&gt;&lt;br /&gt;9.Dress sense and Appearance &lt;br /&gt;&lt;br /&gt;10. Any other (please specify): &lt;br /&gt;&lt;br /&gt;Q#2.What trait of a prospective employee do you dislike the most during an interview ? &lt;br /&gt;&lt;br /&gt;1.Arrogance -1 &lt;br /&gt;&lt;br /&gt;2.Overconfidence-3 &lt;br /&gt;&lt;br /&gt;3.Verbosity &lt;br /&gt;&lt;br /&gt;4.Nervousness &lt;br /&gt;&lt;br /&gt;5.Delay in responding &lt;br /&gt;&lt;br /&gt;6.Poor grooming-2 &lt;br /&gt;&lt;br /&gt;7.Any other (Please specify): &lt;br /&gt;&lt;br /&gt;Q#3.What qualities do you think will make a fresh graduate succeed in your organisation ? (Please rank according &lt;br /&gt;&lt;br /&gt;toyour preference ) &lt;br /&gt;&lt;br /&gt;Quality &lt;br /&gt;&lt;br /&gt;Rank &lt;br /&gt;&lt;br /&gt;1.Interpersonal Skills-3 &lt;br /&gt;&lt;br /&gt;2.Getting along with seniors/colleagues-5 &lt;br /&gt;&lt;br /&gt;3.Honesty and Ethics-6 &lt;br /&gt;&lt;br /&gt;4.Hard work-4 &lt;br /&gt;&lt;br /&gt;5.Innovation-1 &lt;br /&gt;&lt;br /&gt;6.Any other (Please specify ): FLEXIBILITY - 2. ALL ARE EQUALLY IMPORTANT. &lt;br /&gt;&lt;br /&gt;Q#4.On a scale of 1-10,how would you rate the importance of performance appraisals in the career of a fresh graduate in your organization ? 8 &lt;br /&gt;&lt;br /&gt;Q#5.Frequent job hops can helpa person reach the higher echelons of a corporate world faster. In your opinion that is (Please tick ) &lt;br /&gt;&lt;br /&gt;1.Right &lt;br /&gt;&lt;br /&gt;2.Wrong * &lt;br /&gt;&lt;br /&gt;3.Debatable &lt;br /&gt;&lt;br /&gt;Q#6.Does a recruit from an institution of higher repute hold an edge over his rivals in the corporate world? &lt;br /&gt;&lt;br /&gt;1.Yes &lt;br /&gt;&lt;br /&gt;2.No &lt;br /&gt;&lt;br /&gt;3.Depends on performance &lt;br /&gt;&lt;br /&gt;Q#7.In the event of an interviewee not knowing the answer to a question put to him, it is best for him to &lt;br /&gt;&lt;br /&gt;1.Admit it * &lt;br /&gt;&lt;br /&gt;2.Try to talk his way out of the situation &lt;br /&gt;&lt;br /&gt;Q#8.Does a gap in education (for the preparation or otherwise) in any way hamper the chances of a new recruit to make it into your organisation? &lt;br /&gt;&lt;br /&gt;1.Yes &lt;br /&gt;&lt;br /&gt;2.No &lt;br /&gt;&lt;br /&gt;NEITHER .IT DEPENDS ON THE GAP. &lt;br /&gt;&lt;br /&gt;Q#9.Does disciplinary action taken against a student influence your selection of a prospectiveemployee in any way? If yes, to what extent ? NO. &lt;br /&gt;&lt;br /&gt;Q#10.To what extent is technical education important in the work environment?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-8664998250362131704?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/8664998250362131704/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_8286.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/8664998250362131704'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/8664998250362131704'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_8286.html' title='tcs'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-7904242933253405172</id><published>2009-01-31T03:12:00.000-08:00</published><updated>2009-01-31T03:15:50.344-08:00</updated><title type='text'>tcs</title><content type='html'>Vocabulary &lt;br /&gt;---------- &lt;br /&gt;Admonish-usurp,meager-scant,alienate-estrange,merry-gay,brim-boarder,obstinate-stubbourn &lt;br /&gt;solicit-urge,subside-wane,furtive-stealthy,misery-distress,volume-quantity, &lt;br /&gt;veer-diverge,stiffle-snithy,adhesive-sticky,hamper-obstruct,belief-co &lt;br /&gt;nviction,lament-wail,incentive-spur,innert-passive,baffle-frustrate,confiscate-appropriate,c &lt;br /&gt;overt-crave,caprice-whim,concur-acquiesce,cargo-frieght,dispel-scatter,divulge-reveal,tomerit-to &lt;br /&gt;deserve,discreation-prudence,emancipate-liberate,efface-obliterate, &lt;br /&gt;&lt;br /&gt;hover-linger,heap-to &lt;br /&gt;pile,instigate-incite,latitude-scope,latent-potential,lethargy-stupor &lt;br /&gt;momentary-transient,pretentious-ostentatious,embrace-effigy &lt;br /&gt;&lt;br /&gt;Apptitude &lt;br /&gt;--------- &lt;br /&gt;1)2 pencils costs 8 cents,then 5 pencils cost how much &lt;br /&gt;a)20c &lt;br /&gt;2)a work is done by the people in 24 min.one of them can do this work &lt;br /&gt;a lonely in 40 min.how much time required to do the same work for the &lt;br /&gt;second person &lt;br /&gt;a)60min &lt;br /&gt;3)a car is filled with four and half gallons of oil for full round &lt;br /&gt;trip.fuel is taken 1/4 gallons more in going than coming.what is the fuel &lt;br /&gt;consumed in coming up. &lt;br /&gt;a)2 gallons &lt;br /&gt;4)low temperature at the night in a city is 1/3 more than 1/2 hinge as &lt;br /&gt;higher temperature in a day.sum of the low temp and high temp is 100 c. &lt;br /&gt;then what is the low temp. &lt;br /&gt;a)40 centigrade &lt;br /&gt;5)a person who decided to go weekend trip should not exceed 8 hours &lt;br /&gt;driving in a day average spped of forward journey is 40 mph.due to &lt;br /&gt;traffic insundays the return journey average speed is 30 mph.how far he &lt;br /&gt;can select a picnic spot. &lt;br /&gt;a)120 miles &lt;br /&gt;6)a sales person multiplied a number and get the answer is 3 &lt;br /&gt;instead of that number divided by 3.what is the answer he actually &lt;br /&gt;has to get. &lt;br /&gt;a)1/3 &lt;br /&gt;7)a ship started from a port and moving with I mph and another ship &lt;br /&gt;started from L and moving with H mph.at which place these two ships &lt;br /&gt;meet. &lt;br /&gt;a)between I and J and close to J &lt;br /&gt;8)a building with height D ft shadow upto G.A neighbour building &lt;br /&gt;with what height shadow C ft is &lt;br /&gt;a)B ft &lt;br /&gt;9)a person was fined for exceeding the speed limit by 10mph.another &lt;br /&gt;person was also fined for exceeding the same speed limit by twice the same &lt;br /&gt;if the second person was travellling at a speed of 35 mph.find the &lt;br /&gt;speed limit &lt;br /&gt;a)15mph &lt;br /&gt;10)a bus started from bustand at 8.00am and after 30min staying at &lt;br /&gt;destination it returned back to the bustand.the destination is 27 &lt;br /&gt;miles from the bustand the speed of the bus 50percent fast speed at what &lt;br /&gt;time it returns to the bustand. &lt;br /&gt;a)11.00am &lt;br /&gt;11)in a mixture,R is 2 parts,s is 1 part &lt;br /&gt;in order to make s to 25% of the &lt;br /&gt;mixture,howmuch r is to be added &lt;br /&gt;a)one part &lt;br /&gt;12)wind flows 160 miles in 330min.for 80 miles how much time required &lt;br /&gt;a)--- &lt;br /&gt;13)with 4/5 full tand vehicle travels 12 miles, with 1/3 full tand how &lt;br /&gt;much distance travels &lt;br /&gt;a)5 miles &lt;br /&gt;14)2 trees are there.one grows at 3/5 of the other.In 4 years &lt;br /&gt;total growth of the trees is 8 ft.what growth will smaller tree will have &lt;br /&gt;in 2 years. &lt;br /&gt;a)2 ft &lt;br /&gt;15)a storm will move with a velocity of --- towards the center in --- &lt;br /&gt;at the same rate how much far will it move in hrs &lt;br /&gt;a)8/3 or 2 2/3 &lt;br /&gt;15 not clear &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Reasoning &lt;br /&gt;---------- &lt;br /&gt;A. &lt;br /&gt;my father had no brothers but his 3 sisters are all married and each has 2 &lt;br /&gt;children.my grandfather has 2 sons. &lt;br /&gt;1.mu father was an only child F &lt;br /&gt;2.3 of my aunts have sons C &lt;br /&gt;3.i have six cousins on my mother's side C &lt;br /&gt;4. i have only one uncle F &lt;br /&gt;&lt;br /&gt;B. &lt;br /&gt;Senior managers in a leading company said that new japanese investment &lt;br /&gt;in india was transforming the car industry and warned that jobs were &lt;br /&gt;under threat from japanese competition. they stated that increasing &lt;br /&gt;competition would be coupled with an in evitable downturn i the car market &lt;br /&gt;and the recent rise in interst rates whaich had already hit demand. &lt;br /&gt;5.some senior managers said that more people will want to buy new cars in &lt;br /&gt;the future. F &lt;br /&gt;6.managers told workers that japanese workers are taking jobs away from &lt;br /&gt;indian workers in the car industry. F &lt;br /&gt;7.the managers issued their warning after a rise in interest rates. T &lt;br /&gt;8.the increased rate of the interest will mean that japanese firms will &lt;br /&gt;cease to operate in this country. C &lt;br /&gt;&lt;br /&gt;C.Researchers in mumbai have found that certain types of gallstones can be &lt;br /&gt;dissolved by injecting them with a gasoline additive in the form of ether &lt;br /&gt;the ether is injected through a tube directly into a tube directly into &lt;br /&gt;the gallbladder.the one day treatment works only on cholesterol-based &lt;br /&gt;stones.not those composed largely o calcium.however as the clolesterol &lt;br /&gt;stones are by far the most common typefor millions of gallstones &lt;br /&gt;sufferers the treatment should offer a welcome alternative tosurgery &lt;br /&gt;the commonest option in nost hospitals. &lt;br /&gt;9.injecting ether into the gallbladder dissolves most gallstones T &lt;br /&gt;10.surgery is the only treatment for calcium stones T &lt;br /&gt;11.hundreds of peoplecontains calcium stones C &lt;br /&gt;12.calcium stones will be cured in one day F &lt;br /&gt;&lt;br /&gt;D.organising the home can be perceived as conferring power so large &lt;br /&gt;numbers of women are unwilling to let go of chores,even when they have &lt;br /&gt;careers.a survey found that,out of 65 new marriages not one single wife &lt;br /&gt;expected her husband to share work equally.according to the family policy &lt;br /&gt;studies center 81% working wives return home to do all th cooking.The &lt;br /&gt;average male has nearly half as much more tfree time at weekends &lt;br /&gt;than his wife and the typical new father spends just 37 seconds a day &lt;br /&gt;talking to his baby. &lt;br /&gt;13.most working wives do not expect their husbands to share chores &lt;br /&gt;equally. T &lt;br /&gt;14.the average wife has half as much free &lt;br /&gt;time at weekends as her husband. &lt;br /&gt;F &lt;br /&gt;15.some women collude in the unequal distribution of house hold work &lt;br /&gt;because they want to retain control C &lt;br /&gt;16. 39% of all men with working wives do &lt;br /&gt;the cooking and all the cleaning &lt;br /&gt;F &lt;br /&gt;&lt;br /&gt;E.confucius said that to know the future &lt;br /&gt;we have to understand the pasthis &lt;br /&gt;time transport ,communications and scientific knowledge were less &lt;br /&gt;developed than they are today.news took weeks to travel where as today &lt;br /&gt;satellite links connect the continents virtually instantaneously.but &lt;br /&gt;our technological advances in the field of &lt;br /&gt;communications seem not to have &lt;br /&gt;improved our capacity to understand one another &lt;br /&gt;17.in confucius daay people were more intelligent C &lt;br /&gt;18.we understand each otheer better now than in confucius time because &lt;br /&gt;we can travel more quickly. F &lt;br /&gt;19.we have made great improvements in transport since confucius day T &lt;br /&gt;20.none of our scientific discoveries has really improved our lives C &lt;br /&gt;&lt;br /&gt;F.words in totalitarian systems have an unhealthy importance and in such &lt;br /&gt;states now attempting to return to a more democratic normality there has &lt;br /&gt;been a natural inevitable and healthy devaluation of words whereas &lt;br /&gt;previouslu a single word used in a sppech &lt;br /&gt;or even a play or poem could be &lt;br /&gt;a serious political event now the words come cheaper almost free. &lt;br /&gt;politics is politics again and poetry only poetry &lt;br /&gt;21.totalitarian state devalue words T &lt;br /&gt;22.only non-totalitarian regimes produce poetry of political importance &lt;br /&gt;T &lt;br /&gt;23.writers under totalitarian regimes have to choose their words care &lt;br /&gt;fully T &lt;br /&gt;24. the democratic political system is healthier than others C &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;G.statistics show that millions of vehicals have beencarried by shuttle &lt;br /&gt;over the past 30 years through alpine tunnels withouty one ever catching &lt;br /&gt;tire.in the alpine tunnels.drivers and passengers sit in theirvhehicals on &lt;br /&gt;the shuttle trains.only one vehical has evercaught fire on the bussy &lt;br /&gt;french motorail equivalent system.this sort of accidents is not possible &lt;br /&gt;in a closed shuttle. assertinos that a vehical fire will lead to &lt;br /&gt;catastophe have no basis. since the resoures exit do detect,control and &lt;br /&gt;extingush a fire and to remove any persons present safely to an adjoning &lt;br /&gt;wagon, leaving any surviving fire facing rapid extinction within a wagan &lt;br /&gt;built to contain fire for 30 minutes. catastrophe seems very unlikely. &lt;br /&gt;&lt;br /&gt;25. if a car cauget fire in a rail shuttle, probably none would be killed. &lt;br /&gt;&lt;br /&gt;(T) &lt;br /&gt;26.at least one vehical has cauht fire in an alpine tunnel.(f) &lt;br /&gt;27.if a fire started in a wagon, it would be allowed to burn itself out in &lt;br /&gt;30 minutes.(f) &lt;br /&gt;28.if would theoreticaly be possible for a car to cath fire in aclosed &lt;br /&gt;shuttle system.(F) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;H)every form of art is protected by copy write,upon the expiration &lt;br /&gt;&lt;br /&gt;of whitch the property passes into the public domain and becomes freely &lt;br /&gt;available to any one wishing to exploit it commercialy. the time has come &lt;br /&gt;when all treasures shoud pass to the controled of a trust,and by this made &lt;br /&gt;readily available to anyone on pament of a fee or royality.the income &lt;br /&gt;fromthe works of tagore would alone be enarmous.these who now main &lt;br /&gt;financialbenifit from his genius should make some contribution to the &lt;br /&gt;welfare of the arts in general. &lt;br /&gt;29.tagore's plays are not protected by copyright. F &lt;br /&gt;30.tagore's decendants should be asked to make some contribution to the &lt;br /&gt;arts C &lt;br /&gt;31.instead of buying a ticket , theatregoers should pay a fee to trust for &lt;br /&gt;the benefit of the arts. C &lt;br /&gt;32. More people could go to the theatre if copy rightwere abolished C &lt;br /&gt;&lt;br /&gt;I. Hacking is a crime made possible by a relatively new technology, &lt;br /&gt;which one of the reasons it is often poorly understood and reported. &lt;br /&gt;Many computers, but no means all,are now linked togetherin networks which &lt;br /&gt;allow users on one computer to communicate with others on the same &lt;br /&gt;network.If a computer is not networked,no manipulation of its datafrom &lt;br /&gt;another machine is possible.So long as users are authorised, networking &lt;br /&gt;is just a way of making work easier and more productive.Hacking on the &lt;br /&gt;other hand,is the unauthorised use of networks or unauthorised entty &lt;br /&gt;into the computers themselves.Most people do not need to break into the &lt;br /&gt;networks they use,since they are already accredited users. &lt;br /&gt;33. Most hackers are authorised to break into networks F &lt;br /&gt;34. Computers are only vulerable to the unauthorised manipulation of &lt;br /&gt;their data via another computer if they are networked T &lt;br /&gt;35.The main reason why it is relatively easy to break into a computer is &lt;br /&gt;that few people understand the technology. C &lt;br /&gt;36.Hackers do not work fot the firms whose networks they break into. T &lt;br /&gt;&lt;br /&gt;J.Although invaders represent a threat to the conservation of flora and &lt;br /&gt;fauna,there are two special cases in which &lt;br /&gt;invasion have been deliberately &lt;br /&gt;brought about.One is the desire to control presents by natural predators, &lt;br /&gt;whichmay have to be brought in from other countries.The second is &lt;br /&gt;releasing organisms into the wild(or on to farms,from which they might &lt;br /&gt;escape)that are completely novel,beacause they have been genetically &lt;br /&gt;engineered.There is nothing intrinsically sinister about engineered &lt;br /&gt;organisms,but any novelty must be regarded as a potential invader. &lt;br /&gt;37.Pest control does not threat the conservation of flora and fauna. T &lt;br /&gt;38.Genetically engineered organisms must always be regarded as poten- &lt;br /&gt;tially dangerous. F &lt;br /&gt;39.Natural predators are work harmful than pests.T &lt;br /&gt;40.Genetically engineered organisms escaped from the farm,they will be &lt;br /&gt;pose a threat to wildlife. T &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;K.electronics technology is coming to the &lt;br /&gt;rescue of helicopters which can &lt;br /&gt;be grounded or crash in icy conditions the machines are especially &lt;br /&gt;vulnerable to the build up of ice on both their rotors and engine air &lt;br /&gt;intake when operating in cold damp conditions.the problem is 2 fold &lt;br /&gt;ice increases the weight and the build upp makes the aerofoils &lt;br /&gt;less efficient .now at last a detector has been devised which the company &lt;br /&gt;hopes will mean safer flightsand less frequent grounding.unlike most &lt;br /&gt;devices in use at present it can detect the liquid water content of cloud &lt;br /&gt;above freezing level.so the warning is ginven before the potential hazard &lt;br /&gt;is encountered. &lt;br /&gt;&lt;br /&gt;39.an electronic device has been invented which will prevent the build &lt;br /&gt;up of ice on helicopter rotors F &lt;br /&gt;40.helicopters are sometimes grounded because in cold damp weather their &lt;br /&gt;engine air intakes and rotors malfuntion &lt;br /&gt;owing to the formatrion of ice. &lt;br /&gt;T &lt;br /&gt;41.only one device can at present detect the liquid water content of &lt;br /&gt;cloud above freezing level C &lt;br /&gt;42.in future fewer helicopters will crash or have to grounded T &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;L.anyone whos has systematically examined faces will have perceived a &lt;br /&gt;prepondreance although not a proliferation of asymmtry.whether or not &lt;br /&gt;the expression is volitinal and self controlled or spontaneous appears &lt;br /&gt;to predict facial asymmetry as does the type of emotion protrayed.positive &lt;br /&gt;emotions are usually displayed symmetrically although a left sided &lt;br /&gt;representation of a negative emotion is more common.posed expressions and &lt;br /&gt;negative emotions are less likely to be symmetrically represented. &lt;br /&gt;43.an angry person is more likely to have a lopsided expression than &lt;br /&gt;someone who is smiling T &lt;br /&gt;44.a deliberately assumed facial expression will always be asymmetrical F &lt;br /&gt;45.an actor is likely to smile symmetrically when acting C &lt;br /&gt;46.more self conscious people are likely to have less asymmetrically &lt;br /&gt;facial expressions than those who are less aware of themselves T &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;M. human existence is not susceptible of arbitary division between &lt;br /&gt;consciousness and unconsciousness.the conscious world invades and shapes &lt;br /&gt;the activities of the unconscious while many of the great achievements of &lt;br /&gt;humanity's waking hours were wholly or partly inspires bu dreams .even if &lt;br /&gt;it could be argued that dreams precede experience such a dichotomy could &lt;br /&gt;not be drawn as the influence of dreaming on the waking state would remain &lt;br /&gt;unclear but as yet no common vocabulary exists to record the substance &lt;br /&gt;of prenatal dreaming &lt;br /&gt;47.sleep can be a creative state. T &lt;br /&gt;48.it is difficult to tell whether a sleeper is dr3eaming or not C &lt;br /&gt;49. if we knew what babies dream about before they are born we could &lt;br /&gt;show that conscious and unconscious mond influence one another F &lt;br /&gt;50. it is untrue to claim that the conscious and unconscious worlds never &lt;br /&gt;impinge on one another F &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;New twenty questions &lt;br /&gt;-------------------- &lt;br /&gt;N. disease x succeeds lung disease.it may also occur helthy persons the &lt;br /&gt;person looks healthier from outside.the number of red blood cells in &lt;br /&gt;the blood increased and this leads to thickness fo the blood as a result &lt;br /&gt;of which blood lacks inside the vessels .the person suffers heart attact. &lt;br /&gt;one possible solution is to remove a litre of blood or to control the &lt;br /&gt;growth of red blood cells. &lt;br /&gt;53.lung disease precedes the disease x T &lt;br /&gt;54.a person who gets heart attack always has disease x F &lt;br /&gt;55.people suffering from disease x look healthier C &lt;br /&gt;56.one litre of blood must be removed to cure this T &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;O.a starfire engine has been designed to work only for unleaded &lt;br /&gt;petrol.this crossfire engine is designed for both 1500 and `1800 cc &lt;br /&gt;they internally and externally look alike except for the difference &lt;br /&gt;in wheels ----,2000 cc is differentr from the above.two in terms of 3 &lt;br /&gt;features --- ----- ---- on the bumber. &lt;br /&gt;57.the engine run only on the leaded petrol F &lt;br /&gt;58.1500 and 1800 cc look alike F &lt;br /&gt;59.apart from cross fire engines they manfacture ---- F &lt;br /&gt;60.internal structure of the 2000cc is same as that of both 1500 and &lt;br /&gt;1800 cc C &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;P.a weed killer to kill the weeds has been developed.the weed killer &lt;br /&gt;solution has to be applied to the growing tips. it need not to be applied &lt;br /&gt;to all the tips.the solution has to be prepared in a can in one hand &lt;br /&gt;and the plants are taken in the other hand with a glove and are immersed &lt;br /&gt;in the solution if we cannot immerse them in the solution the solution &lt;br /&gt;can be applied to the roots with a brush.it used without care it can &lt;br /&gt;pose danger to other plants. &lt;br /&gt;61.the solutions has to applied to growing leaves &lt;br /&gt;62.to use the weedkiller first take the plants in the cn as then pour the &lt;br /&gt;solution into it. &lt;br /&gt;63.it is sufficient to apply it only to some roots &lt;br /&gt;64.it effects to the other plants. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Q. &lt;br /&gt;65.flora 3 sofa set gives value to ur money &lt;br /&gt;66.padding is used to increase durablity &lt;br /&gt;67.flora will made all other products other than sofa sets &lt;br /&gt;68.can we use wood as ----- T &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;R. &lt;br /&gt;&lt;br /&gt;69.the length of the cracker will be less than 12 cm F &lt;br /&gt;70.the center part of the crackers is 4cm T &lt;br /&gt;&lt;br /&gt;------------------------------------------------------------------------------- &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;these are the questions given from tcs paper &lt;br /&gt;dont answer all questions. &lt;br /&gt;&lt;br /&gt;In reasoning test at the end of each question we indicated &lt;br /&gt;F,T,C &lt;br /&gt;where F represents False &lt;br /&gt;" T " True &lt;br /&gt;" C " cant say. &lt;br /&gt;------------------------------------------------------------------------------ &lt;br /&gt;Aafter this test,psychmetry test will be there.dont bother about it. &lt;br /&gt;it is just &lt;br /&gt;formal.they will not consider it.But answer all 150 questions in 30 &lt;br /&gt;minutes &lt;br /&gt;&lt;br /&gt;Here is Texas paper for you. &lt;br /&gt;in this paper there was 20 questions as follows in 60 minutes . &lt;br /&gt;second part consists of 36 que. in 30 minutes all questions are &lt;br /&gt;diagramatical.(figurs).. &lt;br /&gt;&lt;br /&gt;1. if a 5-stage pipe-line is flushed and then we have to execute 5 and &lt;br /&gt;12 &lt;br /&gt;instructions respectively then no. of cycles will be &lt;br /&gt;a. 5 and 12 &lt;br /&gt;b. 6 and 13 &lt;br /&gt;c. 9 and 16 &lt;br /&gt;d.none &lt;br /&gt;&lt;br /&gt;2. k-map &lt;br /&gt;&lt;br /&gt;ab &lt;br /&gt;---------- &lt;br /&gt;c 1 x 0 0 &lt;br /&gt;1 x 0 x &lt;br /&gt;&lt;br /&gt;solve it &lt;br /&gt;&lt;br /&gt;a. A.B &lt;br /&gt;B. ~A &lt;br /&gt;C. ~B &lt;br /&gt;D. A+B &lt;br /&gt;&lt;br /&gt;3.CHAR A[10][15] AND INT B[10][15] IS DEFINED &lt;br /&gt;WHAT'S THE ADDRESS OF A[3][4] AND B[3][4] &lt;br /&gt;IF ADDRESS OD A IS OX1000 AND B IS 0X2000 &lt;br /&gt;&lt;br /&gt;A. 0X1030 AND 0X20C3 &lt;br /&gt;B. OX1031 AND OX20C4 &lt;br /&gt;AND SOME OTHERS.. &lt;br /&gt;&lt;br /&gt;4. int f(int *a) &lt;br /&gt;{ &lt;br /&gt;int b=5; &lt;br /&gt;a=&amp;b; &lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;main() &lt;br /&gt;{ &lt;br /&gt;int i; &lt;br /&gt;printf("\n %d",i); &lt;br /&gt;f(&amp;i); &lt;br /&gt;printf("\n %d",i); &lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;what's the output . &lt;br /&gt;&lt;br /&gt;1.10,5 &lt;br /&gt;2,10,10 &lt;br /&gt;c.5,5 &lt;br /&gt;d. none &lt;br /&gt;&lt;br /&gt;5. main() &lt;br /&gt;{ &lt;br /&gt;int i; &lt;br /&gt;fork(); &lt;br /&gt;fork(); &lt;br /&gt;fork(); &lt;br /&gt;printf("----"); &lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;how many times the printf will be executed . &lt;br /&gt;a.3 &lt;br /&gt;b. 6 &lt;br /&gt;c.5 &lt;br /&gt;d. 8 &lt;br /&gt;&lt;br /&gt;6. &lt;br /&gt;void f(int i) &lt;br /&gt;{ &lt;br /&gt;int j; &lt;br /&gt;for (j=0;j&lt;16;j++) &lt;br /&gt;{ &lt;br /&gt;if (i &amp; (0x8000j)) &lt;br /&gt;printf("1"); &lt;br /&gt;else &lt;br /&gt;printf("0"); &lt;br /&gt;} &lt;br /&gt;} &lt;br /&gt;what's the purpose of the program &lt;br /&gt;&lt;br /&gt;a. its output is hex representation of i &lt;br /&gt;b. bcd &lt;br /&gt;c. binary &lt;br /&gt;d. decimal &lt;br /&gt;&lt;br /&gt;7.#define f(a,b) a+b &lt;br /&gt;#define g(a,b) a*b &lt;br /&gt;&lt;br /&gt;main() &lt;br /&gt;{ &lt;br /&gt;&lt;br /&gt;int m; &lt;br /&gt;m=2*f(3,g(4,5)); &lt;br /&gt;printf("\n m is %d",m); &lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;what's the value of m &lt;br /&gt;a.70 &lt;br /&gt;b.50 &lt;br /&gt;c.26 &lt;br /&gt;d. 69 &lt;br /&gt;&lt;br /&gt;8. &lt;br /&gt;main() &lt;br /&gt;{ &lt;br /&gt;char a[10]; &lt;br /&gt;strcpy(a,"\0"); &lt;br /&gt;if (a==NULL) &lt;br /&gt;printf("\a is null"); &lt;br /&gt;else &lt;br /&gt;printf("\n a is not null");} &lt;br /&gt;&lt;br /&gt;what happens with it . &lt;br /&gt;a. compile time error. &lt;br /&gt;b. run-time error. &lt;br /&gt;c. a is null &lt;br /&gt;d. a is not null. &lt;br /&gt;&lt;br /&gt;9. char a[5]="hello" &lt;br /&gt;&lt;br /&gt;a. in array we can't do the operation . &lt;br /&gt;b. size of a is too large &lt;br /&gt;c. size of a is too small &lt;br /&gt;d. nothing wrong with it . &lt;br /&gt;&lt;br /&gt;10. local variables can be store by compiler &lt;br /&gt;a. in register or heap &lt;br /&gt;b. in register or stack &lt;br /&gt;c .in stack or heap . &lt;br /&gt;d. global memory. &lt;br /&gt;&lt;br /&gt;11. average and worst time complexity in a sorted binary tree is &lt;br /&gt;&lt;br /&gt;12. a tree is given and ask to find its meaning (parse-tree) &lt;br /&gt;(expression tree) &lt;br /&gt;ans. ((a+b)-(c*d)) ( not confirmed) &lt;br /&gt;13. convert 40.xxxx into binary . &lt;br /&gt;&lt;br /&gt;14. global variable conflicts due to multiple file occurance &lt;br /&gt;is resolved during &lt;br /&gt;a. compile-time &lt;br /&gt;b. run-time &lt;br /&gt;c. link-time &lt;br /&gt;d. load-time &lt;br /&gt;&lt;br /&gt;15. &lt;br /&gt;two program is given of factorial. &lt;br /&gt;one with recursion and one without recursion . &lt;br /&gt;question was which program won't run for very big no. input because &lt;br /&gt;of stack overfow . &lt;br /&gt;a. i only (ans.) &lt;br /&gt;b. ii only &lt;br /&gt;c. i&amp; ii both . &lt;br /&gt;c. none &lt;br /&gt;&lt;br /&gt;16. &lt;br /&gt;struct a &lt;br /&gt;{ &lt;br /&gt;int a; &lt;br /&gt;char b; &lt;br /&gt;int c; &lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;union b &lt;br /&gt;{ &lt;br /&gt;char a; &lt;br /&gt;int b; &lt;br /&gt;int c; &lt;br /&gt;}; &lt;br /&gt;which is correct . &lt;br /&gt;a. size of a is always diff. form size of b.(ans.) &lt;br /&gt;b. size of a is always same form size of b. &lt;br /&gt;c. we can't say anything because of not-homogeneous (not in ordered) &lt;br /&gt;d. size of a can be same if ...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-7904242933253405172?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/7904242933253405172/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_3781.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/7904242933253405172'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/7904242933253405172'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_3781.html' title='tcs'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-2192609543758890731</id><published>2009-01-31T03:11:00.002-08:00</published><updated>2009-01-31T03:12:44.884-08:00</updated><title type='text'>tcs</title><content type='html'>SECTION I VOCABULARY (SYNONYMS) TIME :15 Min. MARKS: 20. &lt;br /&gt;DIRECT ANSWERS : &lt;br /&gt;----------------------------------------------------------------- &lt;br /&gt;Admonish : usurp Meager :scanty Alienate : estrange &lt;br /&gt;Merry : gay Brim : Boarder obstinate : stubborn &lt;br /&gt;Pretention:pretentioius Tranquil:serene solicit : urge &lt;br /&gt;subside : wane furtive :stealthy misery : disstress &lt;br /&gt;volume :quantity veer : diverge stiffle :sniths &lt;br /&gt;adhesive : --- Hamper : obstruct belief : conviction &lt;br /&gt;lament : wail to merit :to deserve incentive : ---- &lt;br /&gt;inert: passive Baffle : Frustrate Confiscate : appropriat &lt;br /&gt;Covet : crave Caprice : whim Concur :acquiesce &lt;br /&gt;Cargo :freight Dispel : Scatter Divulge : ----- &lt;br /&gt;Discretion: prudence Emancipate : liberate Efface : obliterate &lt;br /&gt;Hover : linger Heap : to pile Instigate : incite &lt;br /&gt;latitude : scope latent : potential lethergy : stupor &lt;br /&gt;momentary : transient &lt;br /&gt;----- means , for these words we are not able to reproduce answers. &lt;br /&gt;&lt;br /&gt;PART II QUANTITATIVE APTITUDE ,TIME 20 Min. MARKS :30. &lt;br /&gt;----------------------------------------------------------------- &lt;br /&gt;1. Two pencils costs 8 cents, then 5 pencils cost how much &lt;br /&gt;(Ans:20 cents). &lt;br /&gt;2. A work is done by the people in 24 min. one of them can do &lt;br /&gt;this work a lonely in 40 min. how much time required to do the &lt;br /&gt;same &lt;br /&gt;work for the second person. &lt;br /&gt;(ans:60 min.) &lt;br /&gt;3. A car is filled with four and half gallons of oil for full &lt;br /&gt;round &lt;br /&gt;trip. fuel is taken 1/4 gallons mor3 in going than coming. what is &lt;br /&gt;the fiel consumed in coming up? (2 gallons) &lt;br /&gt;4. low temperature at the night in a city is 1/3 more than 1/2 &lt;br /&gt;hinge as higher temperature in a day. sum of the low temp and &lt;br /&gt;higherst temp is 100C. then what is the low temperature (40 C) &lt;br /&gt;5. A person who decided to go weekend trip should not exceed 8 &lt;br /&gt;hours &lt;br /&gt;driving in a day Average speed of forward journy is 40 mph. due &lt;br /&gt;to &lt;br /&gt;traffic in sundays, the return journey average speed is 30 mph. &lt;br /&gt;how far he can select a picnic spot (120 miles). &lt;br /&gt;&lt;br /&gt;6. A sales person multiplied a number and get the answer is 3, &lt;br /&gt;instead of that number divided by 3. what is th answer he actually &lt;br /&gt;has to get ? (1/3). &lt;br /&gt;7. A ship started from port and moving with I mph and another ship &lt;br /&gt;started from L and moving with H mph. At which place these two &lt;br /&gt;ships &lt;br /&gt;meet ? ( Ans is between I and J and close to J) &lt;br /&gt;&lt;br /&gt;!_____!_____!_____!_____!_____!_____! &lt;br /&gt;port G H I J K L &lt;br /&gt;&lt;br /&gt;8. A building with hight D ft shadow upto G A neighbour building &lt;br /&gt;with &lt;br /&gt;what height shadow C ft is (B ft.) &lt;br /&gt;&lt;br /&gt;!_____!_____!_____!_____!_____!_____!_____! &lt;br /&gt;A B C D E F G H &lt;br /&gt;&lt;br /&gt;9. A person was fined for exceeding the speed limit by 10 &lt;br /&gt;mph.Another &lt;br /&gt;person was also fined for exceeding the same speed limit by twice &lt;br /&gt;the same. If the second person was travelling at a speed of 35 &lt;br /&gt;mph. &lt;br /&gt;find the speed limit (15 mph) &lt;br /&gt;&lt;br /&gt;10. A bus started from bustand at 8.00a m and after 30 min staying &lt;br /&gt;at &lt;br /&gt;destination, it returned back to the bustand. the destination is &lt;br /&gt;27 &lt;br /&gt;miles from the bustand. the speed of the bus 50 percent fast &lt;br /&gt;speed. &lt;br /&gt;at what time it retur4ns to the bustand (11.00) &lt;br /&gt;&lt;br /&gt;11.in a mixture, R is 2 parts, S is 1 part. in order to make S to &lt;br /&gt;25% &lt;br /&gt;of the mixture, howmuch R is to be added ( one part). &lt;br /&gt;&lt;br /&gt;12. wind flows 160 miles in 330 min, for 80 miles how much time &lt;br /&gt;required. &lt;br /&gt;13. with 4/5 full tank vehicle travels 12 miles, with 1/3 full &lt;br /&gt;tank &lt;br /&gt;how much distance travels ( 5 miles). &lt;br /&gt;&lt;br /&gt;14. two trees are there. one grows at 3/5 of the other. in 4 &lt;br /&gt;years, &lt;br /&gt;total growth of trees is 8 ft. what growth will smaller tree will &lt;br /&gt;have in 2 years. (&lt;2ft) &lt;br /&gt;&lt;br /&gt;15. A storm will move with a velocity of towords the center in &lt;br /&gt;hours. At the same rate how much far will it move in hrs. &lt;br /&gt;(but Ans is 8/3 or 2 2/3). &lt;br /&gt;&lt;br /&gt;PART III: TIME 25 Min, MARKS :50. &lt;br /&gt;----------------------------------------------- &lt;br /&gt;CRITICAL REASONING : THERE WILL BE 13 PASSAGES WITH 50 QUESTIONS TIME 30 &lt;br /&gt;MIN. &lt;br /&gt;HERE I AM SENDING ONLY SOME OF THE PASSAGES (these will give only rough &lt;br /&gt;idea) &lt;br /&gt;(ANSWERS WILL BE AS YES/NO/CAN'T SAY we are giving our answers, please &lt;br /&gt;check.) &lt;br /&gt;&lt;br /&gt;1. My father has no brothers. he has three sisters who has two childs &lt;br /&gt;each. &lt;br /&gt;&lt;br /&gt;1 my grandfather has two sons (f) &lt;br /&gt;2 three of my aunts have two sons(can't say) &lt;br /&gt;3 my father is only child to his father(f) &lt;br /&gt;4 i have six cousins from my mother side(f) &lt;br /&gt;5 i have one uncle(f) &lt;br /&gt;&lt;br /&gt;2. Ether injected into gallablader to dissolve galstones. this type &lt;br /&gt;oneday &lt;br /&gt;treatment is enough for gallstones not for calcium stones. this method is &lt;br /&gt;alternative to surgery for millions of people who are suffering from this &lt;br /&gt;disease. &lt;br /&gt;1 calcium stones can be cured in oneday (f) &lt;br /&gt;2 hundreds of people contains calcium stones(can't say) &lt;br /&gt;3 surgery is the only treatment to calcium stones(t) &lt;br /&gt;4 Eather will be injected into the gallbleder to cure the &lt;br /&gt;cholestrol &lt;br /&gt;based gall stones(t). &lt;br /&gt;&lt;br /&gt;3. Hacking is illigal entry into other computer. this is done mostly &lt;br /&gt;because of lack of knowledge of computer networking with networks one &lt;br /&gt;machine can access to another machine. hacking go about without knowing &lt;br /&gt;that each network is accredited to use network facility. &lt;br /&gt;1 Hacking people never break the code of the company which they &lt;br /&gt;work for (can't say). &lt;br /&gt;2 Hacking is the only vulnerability of the computers for the &lt;br /&gt;usage &lt;br /&gt;of the data.(f) &lt;br /&gt;3 Hacking is done mostly due to the lack of computer knowledge &lt;br /&gt;(f). &lt;br /&gt;(there will be some more questions in this one ) &lt;br /&gt;&lt;br /&gt;4. alphine tunnels are closed tunnels. in the past 30 yrs not even a &lt;br /&gt;single &lt;br /&gt;accident has been recorded for there is one accident in the rail road &lt;br /&gt;system. even in case of a fire accident it is possible to shift the &lt;br /&gt;passengers &lt;br /&gt;into adjacent wagons and even the living fire can be detected and &lt;br /&gt;extinguished &lt;br /&gt;with in the duration of 30 min. &lt;br /&gt;1 no accident can occur in the closed tunnels (True) &lt;br /&gt;2 fire is allowed to live for 30 min. (False) &lt;br /&gt;3 All the care that travel in the tunnels will be carried by rail &lt;br /&gt;shutters.(t) &lt;br /&gt;4 &lt;br /&gt;&lt;br /&gt;5. In the past helicopters are forced to ground or crash because of the &lt;br /&gt;formation of the ice on the rotors and engines. a new electronic device &lt;br /&gt;has &lt;br /&gt;been developed which can detect the watercontent in the atmosphere and &lt;br /&gt;warns &lt;br /&gt;the pilot if the temp.is below freezing temp. about the formation of the &lt;br /&gt;ice &lt;br /&gt;on the rotors and wings. &lt;br /&gt;1 the electronic device can avoid formation of the ice on the &lt;br /&gt;wings (False). &lt;br /&gt;2 There will be the malfunction of rotor &amp; engine because of &lt;br /&gt;formation of ice (t) &lt;br /&gt;3 The helicopters are to be crashed or down (t) &lt;br /&gt;4 There is only one device that warn about the formation of &lt;br /&gt;ice(t). &lt;br /&gt;&lt;br /&gt;6.In the survey conducted in mumbai out of 63 newly married house wives &lt;br /&gt;not a single house &lt;br /&gt;wife felt that the husbands should take equal part in the household work &lt;br /&gt;as &lt;br /&gt;they felt they loose their power over their husbands. inspite of their &lt;br /&gt;careers &lt;br /&gt;they opt to do the kitchen work themselves after coming back to home. the &lt;br /&gt;wives get half as much leisure time as the husbands get at the week ends. &lt;br /&gt;1 housewives want the husbands to take part equally in the &lt;br /&gt;household(f) &lt;br /&gt;2 wives have half as much leisure time as the husbands have(f) &lt;br /&gt;3 39% of the men will work equally in the house in cleaning and &lt;br /&gt;washing &lt;br /&gt;3 &lt;br /&gt;&lt;br /&gt;7. copernicus is the intelligent. In the days of copernicus the transport &lt;br /&gt;and technology &lt;br /&gt;development was less &amp; it took place weeks to comunicate a message at &lt;br /&gt;that &lt;br /&gt;time.wherein we can send it through satellite with in no time ----------. &lt;br /&gt;even with this fast developments it has become difficult to understand &lt;br /&gt;each other. &lt;br /&gt;1 people were not intelligent during Copernicus days (f). &lt;br /&gt;2 Transport facilities are very much improved in noe a days (can' &lt;br /&gt;say) &lt;br /&gt;3 Even with the fast developments of the techonology we can't &lt;br /&gt;live happily.(can't say) &lt;br /&gt;4 We can understand the people very much with the development of &lt;br /&gt;communication(f). &lt;br /&gt;&lt;br /&gt;Q8) senior managers warned the workers that because of the &lt;br /&gt;intfoductors &lt;br /&gt;of japanese industry in the car market. There is the threat to the &lt;br /&gt;workers. &lt;br /&gt;They also said that there will be the reduction in the purchase of &lt;br /&gt;the sales of &lt;br /&gt;car in public.the interest rates of the car will be increased with &lt;br /&gt;the loss in demand. &lt;br /&gt;1 japanese workers are taking over the jobs of indian &lt;br /&gt;industry.(false) &lt;br /&gt;2 managers said car interests will go down after seeing the raise &lt;br /&gt;in &lt;br /&gt;interest rates.(true) &lt;br /&gt;3 japanese investments are ceasing to end in the car &lt;br /&gt;industry.(false) &lt;br /&gt;4 people are very much interested to buy the cars.(false) &lt;br /&gt;&lt;br /&gt;Q9) In the totalitariturican days,the words have very much &lt;br /&gt;devalued.In &lt;br /&gt;the present day,they are becoming domestic that is the words will be &lt;br /&gt;much more devalued. &lt;br /&gt;In that days, the words will be very much effected in political &lt;br /&gt;area.but &lt;br /&gt;at present,the words came very cheap .we can say they come free at &lt;br /&gt;cost. &lt;br /&gt;1 totalitarian society words are devalued.(false) &lt;br /&gt;2 totalitarian will have to come much about words(t) &lt;br /&gt;3 The art totalitatian society the words are used for the &lt;br /&gt;political &lt;br /&gt;speeches. &lt;br /&gt;4 &lt;br /&gt;&lt;br /&gt;Q10) There should be copyright for all arts. The reele has came &lt;br /&gt;that &lt;br /&gt;all the &lt;br /&gt;arts has come under one copy right society,they were use the money &lt;br /&gt;that come from &lt;br /&gt;the arts for the developments . There may be a lot of money will &lt;br /&gt;come from &lt;br /&gt;the Tagore works. We have to ask the benifiters from Tagore work &lt;br /&gt;to &lt;br /&gt;help for &lt;br /&gt;the development of his works. &lt;br /&gt;1 Tagore works are came under this copy right rule.(f) &lt;br /&gt;2 People are free to go to the because of the copy right &lt;br /&gt;rule.(can't say) &lt;br /&gt;3 People gives to theater and collect the money for &lt;br /&gt;development.(can't say) &lt;br /&gt;4 We have ask the Tagore resedents to help for the developments &lt;br /&gt;of &lt;br /&gt;art.(can't say) &lt;br /&gt;&lt;br /&gt;NOTE : DO 1,2,3,4,5 PASSAGES WHICH ARE EASY. LAST BUT ONE ALSO. DO THAT &lt;br /&gt;PASSAGES CAREFULLY. TIME WILL BE INSUFFICIENT. PASSAGES ARE NOT AS &lt;br /&gt;EXACTLY &lt;br /&gt;AS ABOVE. THERE IS HIGHLEVEL ENGLISH IN ALL THE PASSAGES, WE ARE GIVING &lt;br /&gt;IN OUR OWN WORDS , U CANNOT EXPECT THE SAME TYPE OF ENGLISH THERE. WHILE &lt;br /&gt;ANSWERING U SHOULD BE VERY FAST, DO NOT WASTE TIME, IT IS &lt;br /&gt;INSUFFICIENT,TRY &lt;br /&gt;TO ANSWER &lt;br /&gt;AS MANY AS POSSIBLE. &lt;br /&gt;&lt;br /&gt;SECTION 4. PSYCHOMETRIC TEST. &lt;br /&gt;---------------------------------------- &lt;br /&gt;DO NOT BOTHERE ABOUT MUCH ABOUT THIS TEST. BE OPTIMISTIC WHILE ANSWERE. &lt;br /&gt;THERE WILL BE 150 QUESTIONS IN 30 MIN. THE QUESTIONS IN THIS SECTION MAY &lt;br /&gt;REPEATED WITH SLIGHT VARIATIONS ANSWER SHOULD BE SAME IN BOTH THE CASES. &lt;br /&gt;(ans will be as yes/no/can't say) &lt;br /&gt;&lt;br /&gt;for example &lt;br /&gt;1 you will be interested in social activities. &lt;br /&gt;2 while going upstairs you will move two steps at a time. &lt;br /&gt;3 you will be making friendship with same sex or with opposite sex also. &lt;br /&gt;4 your friends will consider u as a leader in your group &lt;br /&gt;5 people think that your'e serious minded. &lt;br /&gt;6 some times you feel dull without any reason. &lt;br /&gt;7 your'e host or hostes for several parties. &lt;br /&gt;8 relatives come to your house you will entertain them. &lt;br /&gt;9 you will do work for longtime without tireness. &lt;br /&gt;10 in your company you want lead the organasition. &lt;br /&gt;etc.. the qwestions may repeate several times so becareful and give same ans's.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-2192609543758890731?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/2192609543758890731/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_3806.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/2192609543758890731'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/2192609543758890731'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_3806.html' title='tcs'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-3517482064278312771</id><published>2009-01-31T03:11:00.001-08:00</published><updated>2009-01-31T03:11:37.083-08:00</updated><title type='text'>tcs</title><content type='html'>Vocabulary &lt;br /&gt;1 admonish : usurp &lt;br /&gt;2 meager : scanty &lt;br /&gt;3 alineate: estrange &lt;br /&gt;4 merry :gay &lt;br /&gt;5 brim: boarder &lt;br /&gt;6 obstinate:stubborn &lt;br /&gt;7 adhesive:tenacious &lt;br /&gt;8 tranquil :serene &lt;br /&gt;9 solicit: urge &lt;br /&gt;furtive : stealthy &lt;br /&gt;misery:distress &lt;br /&gt;volume:quantity &lt;br /&gt;hamper :obstruct &lt;br /&gt;verr :diverge &lt;br /&gt;belief:conviction &lt;br /&gt;incentive:merit &lt;br /&gt;inert:passive &lt;br /&gt;concur:acquise &lt;br /&gt;cargo:freight &lt;br /&gt;dispel:scatter &lt;br /&gt;caprice:whim &lt;br /&gt;heap:to pile &lt;br /&gt;covet:crave &lt;br /&gt;emancipate:liberate &lt;br /&gt;instigate:incite &lt;br /&gt;latitude:scope &lt;br /&gt;lethargy:stupor &lt;br /&gt;divulge:discretion &lt;br /&gt;hover:linger &lt;br /&gt;embrace:effigy &lt;br /&gt;baffle:frustate &lt;br /&gt;lament:wail &lt;br /&gt;stiffle:snithy &lt;br /&gt;subside:wane &lt;br /&gt;confiscate:appropriate &lt;br /&gt;discretion:prudence &lt;br /&gt;efface:deliberate &lt;br /&gt;latent:potential &lt;br /&gt;&lt;br /&gt;The technical comprises of 50 questions on C,Unix and windows. &lt;br /&gt;The interview for us is on a later date.If the questions come for you &lt;br /&gt;also,then intimate me. &lt;br /&gt;1.const char * &lt;br /&gt;char * const &lt;br /&gt;What is the differnce between the above tow?. &lt;br /&gt;2.In Unix inter process communication take place using?. &lt;br /&gt;3.What are the files in /etc directory?. &lt;br /&gt;4.About i-node numbers &lt;br /&gt;5.Max relaxable permisssion value with out giving write permission &lt;br /&gt;to others?. &lt;br /&gt;6.About ln(linking) &lt;br /&gt;7.A question on until &lt;br /&gt;until (who |grep mary) &lt;br /&gt;do &lt;br /&gt;sleep(60) &lt;br /&gt;done &lt;br /&gt;8.Linking across directories?. &lt;br /&gt;&lt;br /&gt;9.process id for kernell process &lt;br /&gt;10.very first process created by kernell &lt;br /&gt;11.function to repaint a window immediately?. &lt;br /&gt;12.Function entry for DLL in win3.1 &lt;br /&gt;13.win 3.1 is a &lt;br /&gt;14.win 3.1 supports which type of multi tasking?. &lt;br /&gt;15.Message displayed when a window is destroyed &lt;br /&gt;16.About fork()? &lt;br /&gt;17.About send message and post message &lt;br /&gt;18.Message to limit the size of window &lt;br /&gt;19.System call executable binary file intoa process &lt;br /&gt;20.About GDI object?. &lt;br /&gt;21.API used to hide window &lt;br /&gt;22.Initialize contents of a dialog?. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;APTITUDE TEST &lt;br /&gt;20 QUESTIONS;2 MARKS EACH &lt;br /&gt;TIME-20MINUTES &lt;br /&gt;1) ONE RECTANGULAR PLATE WITH LENGTH 8INCHES,BREADTH 11 INCHES AND &lt;br /&gt;2 INCHES THICKNESS IS THERE.WHAT IS THE LENGTH OF THE CIRCULAR ROD &lt;br /&gt;WITH DIAMETER 8 INCHES AND EQUAL TO VOLUME OF RECTANGULAR PLATE? &lt;br /&gt;ANS: 3.5INCHES &lt;br /&gt;2) WHAT IS THE NUMBER OF ZEROS AT THE END OF THE PRODUCT OF THE NUMBERS &lt;br /&gt;FROM 1 TO 100 &lt;br /&gt;3) in some game 139 members have participated every time one fellow &lt;br /&gt;will &lt;br /&gt;get bye what is the number of matches to choose the champion to be &lt;br /&gt;held? &lt;br /&gt;ans: 138 &lt;br /&gt;4) one fast typist type some matter in 2hr and &lt;br /&gt;another slow typist type the &lt;br /&gt;same matter in 3hr. if both do combinely in how much time they &lt;br /&gt;will finish. &lt;br /&gt;ans: 1hr 12min &lt;br /&gt;5) in 8*8 chess board what is the total number of squares &lt;br /&gt;refer odel &lt;br /&gt;ans:204 &lt;br /&gt;6) falling height is proportional to square of the time. &lt;br /&gt;one object falls 64cm in 2sec than in 6sec from how much &lt;br /&gt;height the object will fall. &lt;br /&gt;7) gavaskar average in first 50 innings was 50 . after the 51st &lt;br /&gt;innings his average was 51 how many runs he made in the 51st &lt;br /&gt;innings &lt;br /&gt;8)2 oranges,3 bananas and 4 apples cost Rs.15 . 3 ornages 2 bananas &lt;br /&gt;1 apple costs Rs 10. what is the cost of 3 oranges, 3 bananas and &lt;br /&gt;3 apples ANs Rs 15. &lt;br /&gt;9)in 80 coins one coin is counterfiet what is minimum number of &lt;br /&gt;weighings to find out counterfiet coin &lt;br /&gt;10)in a company 30% are supervisors and 40% employees are male &lt;br /&gt;if 60% of supervisors are male. what is the probability &lt;br /&gt;that a randomly choosen employee is a male or female? &lt;br /&gt;11)statement: all green are blue are blue, all blue are white &lt;br /&gt;conclusion: &lt;br /&gt;I) some blue are green II) some white are green &lt;br /&gt;III)some green are not white IV) all white are blue&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-3517482064278312771?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/3517482064278312771/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_3801.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/3517482064278312771'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/3517482064278312771'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_3801.html' title='tcs'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-6951167106067220727</id><published>2009-01-31T03:08:00.000-08:00</published><updated>2009-01-31T03:10:18.533-08:00</updated><title type='text'>tcs</title><content type='html'>VERBAL SECTION &lt;br /&gt;&lt;br /&gt;Directions for questions 1-15:Find the synonyms of the following words &lt;br /&gt;&lt;br /&gt;1. Depreciation &lt;br /&gt;&lt;br /&gt;Ans. Deflation, Depression, Devaluation, fall, slump in value &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. Deprecate &lt;br /&gt;&lt;br /&gt;Ans. Feel and express disapproval of &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. Incentive &lt;br /&gt;&lt;br /&gt;Ans. Thing one encourages a person to do something &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4. Echelon &lt;br /&gt;&lt;br /&gt;Ans. Level of authority or responsibility &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5. Innovation &lt;br /&gt;&lt;br /&gt;Ans.To make changes or introduce new things &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6. Intermittant &lt;br /&gt;&lt;br /&gt;Ans. Externally stopping and then starting &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. Detrimental &lt;br /&gt;&lt;br /&gt;Ans.Harmful &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8. Aberration &lt;br /&gt;&lt;br /&gt;Ans. Deviation &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9. Conciliation &lt;br /&gt;&lt;br /&gt;Ans.To make less angry or more friendly &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;10. Orthodox &lt;br /&gt;&lt;br /&gt;Ans.Conventional or superstitious &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11. Fallible &lt;br /&gt;&lt;br /&gt;Ans.Liable to err &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;12. Volatile &lt;br /&gt;&lt;br /&gt;Ans.Ever changing &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;13. Manifestion &lt;br /&gt;&lt;br /&gt;Ans.Clear or obvious &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;14. Connotation &lt;br /&gt;&lt;br /&gt;Ans. Suggest in addition to the fundamental meaning &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;15. Reciprocal &lt;br /&gt;&lt;br /&gt;Ans. Reverse, Opposite &lt;br /&gt;&lt;br /&gt;QUANTITATIVE SECTION &lt;br /&gt;&lt;br /&gt;1. There are 150 weights .Some are 1 kg weights and some are 2 kg weights. The sum of the weights is 260.What is the number of 1kg weights? &lt;br /&gt;&lt;br /&gt;Ans. 40 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. A is driving on a highway when the police fines him for overspeeding and exceeding the limit by 10 km/hr.At the same time B is fined for overspeeding by twice the amount by which A exceeded the limit.If he was driving at 35 km/hr what is the speed limit for the road? &lt;br /&gt;&lt;br /&gt;Ans. 15 kmph &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. A moves 3 kms east from his starting point . He then travels 5 kms north. From that point he moves 8 kms to the east.How far is A from his starting point? &lt;br /&gt;&lt;br /&gt;Ans. 13 kms &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4. A car travels 12 kms with a 4/5th filled tank.How far will the car travel with 1/3 filled tank? &lt;br /&gt;&lt;br /&gt;Ans. 5 kms &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5. The sum of the digits of a two digit number is 8. When 18 is added to the number, the digits are reversed. Find the number? &lt;br /&gt;&lt;br /&gt;Ans. 35 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6. The cost of one pencil, two pens and four erasers is Rs.22 while the cost of five pencils, four pens and two erasers is Rs.32.How much will three pencils, three pens and three erasers cost? &lt;br /&gt;&lt;br /&gt;Ans. 27 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. Fathers age is 5 times his son's age. 4 years back the father was 9 times older than son.Find the fathers' present age. &lt;br /&gt;&lt;br /&gt;Ans. 40 years &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8. What number should be added to or subtracted from each term of the ratio 17 : 24 so that it becomes equal to 1 : 2. &lt;br /&gt;&lt;br /&gt;Ans. 10 should be subtracted &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9. What is the 12th term of the series 2, 5, 8, .... &lt;br /&gt;&lt;br /&gt;Ans. 35 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;10. If 20 men take 15 days to to complete a job, in how many days can 25 men finish that work? &lt;br /&gt;&lt;br /&gt;Ans. 12 days &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11. In a fraction, if 1 is added to both the numerator at the denominator, the fraction becomes 1/2. If numerator is subtracted from the denominator, the fraction becomes 3/4. Find the fraction. &lt;br /&gt;&lt;br /&gt;Ans. 3/7 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;12. If Rs.1260 is divided between between A, B and C in the ratio 2:3:4, what is C's share? &lt;br /&gt;&lt;br /&gt;Ans. Rs. 560 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;13. A shopkeeper bought a watch for Rs.400 and sold it for Rs.500.What is his profit percentage? &lt;br /&gt;&lt;br /&gt;Ans. 25% &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;14. What percent of 60 is 12? &lt;br /&gt;&lt;br /&gt;Ans. 20% &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;15. Hansie made the following amounts in seven games of cricket in India: Rs.10, Rs.15, Rs.21, Rs.12, Rs.18, Rs.19 and Rs.17(all figures in crores of course).Find his average earnings. &lt;br /&gt;&lt;br /&gt;Ans. Rs.16 crore &lt;br /&gt;&lt;br /&gt;CRITICAL REASONING SECTION &lt;br /&gt;&lt;br /&gt;This section is basically just a reading comprehension section.The critical reasoning section consists of some passages followed by 4 to 7 questions per passage.The questions are such that they require ability to read fast and comprehend.The questions asked in this section have three choices TRUE, FALSE, CAN'T SAY.Some examples of passages are given in test 1.For further practice you may go through any GRE or CAT book which will provide you with ample practice regarding these kinds of questions. &lt;br /&gt;&lt;br /&gt;PYSCHOMETERIC TEST &lt;br /&gt;&lt;br /&gt;This test consists of 150 questions and is just a pyshcology test which should be answered confidently and doesn't require any preparation.One must try being consistent while answering as the same questions are repeatedly asked in different forms.Also one must answer all questions.Questions are of yes or no kind. &lt;br /&gt;&lt;br /&gt;example: &lt;br /&gt;&lt;br /&gt;Are you sincere? &lt;br /&gt;&lt;br /&gt;If you find a purse in the market with loads of money would you return it to the rightful owner? &lt;br /&gt;&lt;br /&gt;While climbing up the stairs do you take two steps at a time? &lt;br /&gt;&lt;br /&gt;Do you drink and smoke more than you think you should? &lt;br /&gt;&lt;br /&gt;Are you the life of the party you attend? &lt;br /&gt;&lt;br /&gt;Are you shy?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-6951167106067220727?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/6951167106067220727/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_2124.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/6951167106067220727'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/6951167106067220727'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_2124.html' title='tcs'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-1881891182125092699</id><published>2009-01-31T03:06:00.000-08:00</published><updated>2009-01-31T03:07:28.837-08:00</updated><title type='text'>tcs</title><content type='html'>Part A - Vocabulary(synonyms) 40 Questions &lt;br /&gt;1. To merry = Enjoy &lt;br /&gt;2.To Alienate = abandon &lt;br /&gt;3.To Solicit = Humble &lt;br /&gt;4.To Heep =to gather &lt;br /&gt;5.Cargo = load,luggage &lt;br /&gt;6.Momentary = for small time &lt;br /&gt;7.Volume = quantity &lt;br /&gt;8.To Veer = &lt;br /&gt;9.To Admonish= &lt;br /&gt;10. To Meager = small,little &lt;br /&gt;11. To lattitude, &lt;br /&gt;12. Latent = &lt;br /&gt;13. To Covet = To desire &lt;br /&gt;14. To Discretion = &lt;br /&gt;15. Potential = ability &lt;br /&gt;16. To Emancipate, &lt;br /&gt;17. To Wethargy, &lt;br /&gt;18. To Concur = similiar &lt;br /&gt;19. To Confiscate = To take charge, to annex &lt;br /&gt;20. To Dispel = &lt;br /&gt;21. Baffle = puzzle &lt;br /&gt;22. Subsidise = &lt;br /&gt;23. Misery = &lt;br /&gt;24. Pretentrous = &lt;br /&gt;25. Tranquil = calm, silent &lt;br /&gt;26.Ellace &lt;br /&gt;28.Rinaile, &lt;br /&gt;29.Obstinate &lt;br /&gt;30.Hover &lt;br /&gt;31.Caprice, &lt;br /&gt;33.Belate =after time &lt;br /&gt;34.Brim = edge &lt;br /&gt;35.Divulge, &lt;br /&gt;36.Lamont, &lt;br /&gt;37.Bileaf, &lt;br /&gt;38. Embrace = &lt;br /&gt;39.Adhesive = &lt;br /&gt;40. Miserable = &lt;br /&gt;&lt;br /&gt;Critical Reasoning &lt;br /&gt;_____________________ &lt;br /&gt;&lt;br /&gt;1. My Father is only child to his Father. My father has three &lt;br /&gt;sisters. All are married and have two children each. &lt;br /&gt;(state True or False Or Can't be determined ) &lt;br /&gt;1.1 My Grand father has two sons (false) &lt;br /&gt;1.2 I am having six cousins (true) &lt;br /&gt;1.3 I have three uncle (true) &lt;br /&gt;&lt;br /&gt;Part B (15 Questions ) &lt;br /&gt;&lt;br /&gt;1. Two Pencils 8 cents 5 Pencils cost ( Ans 20 cents) &lt;br /&gt;&lt;br /&gt;2.A work is done by two people in 24 minutes. One of them alone can do it in 40 minutes. How much time will the other person wiil take to complete it ( 60 minutes) &lt;br /&gt;&lt;br /&gt;3. A car is filled with 4.5 gallons of fuel for a round trip . Car is taken 1/4 more than in going than coming up. What is the fuel consumed in coming up ? (2.0 gallons) &lt;br /&gt;&lt;br /&gt;CHECK &lt;br /&gt;4. Low temperature at the night in a city is more than 1/2 high as higher temperature are 100. Then What is low temperature (Ans 40) &lt;br /&gt;&lt;br /&gt;5. Person who dicided to go to weekend trip should not exceed 8 hrs driving in a day. Average speed of forward journey is 40 miles/hour . Due to traffic in sundays ,in return journey average speed is 30mph . How far he can select a picnic spot ? (ans 240 miles) &lt;br /&gt;&lt;br /&gt;CHECK &lt;br /&gt;&lt;br /&gt;6. A sales person multiplied by a number and get the answer 3. Instead of that number divided by 3. What is the answer she actually has to get. (1/3) * 1 *3 =3 so the no= 1 divided by three. &lt;br /&gt;&lt;br /&gt;The answer =1/3 &lt;br /&gt;&lt;br /&gt;7. A ship started from port and moving with 'I' miles/hour and other ship started From L and moving with 'H' miles/hour . At the place where these two ships will meet. &lt;br /&gt;&lt;br /&gt;ans (L*I*H)/(H+I) &lt;br /&gt;&lt;br /&gt;8. A building with height D shadows up to G. A Neighbour building with what height shadows C feet. &lt;br /&gt;&lt;br /&gt;ans CD/G &lt;br /&gt;&lt;br /&gt;9. A person was fined for exceeding the speed limit by 10mph. Another person was also fined for exceeding the speed limit by twice the same. If the second person was travelling at speed of 35mph . Find the speed limit &lt;br /&gt;&lt;br /&gt;ans. 15mph &lt;br /&gt;&lt;br /&gt;10. A bus started from the bus stand at 8 Am and after staying 30 minutes at a destination return back to the bus stand. The Destination is 27 miles from the bus stand . The Speed of the bus is 18mph . In the return journey the bus travells with 50% fast speed.At what time it is return to the bus stand &lt;br /&gt;&lt;br /&gt;(1 p.m) &lt;br /&gt;&lt;br /&gt;CHECK &lt;br /&gt;&lt;br /&gt;11. In a mixture R is two parts, S is one part . In order to mixture how much R is to be added. &lt;br /&gt;&lt;br /&gt;Ans S is 25% of R&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-1881891182125092699?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/1881891182125092699/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_8182.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/1881891182125092699'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/1881891182125092699'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_8182.html' title='tcs'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-1074555569290662890</id><published>2009-01-31T03:05:00.000-08:00</published><updated>2009-01-31T03:06:20.134-08:00</updated><title type='text'>tcs</title><content type='html'>Synonyms: &lt;br /&gt;&lt;br /&gt;admonish : usurp &lt;br /&gt;meager : scanty &lt;br /&gt;alineate: estrange &lt;br /&gt;merry :gay &lt;br /&gt;brim: boarder &lt;br /&gt;obstinate:stubborn &lt;br /&gt;adhesive:tenacious &lt;br /&gt;tranquil :serene &lt;br /&gt;solicit: urge &lt;br /&gt;furtive : stealthy &lt;br /&gt;misery:distress &lt;br /&gt;volume:quantity &lt;br /&gt;hamper :obstruct &lt;br /&gt;verr :diverge &lt;br /&gt;belief:conviction &lt;br /&gt;incentive:merit &lt;br /&gt;inert:passive &lt;br /&gt;concur:acquise &lt;br /&gt;cargo:freight &lt;br /&gt;dispel:scatter &lt;br /&gt;caprice:whim &lt;br /&gt;heap:to pile &lt;br /&gt;covet:crave &lt;br /&gt;emancipate:liberate &lt;br /&gt;instigate:incite &lt;br /&gt;latitude:scope &lt;br /&gt;lethargy:stupor &lt;br /&gt;divulge:discretion &lt;br /&gt;hover:linger &lt;br /&gt;embrace:effigy &lt;br /&gt;baffle:frustate &lt;br /&gt;lament:wail &lt;br /&gt;stiffle:snithy &lt;br /&gt;subside:wane &lt;br /&gt;confiscate:appropriate &lt;br /&gt;discretion:prudence &lt;br /&gt;efface:deliberate &lt;br /&gt;latent:potential &lt;br /&gt;&lt;br /&gt;The technical comprises of 50 questions on C,Unix and windows. &lt;br /&gt;1.const char * &lt;br /&gt;char * const &lt;br /&gt;What is the differnce between the above tow?. &lt;br /&gt;&lt;br /&gt;2.In Unix inter process communication take place using?. &lt;br /&gt;&lt;br /&gt;3.What are the files in /etc directory?. &lt;br /&gt;&lt;br /&gt;4.About i-node numbers &lt;br /&gt;&lt;br /&gt;5.Max relaxable permisssion value with out giving write permission &lt;br /&gt;to others?. &lt;br /&gt;&lt;br /&gt;6.About ln(linking) &lt;br /&gt;&lt;br /&gt;7.A question on until &lt;br /&gt;until (who |grep mary) &lt;br /&gt;do &lt;br /&gt;sleep(60) &lt;br /&gt;done &lt;br /&gt;&lt;br /&gt;8.Linking across directories?. &lt;br /&gt;&lt;br /&gt;9.process id for kernell process &lt;br /&gt;&lt;br /&gt;10.very first process created by kernell &lt;br /&gt;&lt;br /&gt;11.function to repaint a window immediately?. &lt;br /&gt;&lt;br /&gt;12.Function entry for DLL in win3.1 &lt;br /&gt;&lt;br /&gt;13.win 3.1 is a &lt;br /&gt;&lt;br /&gt;14.win 3.1 supports which type of multi tasking?. &lt;br /&gt;&lt;br /&gt;15.Message displayed when a window is destroyed &lt;br /&gt;&lt;br /&gt;16.About fork()? &lt;br /&gt;&lt;br /&gt;17.About send message and post message &lt;br /&gt;&lt;br /&gt;18.Message to limit the size of window &lt;br /&gt;&lt;br /&gt;19.System call executable binary file intoa process &lt;br /&gt;&lt;br /&gt;20.About GDI object?. &lt;br /&gt;&lt;br /&gt;21.API used to hide window &lt;br /&gt;&lt;br /&gt;22.Initialize contents of a dialog?. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;APTITUDE TEST 20 QUESTIONS;2 MARKS EACH TIME-20MINUTES &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1) ONE RECTANGULAR PLATE WITH LENGTH 8INCHES,BREADTH 11 INCHES AND 2 INCHES THICKNESS IS THERE.WHAT IS THE LENGTH OF THE CIRCULAR ROD WITH DIAMETER 8 INCHES AND EQUAL TO VOLUME OF RECTANGULAR PLATE? &lt;br /&gt;ANS: 3.5INCHES &lt;br /&gt;&lt;br /&gt;2) WHAT IS THE NUMBER OF ZEROS AT THE END OF THE PRODUCT OF THE NUMBERS FROM 1 TO 100 &lt;br /&gt;&lt;br /&gt;3) in some game 139 members have participated every time one fellow will get bye what is the number of matches to choose the champion to be held? &lt;br /&gt;ans: 138 &lt;br /&gt;&lt;br /&gt;4) one fast typist type some matter in 2hr and another slow typist type the same matter in 3hr. if both do combinely in how much time they will finish. &lt;br /&gt;ans: 1hr 12min &lt;br /&gt;&lt;br /&gt;5) in 8*8 chess board what is the total number of squares refer odel &lt;br /&gt;&lt;br /&gt;ans:204 &lt;br /&gt;&lt;br /&gt;6) falling height is proportional to square of the time.one object falls 64cm in 2sec than in 6sec from how much height the object will fall &lt;br /&gt;&lt;br /&gt;7)gavaskar average in first 50 innings was 50 . after the 51st innings his average was 51 how many runs he made in the 51st innings &lt;br /&gt;&lt;br /&gt;8)2 oranges,3 bananas and 4 apples cost Rs.15 . 3 ornages 2 bananas 1 apple costs Rs 10. what is the cost of 3 oranges, 3 bananas and 3 apples &lt;br /&gt;&lt;br /&gt;ANS Rs 15. &lt;br /&gt;&lt;br /&gt;9)in 80 coins one coin is counterfiet what is minimum number of weighings to find out counterfiet coin &lt;br /&gt;&lt;br /&gt;10)in a company 30% are supervisors and 40% employees are male if 60% of supervisors are male. what is the probability that a randomly choosen employee is a male or female? &lt;br /&gt;&lt;br /&gt;11)statement: all green are blue are blue, all blue are white conclusion: &lt;br /&gt;I) some blue are green II) some white are green III)some green are not white IV) all white are blue&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-1074555569290662890?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/1074555569290662890/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_5031.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/1074555569290662890'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/1074555569290662890'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_5031.html' title='tcs'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-8687438580542710755</id><published>2009-01-31T03:02:00.000-08:00</published><updated>2009-01-31T03:03:54.933-08:00</updated><title type='text'>tcs</title><content type='html'>Vocabulary: &lt;br /&gt;&lt;br /&gt;Admonish-usurp,meager-scant,alienate-estrange,merry-gay,brim-boarder,obstinate-stubbourn &lt;br /&gt;solicit-urge,subside-wane,furtive-stealthy,misery-distress,volume-quantity, &lt;br /&gt;veer-diverge,stiffle-snithy,adhesive-sticky,hamper-obstruct,belief-co &lt;br /&gt;nviction,lament-wail,incentive-spur,innert-passive,baffle-frustrate,confiscate-appropriate,c &lt;br /&gt;overt-crave,caprice-whim,concur-acquiesce,cargo-frieght,dispel-scatter,divulge-reveal,tomerit-to &lt;br /&gt;deserve,discreation-prudence,emancipate-liberate,efface-obliterate, &lt;br /&gt;&lt;br /&gt;hover-linger,heap-to &lt;br /&gt;pile,instigate-incite,latitude-scope,latent-potential,lethargy-stupor &lt;br /&gt;momentary-transient,pretentious-ostentatious,embrace-effigy &lt;br /&gt;&lt;br /&gt;Apptitude &lt;br /&gt;&lt;br /&gt;1)2 pencils costs 8 cents,then 5 pencils cost how much &lt;br /&gt;a)20c &lt;br /&gt;2)a work is done by the people in 24 min.one of them can do this work a lonely in 40 min.how much time required to do the same work for the &lt;br /&gt;second person &lt;br /&gt;a)60min &lt;br /&gt;3)a car is filled with four and half gallons of oil for full round trip.fuel is taken 1/4 gallons more in going than coming.what is the fuel consumed in coming up. &lt;br /&gt;a)2 gallons &lt;br /&gt;4)low temperature at the night in a city is 1/3 more than 1/2 hinge as higher temperature in a day.sum of the low temp and high temp is 100 c. &lt;br /&gt;then what is the low temp. &lt;br /&gt;a)40 centigrade &lt;br /&gt;5)a person who decided to go weekend trip should not exceed 8 hours driving in a day average spped of forward journey is 40 mph.due to &lt;br /&gt;traffic insundays the return journey average speed is 30 mph.how far he can select a picnic spot. &lt;br /&gt;a)120 miles &lt;br /&gt;6)a sales person multiplied a number and get the answer is 3 instead of that number divided by 3.what is the answer he actually has to get. &lt;br /&gt;a)1/3 &lt;br /&gt;7)a ship started from a port and moving with I mph and another ship started from L and moving with H mph.at which place these two ships &lt;br /&gt;meet. &lt;br /&gt;a)between I and J and close to J &lt;br /&gt;8)a building with height D ft shadow upto G.A neighbour building with what height shadow C ft is &lt;br /&gt;a)B ft &lt;br /&gt;9)a person was fined for exceeding the speed limit by 10mph.another person was also fined for exceeding the same speed limit by twice the same if the second person was travellling at a speed of 35 mph.find the speed limit &lt;br /&gt;a)15mph &lt;br /&gt;10)a bus started from bustand at 8.00am and after 30min staying at destination it returned back to the bustand.the destination is 27 miles from the bustand the speed of the bus 50percent fast speed at what time it returns to the bustand. &lt;br /&gt;a)11.00am &lt;br /&gt;11)in a mixture,R is 2 parts,s is 1 part in order to make s to 25% of the mixture,howmuch r is to be added &lt;br /&gt;a)one part &lt;br /&gt;12)wind flows 160 miles in 330min.for 80 miles how much time required &lt;br /&gt;a)--- &lt;br /&gt;13)with 4/5 full tand vehicle travels 12 miles, with 1/3 full tand how much distance travels &lt;br /&gt;a)5 miles &lt;br /&gt;14)2 trees are there.one grows at 3/5 of the other.In 4 years total growth of the trees is 8 ft.what growth will smaller tree will have in 2 years. &lt;br /&gt;a)2 ft &lt;br /&gt;15)a storm will move with a velocity of --- towards the center in --- at the same rate how much far will it move in hrs &lt;br /&gt;a)8/3 or 2 2/3 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Reasoning &lt;br /&gt;---------- &lt;br /&gt;A. &lt;br /&gt;my father had no brothers but his 3 sisters are all married and each has 2 children.my grandfather has 2 sons. &lt;br /&gt;1.mu father was an only child F &lt;br /&gt;2.3 of my aunts have sons C &lt;br /&gt;3.i have six cousins on my mother's side C &lt;br /&gt;4. i have only one uncle F &lt;br /&gt;&lt;br /&gt;B. &lt;br /&gt;Senior managers in a leading company said that new japanese investment in india was transforming the car industry and warned that jobs were under threat from japanese competition. they stated that increasing competition would be coupled with an in evitable downturn i the car market and the recent rise in interst rates whaich had already hit demand. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5.some senior managers said that more people will want to buy new cars in the future. F &lt;br /&gt;6.managers told workers that japanese workers are taking jobs away from indian workers in the car industry. F &lt;br /&gt;7.the managers issued their warning after a rise in interest rates. T &lt;br /&gt;8.the increased rate of the interest will mean that japanese firms will cease to operate in this country. C &lt;br /&gt;&lt;br /&gt;C.Researchers in mumbai have found that certain types of gallstones can be dissolved by injecting them with a gasoline additive in the form of ether the ether is injected through a tube directly into a tube directly into the gallbladder.the one day treatment works only on cholesterol-based stones.not those composed largely o calcium.however as the clolesterol stones are by far the most common typefor millions of gallstones sufferers the treatment should offer a welcome alternative tosurgery the commonest option in nost hospitals. &lt;br /&gt;&lt;br /&gt;9.injecting ether into the gallbladder dissolves most gallstones T &lt;br /&gt;10.surgery is the only treatment for calcium stones T &lt;br /&gt;11.hundreds of peoplecontains calcium stones C &lt;br /&gt;12.calcium stones will be cured in one day F &lt;br /&gt;&lt;br /&gt;D.organising the home can be perceived as conferring power so large numbers of women are unwilling to let go of chores,even when they have careers.a survey found that,out of 65 new marriages not one single wife expected her husband to share work equally.according to the family policy studies center 81% working wives return home to do all th cooking.The average male has nearly half as much more tfree time at weekends than his wife and the typical new father spends just 37 seconds a day talking to his baby. &lt;br /&gt;&lt;br /&gt;13.most working wives do not expect their husbands to share chores equally. T &lt;br /&gt;14.the average wife has half as much free time at weekends as her husband. F &lt;br /&gt;15.some women collude in the unequal distribution of house hold work because they want to retain control C &lt;br /&gt;16. 39% of all men with working wives do the cooking and all the cleaning F &lt;br /&gt;&lt;br /&gt;E.confucius said that to know the future we have to understand the pasthis time transport ,communications and scientific knowledge were less &lt;br /&gt;developed than they are today.news took weeks to travel where as today satellite links connect the continents virtually instantaneously.but &lt;br /&gt;our technological advances in the field of communications seem not to have improved our capacity to understand one another &lt;br /&gt;&lt;br /&gt;17.in confucius daay people were more intelligent C &lt;br /&gt;18.we understand each otheer better now than in confucius time because we can travel more quickly. F &lt;br /&gt;19.we have made great improvements in transport since confucius day T &lt;br /&gt;20.none of our scientific discoveries has really improved our lives C &lt;br /&gt;&lt;br /&gt;F.words in totalitarian systems have an unhealthy importance and in such states now attempting to return to a more democratic normality there has been a natural inevitable and healthy devaluation of words whereas previouslu a single word used in a speech or even a play or poem could be a serious political event now the words come cheaper almost free. politics is politics again and poetry only poetry &lt;br /&gt;21.totalitarian state devalue words T &lt;br /&gt;22.only non-totalitarian regimes produce poetry of political importance T &lt;br /&gt;23.writers under totalitarian regimes have to choose their words care fully T &lt;br /&gt;24. the democratic political system is healthier than others C &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;G.statistics show that millions of vehicals have beencarried by shuttle over the past 30 years through alpine tunnels withouty one ever catching tire.in the alpine tunnels.drivers and passengers sit in theirvhehicals on the shuttle trains.only one vehical has evercaught fire on the bussy french motorail equivalent system.this sort of accidents is not possible in a closed shuttle. assertinos that a vehical fire will lead to &lt;br /&gt;catastophe have no basis. since the resoures exit do detect,control and extingush a fire and to remove any persons present safely to an adjoning wagon, leaving any surviving fire facing rapid extinction within a wagan built to contain fire for 30 minutes. catastrophe seems very unlikely. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;25. if a car cauget fire in a rail shuttle, probably none would be killed. (T) &lt;br /&gt;26.at least one vehical has cauht fire in an alpine tunnel.(f) &lt;br /&gt;27.if a fire started in a wagon, it would be allowed to burn itself out in 30 minutes.(f) &lt;br /&gt;28.if would theoreticaly be possible for a car to cath fire in a closed shuttle system.(F) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;H)every form of art is protected by copy write,upon the expiration of whitch the property passes into the public domain and becomes freely &lt;br /&gt;available to any one wishing to exploit it commercialy. the time has come when all treasures shoud pass to the controled of a trust,and by this made readily available to anyone on pament of a fee or royality.the income fromthe works of tagore would alone be enarmous.these who now main financialbenifit from his genius should make some contribution to the welfare of the arts in general. &lt;br /&gt;&lt;br /&gt;29.tagore's plays are not protected by copyright. F &lt;br /&gt;30.tagore's decendants should be asked to make some contribution to the arts C &lt;br /&gt;31.instead of buying a ticket , theatregoers should pay a fee to trust for the benefit of the arts. C &lt;br /&gt;32. More people could go to the theatre if copy rightwere abolished C &lt;br /&gt;&lt;br /&gt;I. Hacking is a crime made possible by a relatively new technology, which one of the reasons it is often poorly understood and reported. &lt;br /&gt;Many computers, but no means all,are now linked togetherin networks which allow users on one computer to communicate with others on the same network.If a computer is not networked,no manipulation of its datafrom another machine is possible.So long as users are authorised, networking is just a way of making work easier and more productive.Hacking on the other hand,is the unauthorised use of networks or unauthorised entty into the computers themselves.Most people do not need to break into the networks they use,since they are already accredited users. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;33. Most hackers are authorised to break into networks F &lt;br /&gt;34. Computers are only vulerable to the unauthorised manipulation of their data via another computer if they are networked T &lt;br /&gt;35.The main reason why it is relatively easy to break into a computer is that few people understand the technology. C &lt;br /&gt;36.Hackers do not work fot the firms whose networks they break into. T &lt;br /&gt;&lt;br /&gt;J.Although invaders represent a threat to the conservation of flora and fauna,there are two special cases in which invasion have been deliberately brought about.One is the desire to control presents by natural predators, whichmay have to be brought in from other countries.The second is releasing organisms into the wild(or on to farms,from which they might escape)that are completely novel,beacause they have been genetically engineered.There is nothing intrinsically sinister about engineered organisms,but any novelty must be regarded as a potential invader. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;37.Pest control does not threat the conservation of flora and fauna. T &lt;br /&gt;38.Genetically engineered organisms must always be regarded as potentially dangerous. F &lt;br /&gt;39.Natural predators are work harmful than pests.T &lt;br /&gt;40.Genetically engineered organisms escaped from the farm,they will be pose a threat to wildlife. T &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;K.electronics technology is coming to the rescue of helicopters which can be grounded or crash in icy conditions the machines are especially &lt;br /&gt;vulnerable to the build up of ice on both their rotors and engine air intake when operating in cold damp conditions.the problem is 2 fold &lt;br /&gt;ice increases the weight and the build upp makes the aerofoils less efficient .now at last a detector has been devised which the company &lt;br /&gt;hopes will mean safer flightsand less frequent grounding.unlike most devices in use at present it can detect the liquid water content of cloud &lt;br /&gt;above freezing level.so the warning is ginven before the potential hazard is encountered. &lt;br /&gt;&lt;br /&gt;39.an electronic device has been invented which will prevent the build up of ice on helicopter rotors F &lt;br /&gt;40.helicopters are sometimes grounded because in cold damp weather their engine air intakes and rotors malfuntion owing to the formatrion of ice. T &lt;br /&gt;41.only one device can at present detect the liquid water content of cloud above freezing level C &lt;br /&gt;42.in future fewer helicopters will crash or have to grounded T &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;L.anyone whos has systematically examined faces will have perceived a prepondreance although not a proliferation of asymmtry.whether or not the expression is volitinal and self controlled or spontaneous appears to predict facial asymmetry as does the type of emotion protrayed.positive emotions are usually displayed symmetrically although a left sided representation of a negative emotion is more common.posed expressions and negative emotions are less likely to be symmetrically represented. &lt;br /&gt;&lt;br /&gt;43.an angry person is more likely to have a lopsided expression than someone who is smiling T &lt;br /&gt;44.a deliberately assumed facial expression will always be asymmetrical F &lt;br /&gt;45.an actor is likely to smile symmetrically when acting C &lt;br /&gt;46.more self conscious people are likely to have less asymmetrically facial expressions than those who are less aware of themselves T &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;M. human existence is not susceptible of arbitary division between consciousness and unconsciousness.the conscious world invades and shapes the activities of the unconscious while many of the great achievements of humanity's waking hours were wholly or partly inspires bu dreams .even if it could be argued that dreams precede experience such a dichotomy could not be drawn as the influence of dreaming on the waking state would remain unclear but as yet no common vocabulary exists to record the substnce of prenatal dreaming &lt;br /&gt;&lt;br /&gt;47.sleep can be a creative state. T &lt;br /&gt;48.it is difficult to tell whether a sleeper is dr3eaming or not C &lt;br /&gt;49. if we knew what babies dream about before they are born we could show that conscious and unconscious mond influence one another F &lt;br /&gt;50. it is untrue to claim that the conscious and unconscious worlds never impinge on one another F &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;New twenty questions &lt;br /&gt;-------------------- &lt;br /&gt;N. disease x succeeds lung disease.it may also occur helthy persons the person looks healthier from outside.the number of red blood cells in &lt;br /&gt;the blood increased and this leads to thickness fo the blood as a result of which blood lacks inside the vessels .the person suffers heart attact. &lt;br /&gt;one possible solution is to remove a litre of blood or to control the growth of red blood cells. &lt;br /&gt;&lt;br /&gt;53.lung disease precedes the disease x T &lt;br /&gt;54.a person who gets heart attack always has disease x F &lt;br /&gt;55.people suffering from disease x look healthier C &lt;br /&gt;56.one litre of blood must be removed to cure this T &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;O.a starfire engine has been designed to work only for unleaded petrol.this crossfire engine is designed for both 1500 and `1800 cc &lt;br /&gt;they internally and externally look alike except for the difference in wheels ----,2000 cc is differentr from the above.two in terms of 3 &lt;br /&gt;features --- ----- ---- on the bumber. &lt;br /&gt;&lt;br /&gt;57.the engine run only on the leaded petrol F &lt;br /&gt;58.1500 and 1800 cc look alike F &lt;br /&gt;59.apart from cross fire engines they manfacture ---- F &lt;br /&gt;60.internal structure of the 2000cc is same as that of both 1500 and 1800 cc CP.a weed killer to kill the weeds has been developed.the weed killer solution has to be applied to the growing tips. it need not to be applied &lt;br /&gt;to all the tips.the solution has to be prepared in a can in one hand and the plants are taken in the other hand with a glove and are immersed &lt;br /&gt;in the solution if we cannot immerse them in the solution the solution can be applied to the roots with a brush.it used without care it can &lt;br /&gt;pose danger to other plants. &lt;br /&gt;61.the solutions has to applied to growing leaves &lt;br /&gt;62.to use the weedkiller first take the plants in the cn as then pour the solution into it. &lt;br /&gt;63.it is sufficient to apply it only to some roots &lt;br /&gt;64.it effects to the other plants. &lt;br /&gt;65.flora 3 sofa set gives value to ur money &lt;br /&gt;66.padding is used to increase durablity &lt;br /&gt;67.flora will made all other products other than sofa sets &lt;br /&gt;68.can we use wood as ----- T &lt;br /&gt;69.the length of the cracker will be less than 12 cm F &lt;br /&gt;70.the center part of the crackers is 4cm T&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-8687438580542710755?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/8687438580542710755/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_4217.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/8687438580542710755'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/8687438580542710755'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_4217.html' title='tcs'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-8538166007203943772</id><published>2009-01-31T03:01:00.000-08:00</published><updated>2009-01-31T03:02:35.204-08:00</updated><title type='text'>TCS</title><content type='html'>1. The C language terminator is &lt;br /&gt;&lt;br /&gt;(a) semicolon &lt;br /&gt;(b) colon &lt;br /&gt;(c) period &lt;br /&gt;(d) exclamation mark &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. What is false about the following -- A compound statement is &lt;br /&gt;&lt;br /&gt;(a) A set of simple statments &lt;br /&gt;(b) Demarcated on either side by curly brackets &lt;br /&gt;(c) Can be used in place of simple statement &lt;br /&gt;(d) A C function is not a compound statement. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. What is true about the following C Functions &lt;br /&gt;&lt;br /&gt;(a) Need not return any value &lt;br /&gt;(b) Should always return an integer &lt;br /&gt;(c) Should always return a float &lt;br /&gt;(d) Should always return more than one value &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4. Main must be written as &lt;br /&gt;&lt;br /&gt;(a) The first function in the program &lt;br /&gt;(b) Second function in the program &lt;br /&gt;(c) Last function in the program &lt;br /&gt;(d) Any where in the program &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5. Which of the following about automatic variables within a function is correct ? &lt;br /&gt;&lt;br /&gt;(a) Its type must be declared before using the variable &lt;br /&gt;(b) Tthey are local &lt;br /&gt;(c) They are not initialised to zero &lt;br /&gt;(d) They are global &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6. Write one statement equivalent to the following two statements &lt;br /&gt;&lt;br /&gt;x=sqr(a); &lt;br /&gt;return(x); &lt;br /&gt;&lt;br /&gt;Choose from one of the alternatives &lt;br /&gt;&lt;br /&gt;(a) return(sqr(a)); &lt;br /&gt;(b) printf("sqr(a)"); &lt;br /&gt;(c) return(a*a*a); &lt;br /&gt;(d) printf("%d",sqr(a)); &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. Which of the following about the C comments is incorrect ? &lt;br /&gt;&lt;br /&gt;(a) Ccommentscan go over multiple lines &lt;br /&gt;(b) Comments can start any where in the line &lt;br /&gt;(c) A line can contain comments with out any language statements &lt;br /&gt;(d) Comments can occur within comments &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8. What is the value of y in the following code? &lt;br /&gt;x=7; &lt;br /&gt;y=0; &lt;br /&gt;if(x=6) y=7; &lt;br /&gt;else y=1; &lt;br /&gt;&lt;br /&gt;(a) 7 &lt;br /&gt;(b) 0 &lt;br /&gt;(c) 1 &lt;br /&gt;(d) 6 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9. Read the function conv() given below &lt;br /&gt;conv(int t){ &lt;br /&gt;int u; &lt;br /&gt;u=5/9 * (t-32); &lt;br /&gt;return(u); &lt;br /&gt;} &lt;br /&gt;What is returned &lt;br /&gt;&lt;br /&gt;(a) 15 &lt;br /&gt;(b) 0 &lt;br /&gt;(c) 16.1 &lt;br /&gt;(d) 29 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;10. Which of the following represents true statement either x is in the range of 10 and 50 or y is zero &lt;br /&gt;&lt;br /&gt;(a) x &gt;= 10 &amp;&amp; x &lt;= 50 || y = = 0 &lt;br /&gt;(b) x&lt;50 &lt;br /&gt;(c) y!=10 &amp;&amp; x&gt;=50 &lt;br /&gt;(d) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11. Which of the following is not an infinite loop ? &lt;br /&gt;&lt;br /&gt;(a) while(1)\{ ....} &lt;br /&gt;&lt;br /&gt;(b) for(;;) &lt;br /&gt;{ &lt;br /&gt;... &lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;(c) x=0; &lt;br /&gt;do{ &lt;br /&gt;/*x unaltered within the loop*/ &lt;br /&gt;.....} &lt;br /&gt;while(x = = 0); &lt;br /&gt;&lt;br /&gt;(d) # define TRUE 0 &lt;br /&gt;... &lt;br /&gt;while(TRUE){ &lt;br /&gt;....} &lt;br /&gt;&lt;br /&gt;12. What does the following function print? &lt;br /&gt;func(int i) &lt;br /&gt;{ if(i%2)return 0; &lt;br /&gt;else return 1;} &lt;br /&gt;main() &lt;br /&gt;{ &lt;br /&gt;int =3; &lt;br /&gt;i=func(i); &lt;br /&gt;i=func(i); &lt;br /&gt;printf("%d",i); &lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;(a) 3 &lt;br /&gt;(b) 1 &lt;br /&gt;(c) 0 &lt;br /&gt;(d) 2 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;13. How does the C compiler interpret the following two statements &lt;br /&gt;p=p+x; &lt;br /&gt;q=q+y; &lt;br /&gt;&lt;br /&gt;(a) p=p+x; &lt;br /&gt;q=q+y &lt;br /&gt;(b)p=p+xq=q+y &lt;br /&gt;(c)p=p+xq; &lt;br /&gt;q=q+y &lt;br /&gt;(d)p=p+x/q=q+y &lt;br /&gt;&lt;br /&gt;For questions 14,15,16,17 use the following alternatives &lt;br /&gt;&lt;br /&gt;a.int &lt;br /&gt;b.char &lt;br /&gt;c.string &lt;br /&gt;d.float &lt;br /&gt;&lt;br /&gt;14. '9' &lt;br /&gt;&lt;br /&gt;15. "1 e 02" &lt;br /&gt;&lt;br /&gt;16. 10e05 &lt;br /&gt;&lt;br /&gt;17. 15 &lt;br /&gt;&lt;br /&gt;18. Read the folllowing code &lt;br /&gt;&lt;br /&gt;# define MAX 100 &lt;br /&gt;# define MIN 100 &lt;br /&gt;.... &lt;br /&gt;.... &lt;br /&gt;if(x &gt; MAX) &lt;br /&gt;x=1; &lt;br /&gt;else if(x &lt; MIN) &lt;br /&gt;x=-1; &lt;br /&gt;x=50; &lt;br /&gt;if the initial value of x=200,what is the value after executing this code? &lt;br /&gt;&lt;br /&gt;(a) 200 &lt;br /&gt;(b) 1 &lt;br /&gt;(c) -1 &lt;br /&gt;(d) 50 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;19. A memory of 20 bytes is allocated to a string declared as char *s &lt;br /&gt;then the following two statements are executed: &lt;br /&gt;s="Entrance" &lt;br /&gt;l=strlen(s); &lt;br /&gt;what is the value of l ? &lt;br /&gt;&lt;br /&gt;(a)20 &lt;br /&gt;(b)8 &lt;br /&gt;(c)9 &lt;br /&gt;(d)21 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;20. Given the piece of code &lt;br /&gt;&lt;br /&gt;int a[50]; &lt;br /&gt;int *pa; &lt;br /&gt;pa=a; &lt;br /&gt;&lt;br /&gt;To access the 6th element of the array which of the following is incorrect? &lt;br /&gt;&lt;br /&gt;(a) *(a+5) &lt;br /&gt;(b) a[5] &lt;br /&gt;(c) pa[5] &lt;br /&gt;(d) *(*pa + 5} &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;21. Consider the following structure: &lt;br /&gt;&lt;br /&gt;struct num nam{ &lt;br /&gt;int no; &lt;br /&gt;char name[25]; &lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; &lt;br /&gt;..... &lt;br /&gt;..... &lt;br /&gt;printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); &lt;br /&gt;&lt;br /&gt;What does the above statement print? &lt;br /&gt;&lt;br /&gt;(a) 8,9 &lt;br /&gt;(b) 9,9 &lt;br /&gt;(c) 8,8 &lt;br /&gt;(d) 8,unpredictable value &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;22. Identify the in correct expression &lt;br /&gt;&lt;br /&gt;(a) a=b=3=4; &lt;br /&gt;(b) a=b=c=d=0; &lt;br /&gt;(c)float a=int b=3.5; &lt;br /&gt;(d)int a; float b; a=b=3.5; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;23. Regarding the scope of the varibles;identify the incorrect statement: &lt;br /&gt;&lt;br /&gt;(a)automatic variables are automatically initialised to 0 &lt;br /&gt;(b)static variables are are automatically initialised to 0 &lt;br /&gt;(c)the address of a register variable is not accessiable &lt;br /&gt;(d)static variables cannot be initialised with any expression &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;24. cond 1?cond 2?cond 3?:exp 1:exp 2:exp 3:exp 4; &lt;br /&gt;is equivalent to which of the following? &lt;br /&gt;&lt;br /&gt;(a)if cond 1 &lt;br /&gt;exp 1; &lt;br /&gt;else if cond 2 &lt;br /&gt;exp 2; &lt;br /&gt;else if cond 3 &lt;br /&gt;exp 3; &lt;br /&gt;else exp 4; &lt;br /&gt;&lt;br /&gt;(b) if cond 1 &lt;br /&gt;if cond 2 &lt;br /&gt;if cond 3 &lt;br /&gt;exp 1; &lt;br /&gt;else exp 2; &lt;br /&gt;else exp 3; &lt;br /&gt;else exp 4; &lt;br /&gt;&lt;br /&gt;(c) if cond 1 &amp;&amp; cond 2 &amp;&amp; cond 3 &lt;br /&gt;exp 1 |exp 2|exp 3|exp 4; &lt;br /&gt;&lt;br /&gt;(d) if cond 3 &lt;br /&gt;exp 1; &lt;br /&gt;else if cond 2 exp 2; &lt;br /&gt;else if cond 3 exp 3; &lt;br /&gt;else exp 4; &lt;br /&gt;&lt;br /&gt;25. The operator for exponencation is &lt;br /&gt;&lt;br /&gt;(a) ** &lt;br /&gt;(b) ^ &lt;br /&gt;(c) % &lt;br /&gt;(d) not available &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;26. Which of the following is invalid &lt;br /&gt;&lt;br /&gt;(a) a+=b &lt;br /&gt;(b) a*=b &lt;br /&gt;(c) a&gt;&gt;=b &lt;br /&gt;(d) a**=b &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;27. What is y value of the code if input x=10 &lt;br /&gt;&lt;br /&gt;y=5; &lt;br /&gt;if (x==10) &lt;br /&gt;else if(x==9) &lt;br /&gt;else y=8; &lt;br /&gt;&lt;br /&gt;(a)9 &lt;br /&gt;(b)8 &lt;br /&gt;(c)6 &lt;br /&gt;(d)7 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;28. What does the following code do? &lt;br /&gt;&lt;br /&gt;fn(int n,int p,int r){ &lt;br /&gt;static int a=p; &lt;br /&gt;switch(n){ &lt;br /&gt;case 4:a+=a*r; &lt;br /&gt;case 3:a+=a*r; &lt;br /&gt;case 2:a+=a*r; &lt;br /&gt;case 1:a+=a*r;}} &lt;br /&gt;&lt;br /&gt;(a)computes simple interest for one year &lt;br /&gt;(b)computes amount on compound interest for 1 to 4 years &lt;br /&gt;(c)computes simple interest for four year &lt;br /&gt;(d)computes compound interst for 1 year &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;29. a=0; &lt;br /&gt;while(a&lt;5) &lt;br /&gt;printf("%d\\n",a++); &lt;br /&gt;How many times does the loop occurs? &lt;br /&gt;&lt;br /&gt;(a)infinite &lt;br /&gt;(b)5 &lt;br /&gt;(c)4 &lt;br /&gt;(d)6 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;30. How many times does the loop iterated ? &lt;br /&gt;&lt;br /&gt;for (i=0;i=10;i+=2) &lt;br /&gt;printf("Hi\\n"); &lt;br /&gt;&lt;br /&gt;(a)10 &lt;br /&gt;(b) 2 &lt;br /&gt;(c) 5 &lt;br /&gt;(d) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;31. What is incorrect among the following &lt;br /&gt;A recursive function &lt;br /&gt;&lt;br /&gt;(a) calls itself &lt;br /&gt;(b) is equivalent to a loop &lt;br /&gt;(c) has a termination condition &lt;br /&gt;(d) does not have a return value at all &lt;br /&gt;&lt;br /&gt;32. Which of the following go out of the loop if expn 2 becoming false &lt;br /&gt;&lt;br /&gt;(a) while(expn 1)\{...if(expn 2)continue;} &lt;br /&gt;(b) while(!expn 1)\{if(expn 2)continue;...} &lt;br /&gt;(c) do{..if(expn 1)continue;..}while(expn 2); &lt;br /&gt;(d) while(!expn 2)\{if(expn 1)continue;..\} &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;33. Consider the following program &lt;br /&gt;&lt;br /&gt;main() &lt;br /&gt;{unsigned int i=10; &lt;br /&gt;while(i&gt;=0){ &lt;br /&gt;printf("%u",i) &lt;br /&gt;i--;} &lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;How many times the loop will get executed &lt;br /&gt;&lt;br /&gt;(a)10 &lt;br /&gt;(b)9 &lt;br /&gt;(c)11 &lt;br /&gt;(d)infinite &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;34.Pick out the add one out &lt;br /&gt;&lt;br /&gt;(a) malloc() &lt;br /&gt;(b) calloc() &lt;br /&gt;(c) free() &lt;br /&gt;(d) realloc() &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;35.Consider the following program &lt;br /&gt;&lt;br /&gt;main(){ &lt;br /&gt;int a[5]={1,3,6,7,0}; &lt;br /&gt;int *b; &lt;br /&gt;b=&amp;a[2]; &lt;br /&gt;} &lt;br /&gt;The value of b[-1] is &lt;br /&gt;&lt;br /&gt;(a) 1 &lt;br /&gt;(b) 3 &lt;br /&gt;(c) -6 &lt;br /&gt;(d) none &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;36. # define prod(a,b)=a*b &lt;br /&gt;main(){ &lt;br /&gt;int x=2; &lt;br /&gt;int y=3; &lt;br /&gt;printf("%d",prod(x+2,y-10)); } &lt;br /&gt;&lt;br /&gt;the output of the program is &lt;br /&gt;&lt;br /&gt;(a) 8 &lt;br /&gt;(b) 6 &lt;br /&gt;(c) 7 &lt;br /&gt;(d) None &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;37.Consider the following program segment &lt;br /&gt;&lt;br /&gt;int n,sum=1; &lt;br /&gt;switch(n){ &lt;br /&gt;case 2:sum=sum+2; &lt;br /&gt;case 3:sum*=2; &lt;br /&gt;break; &lt;br /&gt;default:sum=0;} &lt;br /&gt;&lt;br /&gt;If n=2, what is the value of sum &lt;br /&gt;&lt;br /&gt;(a) 0 &lt;br /&gt;(b) 6 &lt;br /&gt;(c) 3 &lt;br /&gt;(d) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;38. Identify the incorrect one &lt;br /&gt;&lt;br /&gt;1.if(c=1) &lt;br /&gt;2.if(c!=3) &lt;br /&gt;3.if(a &lt; b)then &lt;br /&gt;4.if(c==1) &lt;br /&gt;&lt;br /&gt;(a) 1 only &lt;br /&gt;(b) 1&amp;3 &lt;br /&gt;(c) 3 only &lt;br /&gt;(d) All of the above &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;39. The format specified for hexa decimal is &lt;br /&gt;&lt;br /&gt;(a) %d &lt;br /&gt;(b) %o &lt;br /&gt;(c) %x &lt;br /&gt;(d) %u &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;40. Find the output of the following program &lt;br /&gt;&lt;br /&gt;main(){ &lt;br /&gt;int x=5, *p; &lt;br /&gt;p=&amp;x &lt;br /&gt;printf("%d",++*p); &lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;(a) 5 &lt;br /&gt;(b) 6 &lt;br /&gt;(c) 0 &lt;br /&gt;(d) none of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;41.Consider the following C code &lt;br /&gt;&lt;br /&gt;main(){ &lt;br /&gt;int i=3,x; &lt;br /&gt;while(i&gt;0){ &lt;br /&gt;x=func(i); &lt;br /&gt;i--; } &lt;br /&gt;&lt;br /&gt;int func(int n){ &lt;br /&gt;static sum=0; &lt;br /&gt;sum=sum+n; &lt;br /&gt;return(sum);} &lt;br /&gt;&lt;br /&gt;The final value of x is &lt;br /&gt;&lt;br /&gt;(a) 6 &lt;br /&gt;(b) 8 &lt;br /&gt;(c) 1 &lt;br /&gt;(d) 3 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;43. Int *a[5] refers to &lt;br /&gt;&lt;br /&gt;(a) array of pointers &lt;br /&gt;(b) pointer to an array &lt;br /&gt;(c) pointerto a pointer &lt;br /&gt;(d) none of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;44.Which of the following statements is incorrect &lt;br /&gt;&lt;br /&gt;(a) typedef struct new{ &lt;br /&gt;int n1; &lt;br /&gt;char n2; &lt;br /&gt;} DATA; &lt;br /&gt;&lt;br /&gt;(b) typedef struct { &lt;br /&gt;int n3; &lt;br /&gt;char *n4;}ICE; &lt;br /&gt;&lt;br /&gt;(c) typedef union{ int n5; &lt;br /&gt;float n6;} UDT; &lt;br /&gt;&lt;br /&gt;(d) #typedef union { &lt;br /&gt;int n7; &lt;br /&gt;float n8;} TUDAT;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-8538166007203943772?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/8538166007203943772/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_38.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/8538166007203943772'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/8538166007203943772'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_38.html' title='TCS'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-4112702413526122606</id><published>2009-01-31T02:59:00.000-08:00</published><updated>2009-01-31T03:01:21.729-08:00</updated><title type='text'>TCS</title><content type='html'>VERBAL SECTION &lt;br /&gt;&lt;br /&gt;Directions for questions 1-15:Find the synonyms of the following words &lt;br /&gt;&lt;br /&gt;1. Merry &lt;br /&gt;&lt;br /&gt;Ans. Gay,Happy &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. Alienate &lt;br /&gt;&lt;br /&gt;Ans. Estrange &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. Solicit &lt;br /&gt;&lt;br /&gt;Ans. To request &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4.Heap &lt;br /&gt;&lt;br /&gt;Ans. To pile &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5.Cargo &lt;br /&gt;&lt;br /&gt;Ans. Freight &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6.Momentary &lt;br /&gt;&lt;br /&gt;Ans. Transient &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. Volume &lt;br /&gt;&lt;br /&gt;Ans.Quantity &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8.Veer &lt;br /&gt;&lt;br /&gt;Ans.Diverge &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9.Dispel &lt;br /&gt;&lt;br /&gt;Ans.Dissipate &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;10.Admonish &lt;br /&gt;&lt;br /&gt;Ans.Cautious &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11.Meager &lt;br /&gt;&lt;br /&gt;Ans.Scanty &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;12.Latitude &lt;br /&gt;&lt;br /&gt;Ans.Scope &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;13.Latent &lt;br /&gt;&lt;br /&gt;Ans.Potential &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;14.Covet &lt;br /&gt;&lt;br /&gt;Ans.Crave &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;15.Discretion &lt;br /&gt;&lt;br /&gt;Ans. Prudence &lt;br /&gt;&lt;br /&gt;QUANTITATIVE SECTION &lt;br /&gt;&lt;br /&gt;1. If two pencils cost 8 cents, then how much do 5 pencils cost? &lt;br /&gt;&lt;br /&gt;Ans. 20 cents &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. Some work is done by two people in 24 minutes. One of them can do this work alone in 40 minutes. How much time does the second person take to do the same work ? &lt;br /&gt;&lt;br /&gt;Ans. 60 minutes &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. A car is filled with four and half gallons of fuel for a round trip.If the amount of fuel taken while going is 1/4 more than the amount taken for coming, what is the amount of fuel consumed while coming back? &lt;br /&gt;&lt;br /&gt;Ans.2 gallons &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4. The lowest temperature in the night in a city A is 1/3 more than 1/2 the highest during the day. Sum of the lowest temperature and the highest temperature is 100 degrees. Then what is the low temp? &lt;br /&gt;&lt;br /&gt;Ans.40 degrees &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5. Javagal, who decided to go to weekened trip should not exceed 8 hours driving in a day. The average speed of forward journey is 40 miles/hr.Due to traffic on sundays, the return journey's average speed is 30 m/h. How far he can select a picnic spot? &lt;br /&gt;&lt;br /&gt;a) 120 miles &lt;br /&gt;b) between 120 and 140 miles &lt;br /&gt;c) 160 miles &lt;br /&gt;&lt;br /&gt;Ans. 120 miles &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6. A salesperson by mistake multiplied a number and got the answer as 3, instead of dividing the number by 3.What is the answer he should have actually got? &lt;br /&gt;&lt;br /&gt;Ans. 3 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. A building with height D shadow upto G. What is the height of a neighbouring building with a shadow of C feet. &lt;br /&gt;&lt;br /&gt;Ans. (C*D)/G &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8. A person was fined for exceeding the speed limit by 10 mph. Another person was also fined for exceeding the same speed limit by twice the same. If the second person was travelling at a speed of 35 mph, find the speed limit. &lt;br /&gt;&lt;br /&gt;Ans. 15 mph &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9. A bus started from bustand at 8.00am, and after staying for 30 minutes at a destination, it returned back to the busstand. The destination is 27 miles from the busstand. The speed of the bus is 18mph. During the return journey bus travels with 50% faster speed.At what time does it return to the busstand? &lt;br /&gt;&lt;br /&gt;Ans. 11.00am &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;10. In a mixture, R is 2 parts and S is 1 part. In order to make S to 25% of the mixture, how much of R is to be added? &lt;br /&gt;&lt;br /&gt;Ans.One part of R &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11. Wind flows 160 miles in 330 min, for travelling 80 miles how much time does it require? &lt;br /&gt;&lt;br /&gt;Ans. 2 hrs 45 mins &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;12. With a 4/5 full tank a vehicle can travel 12 miles, how far can it travel with a 1/3 full tank &lt;br /&gt;&lt;br /&gt;Ans. 5 miles &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;13. There are two trees in a lawn. One grows at a rate 3/5 of the other in 4 years. If the total growth of trees is 8 ft. What is the height of the smaller tree after 2 years &lt;br /&gt;&lt;br /&gt;Ans. 1 1/2 feet &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;14. Refer to the figure below.A ship started from P and moves at a speed of I miles per hour and another ship starts from L and moving with H miles per hour simultaneously.Where do the two ships meet? &lt;br /&gt;&lt;br /&gt;||---g---||---h---||---i---||---j---||---k---||---l---|| &lt;br /&gt;&lt;br /&gt;PG H I J K L are the various stops in between denoted by || . The values g, h, i, j, k, l denote the distance between the ports. &lt;br /&gt;&lt;br /&gt;Ans. Between I and J, closer to J &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;15. If A is travelling at 72 km per hour on a highway. B is travelling at a speed of 25 meters per second on a highway. What is the difference in their speeds in m/sec. &lt;br /&gt;&lt;br /&gt;Ans. 1 m/sec &lt;br /&gt;&lt;br /&gt;CRITICAL REASONING SECTION &lt;br /&gt;&lt;br /&gt;The critical reasoning section consists of some passages followed by 4 to 7 questions per passage. The questions are such that they require ability to read fast and comprehend. The questions asked in this section have three choices TRUE, FALSE, CAN'T SAY. Some examples of questions are given below. Please note that these passages are not the exact passages asked. The passages used a good deal of difficult words which have been removed in this reproduction. Also the passages appearing in the actual paper are much lengthier. &lt;br /&gt;&lt;br /&gt;Directions: Answer the questions given below the passage or statement as true, false or can't say. &lt;br /&gt;&lt;br /&gt;PASSAGE A: My father has no brothers. He has three sisters who has two childs each. &lt;br /&gt;&lt;br /&gt;Answer 1-5 based on the passage A &lt;br /&gt;&lt;br /&gt;1.My grandfather has two sons . &lt;br /&gt;&lt;br /&gt;Ans. False &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. Three of my aunts have two sons &lt;br /&gt;&lt;br /&gt;Ans. Can't say &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. My father is only child to his father &lt;br /&gt;&lt;br /&gt;Ans. False &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4. I have six cousins from my mother side &lt;br /&gt;&lt;br /&gt;Ans. Can't say &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5. I have one uncle &lt;br /&gt;&lt;br /&gt;Ans. Can't say(uncle can be from the mother's side as well) &lt;br /&gt;&lt;br /&gt;PASSAGE B: Ether injected into gallablader to dissolve colestrol based gallstones. This type one day treatment is enough for gallstones not for calcium stones. This method is alternative to surgery for millions of people who are suffering from this disease. &lt;br /&gt;&lt;br /&gt;Answer questions 6-9 based on passage B &lt;br /&gt;&lt;br /&gt;6.Calcium stones can be cured in oneday &lt;br /&gt;&lt;br /&gt;Ans. False &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. Hundreds of people contains calcium stones &lt;br /&gt;&lt;br /&gt;Ans. Can't say &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8. Surgery is the only treatment to calcium stones &lt;br /&gt;&lt;br /&gt;Ans. True &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9. Ether will be injected into the gallbleder to cure the cholestrol based gall stones &lt;br /&gt;&lt;br /&gt;Ans. True &lt;br /&gt;&lt;br /&gt;PASSAGE C: Hacking is illegal entry into another computer. This happens mostly because of lack of knowledge of computer networking. With networks one machine can access to another machine.Hacking go about without knowing that each network is accredited to use network facility. &lt;br /&gt;&lt;br /&gt;Answer questions 10-12 based on passage B &lt;br /&gt;&lt;br /&gt;10. Hackers never break the code of the company which they work for &lt;br /&gt;&lt;br /&gt;Ans. Can't say &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11. Hacking is the only vulnerability of the computers for the usage of the data &lt;br /&gt;&lt;br /&gt;Ans. False &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;12.Hacking is done mostly due to the lack of computer knowledge &lt;br /&gt;&lt;br /&gt;Ans. False &lt;br /&gt;&lt;br /&gt;PASSAGE C: Alphine tunnels are closed tunnels.In the past 30 yrs not even a single accident has been recorded for there is one accident in the rail road system. Even in case of a fire accident it is possible to shift the passengers into adjacent wagons and even the live fire can be detected and extinguished with in the duration of 30 min. &lt;br /&gt;&lt;br /&gt;Answer questions 13-16 based on passage C &lt;br /&gt;&lt;br /&gt;13. No accident can occur in the closed tunnels &lt;br /&gt;&lt;br /&gt;Ans. True &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;14. Fire is allowed to live for 30 min &lt;br /&gt;&lt;br /&gt;Ans. False &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;16. All the care that travel in the tunnels will be carried by rail shutters. &lt;br /&gt;&lt;br /&gt;Ans.True &lt;br /&gt;&lt;br /&gt;PASSAGE D: In the past helicopters were forced to ground or crash because of the formation of the ice on the rotors and engines. A new electronic device has been developed which can detect the watercontent in the atmosphere and warns the pilot if the temperature is below freezing temperature about the formation of the ice on the rotors and wings. &lt;br /&gt;&lt;br /&gt;Answer questions 17-20 based on passage D &lt;br /&gt;&lt;br /&gt;17.The electronic device can avoid formation of the ice on the wings &lt;br /&gt;&lt;br /&gt;Ans.False &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;18. There will be the malfunction of rotor &amp; engine because of formation of ice &lt;br /&gt;&lt;br /&gt;Ans.True &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;19. The helicopters were to be crashed or grounded &lt;br /&gt;&lt;br /&gt;Ans.True &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;20. There is only one device that warn about the formation of ice &lt;br /&gt;&lt;br /&gt;Ans.True &lt;br /&gt;&lt;br /&gt;PASSAGE E:In the survey conducted in mumbai out of 63 newly married house wives not a single house wife felt that the husbands should take equal part in the household work as they felt they loose their power over their husbands. Inspite of their careers they opt to do the kitchen work themselves after coming back to home. the wives get half as much leisure time as the husbands get at the week ends. &lt;br /&gt;&lt;br /&gt;Answer questions 21-23 based on passage E &lt;br /&gt;&lt;br /&gt;21.Housewives want the husbands to take part equally in the household &lt;br /&gt;&lt;br /&gt;Ans.False &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;22. Wives have half as much leisure time as the husbands have &lt;br /&gt;&lt;br /&gt;Ans. False &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;23. 39% of the men will work equally in the house in cleaning and washing &lt;br /&gt;&lt;br /&gt;Ans. False &lt;br /&gt;&lt;br /&gt;PASSAGE F:Copernicus is the intelligent. In the days of copernicus the transport and technology development was less &amp; it took place weeks to comunicate a message at that time,wherein we can send it through satellite with in no time.Even with this fast developments it has become difficult to understand each other. &lt;br /&gt;&lt;br /&gt;Answer questions 24-27 based on passage F &lt;br /&gt;&lt;br /&gt;24. People were not intelligent during Copernicus days &lt;br /&gt;&lt;br /&gt;Ans.False &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;25. Transport facilities are very much improved in noe a days &lt;br /&gt;&lt;br /&gt;Ans.Can't say &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;26. Even with the fast developments of the techonology we can't live happily. &lt;br /&gt;&lt;br /&gt;Ans. Can't say &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;27. We can understand the people very much with the development of communication &lt;br /&gt;&lt;br /&gt;Ans. False. &lt;br /&gt;&lt;br /&gt;PASSAGE G:Senior managers warned the workers that because of the intfoductors of japanese industry in the car market. There is the threat to the workers.They also said that there will be the reduction in the purchase of the sales of car in public.the interest rates of the car will be increased with the loss in demand. &lt;br /&gt;&lt;br /&gt;Answer questions 28-31 based on passage G &lt;br /&gt;&lt;br /&gt;28. Japanese workers are taking over the jobs of indian industry. &lt;br /&gt;&lt;br /&gt;Ans.False &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;29.Managers said car interests will go down after seeing the raise in interest rates. &lt;br /&gt;&lt;br /&gt;Ans.True &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;30. Japanese investments are ceasing to end in the car industry. &lt;br /&gt;&lt;br /&gt;Ans. False &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;31. People are very interested to buy the cars. &lt;br /&gt;&lt;br /&gt;Ans.False &lt;br /&gt;&lt;br /&gt;PASSAGE H:In the totalitariturican days,the words have very much devalued.In the present day,they are becoming domestic that is the words will be much more devalued. In that days, the words will be very much effected in political area.but at present,the words came very cheap .We can say they come free at cost. &lt;br /&gt;&lt;br /&gt;Answer questions 32-34 based on passage H &lt;br /&gt;&lt;br /&gt;32.Totalitarian society words are devalued. &lt;br /&gt;&lt;br /&gt;Ans.False &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;33. Totalitarians will have to come much about words &lt;br /&gt;&lt;br /&gt;Ans.True &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;34. The art totalitatian society the words are used for the political speeches. &lt;br /&gt;&lt;br /&gt;Ans. False &lt;br /&gt;&lt;br /&gt;PASSAGE I:There should be copyright for all arts. The reele has came that all the arts has come under one copy right society,they were use the money that come from the arts for the developments . There may be a lot of money will come from the Tagore works. We have to ask the benifiters from Tagore work to help for the development of his works. &lt;br /&gt;&lt;br /&gt;Answer questions 35-39 based on passage I &lt;br /&gt;&lt;br /&gt;35. Tagore works are came under this copy right rule. &lt;br /&gt;&lt;br /&gt;Ans. False &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;36. People are free to go to the public because of the copy right rule. &lt;br /&gt;&lt;br /&gt;Ans.Can't say &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;38. People gives to theater and collect the money for development. &lt;br /&gt;&lt;br /&gt;Ans.Can't say &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;39. We have ask the Tagore resedents to help for the developments of art. &lt;br /&gt;&lt;br /&gt;Ans.Can't say &lt;br /&gt;&lt;br /&gt;PYSCHOMETERIC TEST &lt;br /&gt;&lt;br /&gt;You don't need to fret much about this test. This test consists of 150 questions and is just a pyshcology test which should be answered confidently and doesn't require any preparation.One must try being consistent while answering as the same questions are repeatedly asked in different forms.Also one must answer all questions.Questions are of yes,no or can't say kind. &lt;br /&gt;&lt;br /&gt;1. Will you be interested in social activities. &lt;br /&gt;&lt;br /&gt;2. While going upstairs do you move two steps at a time. &lt;br /&gt;&lt;br /&gt;3. Can you make friends with people of the same sex or with opposite sex also &lt;br /&gt;&lt;br /&gt;4. Your friends consider you as a leader in your group &lt;br /&gt;&lt;br /&gt;5. People think that your'e serious minded. &lt;br /&gt;&lt;br /&gt;6. There are times you feel dull without any reason. &lt;br /&gt;&lt;br /&gt;7. You host several parties &lt;br /&gt;&lt;br /&gt;8. When relatives come to your house do you entertain them. &lt;br /&gt;&lt;br /&gt;9. You can work for long hours without tireness. &lt;br /&gt;&lt;br /&gt;10. In your company you want to lead the organisation.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-4112702413526122606?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/4112702413526122606/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_3581.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/4112702413526122606'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/4112702413526122606'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_3581.html' title='TCS'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-6402277497902040914</id><published>2009-01-31T02:58:00.000-08:00</published><updated>2009-01-31T02:59:54.546-08:00</updated><title type='text'>TCS</title><content type='html'>C TEST &lt;br /&gt;&lt;br /&gt;1. The C language terminator is &lt;br /&gt;(a) semicolon (b) colon (c) period (d) exclamation mark &lt;br /&gt;&lt;br /&gt;2. What is false about the following -- A compound statement is &lt;br /&gt;(a) A set of simple statements (b) Demarcated on either side by curly brackets &lt;br /&gt;(c) Can be used in place of simple statement (d) A C function is not a compound statement. &lt;br /&gt;&lt;br /&gt;3. What is true about the following C Functions &lt;br /&gt;(a) Need not return any value (b) Should always return an integer &lt;br /&gt;(c) Should always return a float (d) Should always return more than one value &lt;br /&gt;&lt;br /&gt;4. Main must be written as &lt;br /&gt;(a) The first function in the program (b) Second function in the program &lt;br /&gt;(c) Last function in the program (d) Any where in the program &lt;br /&gt;&lt;br /&gt;5. Which of the following about automatic variables within a function is correct ? &lt;br /&gt;(a) Its type must be declared before using the variable (b) They are local &lt;br /&gt;(c) They are not initialized to zero (d) They are global &lt;br /&gt;&lt;br /&gt;6. Write one statement equivalent to the following two statements: x=sqr(a); return(x); &lt;br /&gt;Choose from one of the alternatives &lt;br /&gt;(a) return(sqr(a)); (b) printf("sqr(a)"); &lt;br /&gt;(c) return(a*a*a); (d) printf("%d",sqr(a)); &lt;br /&gt;&lt;br /&gt;7. Which of the following about the C comments is incorrect ? &lt;br /&gt;(a) Comments can go over multiple lines &lt;br /&gt;(b) Comments can start any where in the line &lt;br /&gt;(c) A line can contain comments with out any language statements &lt;br /&gt;(d) Comments can occur within comments &lt;br /&gt;&lt;br /&gt;8. What is the value of y in the following code? &lt;br /&gt;x=7; &lt;br /&gt;y=0; &lt;br /&gt;if(x=6) y=7; &lt;br /&gt;else y=1; &lt;br /&gt;(a) 7 (b) 0 (c) 1 (d) 6 &lt;br /&gt;&lt;br /&gt;9. Read the function conv() given below &lt;br /&gt;conv(int t) &lt;br /&gt;{ &lt;br /&gt;int u; &lt;br /&gt;u=5/9 * (t-32); &lt;br /&gt;return(u); &lt;br /&gt;} &lt;br /&gt;What is returned &lt;br /&gt;(a) 15 (b) 0 (c) 16.1 (d) 29 &lt;br /&gt;&lt;br /&gt;10. Which of the following represents true statement either x is in the range of 10 and 50 or y is zero &lt;br /&gt;(a) x &gt;= 10 &amp;&amp; x &lt;= 50 || y = = 0 (b) x&lt;50&gt;=50 (d) None of these &lt;br /&gt;&lt;br /&gt;11. Which of the following is not an infinite loop ? &lt;br /&gt;(a) while(1)\{ ....} (b) for(;;){...} &lt;br /&gt;(c) x=0; (d) # define TRUE 0 &lt;br /&gt;do{ /*x unaltered within the loop*/ ... &lt;br /&gt;.....}while(x = = 0); while(TRUE){ ....} &lt;br /&gt;&lt;br /&gt;12. What does the following function print? &lt;br /&gt;func(int i) &lt;br /&gt;{ &lt;br /&gt;if(i%2)return 0; &lt;br /&gt;else return 1; &lt;br /&gt;} &lt;br /&gt;main() &lt;br /&gt;{ &lt;br /&gt;int =3; &lt;br /&gt;i=func(i); &lt;br /&gt;i=func(i); &lt;br /&gt;printf("%d",i); &lt;br /&gt;} &lt;br /&gt;(a) 3 (b) 1 (c) 0 (d) 2 &lt;br /&gt;&lt;br /&gt;13. How does the C compiler interpret the following two statements &lt;br /&gt;p=p+x; &lt;br /&gt;q=q+y; &lt;br /&gt;(a) p= p+x; (b)p=p+xq=q+y; (c)p= p+xq; (d)p=p+x/q=q+y; &lt;br /&gt;q=q+y; q=q+y; &lt;br /&gt;&lt;br /&gt;For questions 14,15,16,17 use the following alternatives: &lt;br /&gt;a.int b.char c.string d.float &lt;br /&gt;&lt;br /&gt;14. '9' &lt;br /&gt;&lt;br /&gt;15. "1 e 02" &lt;br /&gt;&lt;br /&gt;16. 10e05 &lt;br /&gt;&lt;br /&gt;17. 15 &lt;br /&gt;18. Read the folllowing code &lt;br /&gt;# define MAX 100 &lt;br /&gt;# define MIN 100 &lt;br /&gt;.... &lt;br /&gt;.... &lt;br /&gt;if(x &gt; MAX) &lt;br /&gt;x=1; &lt;br /&gt;else if(x &lt; x="-1;" x="50;" x="200,what"&gt;19. A memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: &lt;br /&gt;s="Entrance" &lt;br /&gt;l=strlen(s); &lt;br /&gt;what is the value of l ? &lt;br /&gt;&amp;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-6402277497902040914?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/6402277497902040914/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_7460.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/6402277497902040914'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/6402277497902040914'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_7460.html' title='TCS'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-67052310184698598</id><published>2009-01-31T02:57:00.000-08:00</published><updated>2009-01-31T02:58:42.770-08:00</updated><title type='text'>TCS</title><content type='html'>PSYCHOMETRY TEST &lt;br /&gt;Direction: &lt;br /&gt;In this section you will find different questions with the same meaning. In all such questions your answer has to be same. for e.g.: &lt;br /&gt;In being thrown by chance with a stranger, you wait for the person to introduce himself or herself. &lt;br /&gt;(a) Yes (b) No (c) ? &lt;br /&gt;&lt;br /&gt;It is difficult for you to chat about things in general with people. &lt;br /&gt;(a) Yes (b) No (c) ? &lt;br /&gt;&lt;br /&gt;These two questions have similar meanings. If you answer the first one 'NO' and the second one 'YES', i.e. if you differ in your answers to similar questions you lose marks for every question with the above meaning. &lt;br /&gt;&lt;br /&gt;The choices to these questions are: &lt;br /&gt;(a) Yes. &lt;br /&gt;(b) No. &lt;br /&gt;(c) ? &lt;br /&gt;&lt;br /&gt;1. You start to work on a project with great deal of enthusiasm. &lt;br /&gt;2. You would rather plan an activity than take part in it. &lt;br /&gt;3. You have more than once taken lead in organizing project or a group of some kind. &lt;br /&gt;4. You like to entertain guests. &lt;br /&gt;5. Your interests change quickly from one thing to another. &lt;br /&gt;6. When you eat a meal with others, you are usually one of the last to finish. &lt;br /&gt;7. You believe in the idea that we should " eat, drink and be merry, for tomorrow we die." &lt;br /&gt;8. When you find that something you have bought is defective, you hesitate to demand an exchange or a &lt;br /&gt;refund. &lt;br /&gt;9. You find it easy to find new acquaintances. &lt;br /&gt;10. You are sometimes bubbling over with energy and sometimes very sluggish. &lt;br /&gt;11. You are happiest when you get involved in some projects that calls for rapid action. &lt;br /&gt;12. Other people think of you as being very serious minded. &lt;br /&gt;13. In being thrown by chance with a stranger, you wait for the person to introduce himself or herself. &lt;br /&gt;14. You like to take part in many social activities. &lt;br /&gt;15. You sometimes feel "just miserable" for no good reason at all. &lt;br /&gt;16. You are often so much " on the go" that sooner or later you may wear yourself out. &lt;br /&gt;17. You like parties you attend to be lively. &lt;br /&gt;18. If you hold an opinion that is radically different that expressed by a lecturer, you are likely to tell the &lt;br /&gt;person about it either during or after the lecture. &lt;br /&gt;19. It is difficult for you to chat about things in general with people. &lt;br /&gt;20. You give little thought to your failures after they are passed. &lt;br /&gt;21. You often wonder where others get all the excess energy they seem to have. &lt;br /&gt;22. You are inclined to stop to think things over before you act. &lt;br /&gt;23. You avoid arguing over a price with a clerk or sales person. &lt;br /&gt;24. You would dislike very much to work alone in some alone place. &lt;br /&gt;25. You often find it difficult to go to sleep at night because you keep thinking of what happened during the &lt;br /&gt;day. &lt;br /&gt;26. You find yourself hurrying to get to places even when there is plenty of time. &lt;br /&gt;27. You like work that requires considerable attention to details. &lt;br /&gt;28. You are satisfied to let some one else take the lead in group activities. &lt;br /&gt;29. You enjoy getting acquainted with people. &lt;br /&gt;30. It takes a lot to get you emotionally stirred up or excited. &lt;br /&gt;31. You work more slowly and deliberately than most people of your sex and age. &lt;br /&gt;32. You are a carefree individual. &lt;br /&gt;33. When people do not play fair you hesitate to say anything about it to them. &lt;br /&gt;34. It bothers you to have people watch you at your work. &lt;br /&gt;35. You have usually been optimistic about your future. &lt;br /&gt;36. You like to have plenty of time to stop and rest. &lt;br /&gt;37. You take life very seriously. &lt;br /&gt;38. You enjoy applying for a job in person. &lt;br /&gt;39. You would like to be a host or hostess for parties at club. &lt;br /&gt;40. You often feel uncomfortable or uneasy. &lt;br /&gt;41. You are the kind of person who is "on the go" all the time. &lt;br /&gt;42. You often crave excitement. &lt;br /&gt;43. The thought of making a speech frightens you. &lt;br /&gt;44. You find it easy to start conversation with strangers. &lt;br /&gt;45. You often feel guilty without a very good reason for it. &lt;br /&gt;46. People think you are a very energetic person. &lt;br /&gt;47. You sometimes make quick decisions that you later wish you hadn't made. &lt;br /&gt;48. You find it difficult to ask people for money or other donations, even for a cause in which you are &lt;br /&gt;interested. &lt;br /&gt;49. You are so naturally friendly that people immediately feel at ease with you. &lt;br /&gt;50. You daydream a great deal. &lt;br /&gt;51. You are quick in your actions. &lt;br /&gt;52. You have a habit of starting things and then losing interest in them. &lt;br /&gt;53. When you were a child many of your playmates naturally expected you to be the leader. &lt;br /&gt;54. You sometimes avoid social contacts for fear of doing or saying the wrong thing. &lt;br /&gt;55. You have frequent ups and downs in mood, sometimes with and sometimes without apparent cause. &lt;br /&gt;56. You always seem to have plenty of vigour and vitality. &lt;br /&gt;57. It is difficult for you to understand people who get very concerned about things. &lt;br /&gt;58. When a clerk in a store waits on others who come after you, you call his or her attention to the fact. &lt;br /&gt;59. You would be very unhappy if you were prevented from making numerous social contacts. &lt;br /&gt;60. There are times when your future looks very dark. &lt;br /&gt;61. You sometimes wish that people would slow down a bit and give you a chance to catch up. &lt;br /&gt;62. Many of your friends think you take your work too seriously. &lt;br /&gt;63. You hesitate to walk into a meeting when you know that everyone's eye will be upon you. &lt;br /&gt;64. You limit your friendships mostly to members of your own sex. &lt;br /&gt;65. You almost always feel well and strong. &lt;br /&gt;66. You seem to lack the drive necessary to get as much as other people do. &lt;br /&gt;67. You make decisions on the spur of the moment. &lt;br /&gt;68. You are rather good at bluffing when you find yourself in difficulty. &lt;br /&gt;69. After being introduced to someone , you just cannot think of things to say to make good conversation. &lt;br /&gt;70. You feel lonesome even when with other people. &lt;br /&gt;71. You are able to work for unusually long hours without feeling tired. &lt;br /&gt;72. You often act on the first thought that comes into your head. &lt;br /&gt;73. At the scene of an accident, you take an active part in helping out. &lt;br /&gt;74. You have difficulty in making new friends. &lt;br /&gt;75. Your mood often changes from happiness to sadness or vice versa without knowing why. &lt;br /&gt;76. You talk more slowly than most people. &lt;br /&gt;77. You like to play practical jokes upon others. &lt;br /&gt;78. You take the lead in putting life into a dull party. &lt;br /&gt;79. You would like to belong to as many clubs and social organizations as possible. &lt;br /&gt;80. There are times when your mind seems to work very slowly and other times when it works very rapidly. &lt;br /&gt;81. You like to do things slowly and deliberately. &lt;br /&gt;82. You are a happy-go-lucky individual. &lt;br /&gt;83. When you are served stale or inferior food in a restaurant, you say nothing about it. &lt;br /&gt;84. You would rather apply for a job by writing a letter than by going through with a personal interview. &lt;br /&gt;85. You are often in low spirits. &lt;br /&gt;86. You are inclined to rush from one activity to another without pausing enough for rest. &lt;br /&gt;87. You are so concerned about the future that you do not get as much fun out of the present as you might. &lt;br /&gt;88. When you are attracted to a person whom you have not met earlier you make an active attempt to get &lt;br /&gt;acquainted even though it may be quite difficult. &lt;br /&gt;89. You are inclined to limit your acquaintances to select few &lt;br /&gt;90. you seldom give your past mistakes a second thought. &lt;br /&gt;91. You are less energetic than many people you know. &lt;br /&gt;92. You often stop to analyzed your thoughts and feelings. &lt;br /&gt;93. You speak out in meetings to oppose those whom you feel sure are wrong. &lt;br /&gt;94. You are so shy it bothers you. &lt;br /&gt;95. You are sometimes bothered by having a useless thought come into your mind over and over. &lt;br /&gt;96. You get things in hurry. &lt;br /&gt;97. It is difficult for you to understand how some people can be so unconcerned about the future. &lt;br /&gt;98. You lie to sell things (i.e. to act as a sales person) &lt;br /&gt;99. You are often "Life of the Party". &lt;br /&gt;100. You find daydreaming very enjoyable. &lt;br /&gt;101. At work or at play other people find it hard to keep up with the pace you set. &lt;br /&gt;102. You can listen to a lecture without feeling restless. &lt;br /&gt;103. You would rather work for a good boss than for yourself. &lt;br /&gt;104. You can express yourself more easily in speech than in writing. &lt;br /&gt;105. You keep in fairly uniform spirits. &lt;br /&gt;106. You dislike to be hurried in your work. &lt;br /&gt;107. You sometimes find yourself "crossing bridges before you come to them". &lt;br /&gt;108. You find it somewhat difficult to say "no" to a sales person who tries to sell you something you do not &lt;br /&gt;really want. &lt;br /&gt;109. There are only a few friends with whom you can relax and have a good time. &lt;br /&gt;110. You usually keep cheerful in spite of trouble. &lt;br /&gt;111. People sometimes tell you to "slow down" or "take it easy". &lt;br /&gt;112. You are one of those who drink or smoke more than they know they should. &lt;br /&gt;113. When you think you recognize people you see in a public place, you ask them whether you have met &lt;br /&gt;them before. &lt;br /&gt;114. You prefer to work alone. &lt;br /&gt;115. Disappointment affect you so little that you seldom think about them twice. &lt;br /&gt;116. You are slow and deliberate in movements. &lt;br /&gt;117. You like wild enthusiasm, sometimes to a point bordering on rowdyism at a football or baseball game. &lt;br /&gt;118. You feel self conscious in the presence of important people. &lt;br /&gt;119. People think of you as being a very social type of person. &lt;br /&gt;120. You have often lost sleep over your worries. &lt;br /&gt;121. You can turn out a large amount of work in a short time. &lt;br /&gt;122. You keep at a task until it is done, even after nearly everyone else has given up. &lt;br /&gt;123. You can think of a good excuse when you need one. &lt;br /&gt;124. Other people say that it is difficult to get to know you well. &lt;br /&gt;125. You daydreams are often about things that can never come true. &lt;br /&gt;126. You often run upstairs taking two steps at a time. &lt;br /&gt;127. You seldom let your responsibility interfere with your having a good time. &lt;br /&gt;128. You like to take on important responsibilities such as organizing a new business. &lt;br /&gt;129. You have hesitated to make or to accept "dates" because of shyness. &lt;br /&gt;130. Your mood is very easily influenced by people around you. &lt;br /&gt;131. Others are often amazed by the amount of work you turn out. &lt;br /&gt;132. You generally feel as though you haven't a care in the world. &lt;br /&gt;133. You find it difficult to get rid of sales person whom you do not care to listen or give your time. &lt;br /&gt;134. You are a listener rather than a talker in a social conversation. &lt;br /&gt;135. You almost always feel that life is very much worth living. &lt;br /&gt;136. It irritates you to have to wait at a crossing for a long freight train to pass. &lt;br /&gt;137. You usually say what you feel like saying at the moment. &lt;br /&gt;138. You like to speak in public. &lt;br /&gt;139. You like to be with people. &lt;br /&gt;140. You generally keep cool and think clearly in exciting situations. &lt;br /&gt;141. Other people regard you as a lively individual. &lt;br /&gt;142. When you get angry, if you let yourself go, you feel better. &lt;br /&gt;143. You seek to avoid all trouble with other people. &lt;br /&gt;144. People seem to enjoy being with you. &lt;br /&gt;145. You sometimes feel listless and tired for no good reason. &lt;br /&gt;146. It is hard to understand why many people are so slow and get so little done. &lt;br /&gt;147. You are fond of betting on horse races and games, whether you can afford it or not. &lt;br /&gt;148. If someone you know has been spreading untrue and bad stories about you, you see the person as &lt;br /&gt;soon as possible and have a talk about it. &lt;br /&gt;149. Shyness keep you from being as popular as you should be. &lt;br /&gt;150. You are generally free from worry about possible misfortunes.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-67052310184698598?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/67052310184698598/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_31.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/67052310184698598'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/67052310184698598'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs_31.html' title='TCS'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-675648147053400214</id><published>2009-01-31T02:55:00.000-08:00</published><updated>2009-01-31T02:57:18.916-08:00</updated><title type='text'>TCS</title><content type='html'>Aptitude &lt;br /&gt;&lt;br /&gt;1. A family, planning a weekend trip, decides to spend not more than a total of 8 hours driving. By leaving early in the morning, they can average 40 miles per hour on the way to their destination. Due to the heavy Sunday traffic, they can average only 30 miles per hour on the return trip. What is the farthest distance from home they can plan to go? &lt;br /&gt;(a) 120 miles or less (b) Between 120and 140 miles (c) 140 miles &lt;br /&gt;(d) Between 140 and 160 miles (e) 160 miles or more &lt;br /&gt;&lt;br /&gt;2. A car is filled with four and half gallons of fuel for a round trip. If the amount of fuel taken while going is 1/4 more than the amount taken for coming, what is the amount of fuel consumed while coming back? &lt;br /&gt;(a) Less than 2 gallons (b) 2 gallons (c) 2 1/2 gallons &lt;br /&gt;(d) 3 gallons (e) More than 3 gallons &lt;br /&gt;&lt;br /&gt;3. A 3-gallon mixture contains one part S and two parts R. In order to change it to a mixture containing 25% S, how much R should be added? &lt;br /&gt;(a) 1/2 gallon (b) 2/3 gallon (c) 3/4 gallon (d) 1 gallon (e) 1 1/2 gallon &lt;br /&gt;&lt;br /&gt;4. A tree grows only 3/5 as fast as the one beside it. In four years the combined growth of the two trees is eight feet. &lt;br /&gt;How much does the shorter tree grow in two years? &lt;br /&gt;(a) Less than 2 feet (b) 2 feet (c) 2 1/2 feet &lt;br /&gt;(d) 3 feet (e) more than 3 feet. &lt;br /&gt;&lt;br /&gt;5. Wind flows at 160 miles in 330 minutes, for traveling 80 miles how much time does it require? &lt;br /&gt;(a) 1 hour 30 minutes (b) 1 hour 45 minutes (c) 2 hours &lt;br /&gt;(d) 2 hours 45 minutes (e) 3 hours &lt;br /&gt;&lt;br /&gt;6. A stationary engine has enough fuel to run 12 hours when its tank is 4/5 full. How long will it run when the tank is 1/3 full? &lt;br /&gt;(a) Less than 2 hours (b) 2 hours (c) 3 hours &lt;br /&gt;(d) 4 hours (e) 5 hours &lt;br /&gt;&lt;br /&gt;7. If A is traveling at 72 km per hour on a highway. B is traveling at a speed of 25 meters per second on a highway. What is the difference in their speeds in meters per second? &lt;br /&gt;(a) 1/2 m/sec (b) 1 m/sec (c) 1 1/2 m/sec &lt;br /&gt;(d) 2 m/sec (e) 3 m/sec &lt;br /&gt;&lt;br /&gt;8. A salesperson by mistake multiplied a number and got the answer as 3, instead of dividing the number by 3. What is the answer he should have actually got? &lt;br /&gt;(a) 0 (b) 1/3 (c) 1 (d) 2 (e) 3 &lt;br /&gt;&lt;br /&gt;9. If the length of a rectangle is increased by 30% and the width is decreased by 20%, then the area is increased by... &lt;br /&gt;(a) 10% (b) 5% (c) 4% (d) 20% (e) 25% &lt;br /&gt;&lt;br /&gt;10. In the class of 40 students, 30 speak Hindi and 20 speak English. What is the lowest possible number of students who speak both the languages? &lt;br /&gt;(a) 5 (b) 20 (c) 15 (d) 10 (e) 30 &lt;br /&gt;&lt;br /&gt;11. The most economical prices among the following prices is: &lt;br /&gt;(a) 10 kilo for Rs.160 (b) 2 kilo for Rs.30 (c) 4 kilo for Rs.70 &lt;br /&gt;(d) 20 kilo for Rs.340 (e) 8 kilo for Rs.130 &lt;br /&gt;&lt;br /&gt;12. A truck contains 150 small packages, some weighing 1 kg each and some weighing 2 kg each. how many packages weighing 2 kg each are in the truck if the total weight of all the packages is 264 kg? &lt;br /&gt;(a) 36 (b) 52 (c) 88 (d) 124 (e) 114 &lt;br /&gt;&lt;br /&gt;13. A man was arrested for exceeding the speed limit by 10 miles an hour. A second man was charged with exceeding the same limit by twice as much. The second man was driving 35 miles per hour. What was the speed limit? &lt;br /&gt;(a) 10 miles per hour (b) 15 miles per hour (c) 20 miles per hour &lt;br /&gt;(d) 25 miles per hour (e) 30 miles per hour &lt;br /&gt;&lt;br /&gt;14. One year ago Pandit was three times his sister's age. Next year he will be only twice her age. How old will Pandit be after five years? &lt;br /&gt;(a) 8 (b) 12 (c) 11 (d) 13 (e) 15 &lt;br /&gt;&lt;br /&gt;15. If two pencils cost 8 cents, then how much do 5 pencils cost? &lt;br /&gt;(a) 18 cents (b) 20 cents (c) 22 cents (d) 23 cents (e) 24 cents &lt;br /&gt;&lt;br /&gt;Passage &lt;br /&gt;&lt;br /&gt;All the questions are of multiple choice type. You have to answer the questions based on the preceding paragraph. All the questions have the same answer choice. The choices are as given below: &lt;br /&gt;(a) True. &lt;br /&gt;(b) False. &lt;br /&gt;(c) Cannot Say. &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;Researchers in Mumbai have found that certain types of gallstones can be dissolved by injecting them with a gasoline additive in the form of ether. The ether is injected through a tube directly into the gall bladder. The one-day treatment works only on cholesterol-based stones, not those composed largely of calcium. However, as the cholesterol stones are by far the most common type, for millions of gallstone sufferers the treatment should offer a welcome alternative to surgery, the commonest option in most hospitals. &lt;br /&gt;&lt;br /&gt;# "It takes more than one day for ether to dissolve a calcium-based gallstone". &lt;br /&gt;&lt;br /&gt;# "Gallstones can only be dissolved by injections". &lt;br /&gt;&lt;br /&gt;# "Gallstones can quickly be cured with surgery". &lt;br /&gt;&lt;br /&gt;# "Ether is largely used for dissolving gallstones". &lt;br /&gt;&lt;br /&gt;# "Calcium stones can be cured in one day". &lt;br /&gt;&lt;br /&gt;# "Hundreds of people contains calcium stones". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;My father had no brothers, but his three sisters are all married and each has two children. My grandfather has two sons. &lt;br /&gt;&lt;br /&gt;# "My father was the only child". &lt;br /&gt;&lt;br /&gt;# "I have only one uncle". &lt;br /&gt;&lt;br /&gt;# "One of my aunts is a spinster". &lt;br /&gt;&lt;br /&gt;# "I have six cousins on my father's side". &lt;br /&gt;&lt;br /&gt;# "My grandfather was the only son". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;In the Totalitarian days, the words have very much devalued. In the present day, they are becoming domestic, that is, the words will be much more devalued. In that days, the words will be very much effected in political area. But at present, the words came very cheap. We can say they come free at cost. &lt;br /&gt;&lt;br /&gt;# "In Totalitarian society, words are devalued". &lt;br /&gt;&lt;br /&gt;# "Totalitarians will have to come much about words". &lt;br /&gt;&lt;br /&gt;# "In the Totalitarian society the words are used for the political speeches". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;In past helicopters were forced to ground or crash because of the formation of the ice on the rotors and engines. A new electronic device has been developed which can detect the water content in the atmosphere and warns the pilot, if the temperature is below freezing temperature; about the formation of ice on the rotors and wings. &lt;br /&gt;&lt;br /&gt;# "The electronic device can avoid the formation of ice on the wings". &lt;br /&gt;&lt;br /&gt;# "There will be malfunction of rotor and engine because of formation of ice". &lt;br /&gt;&lt;br /&gt;# "The helicopters were to be crashed or grounded". &lt;br /&gt;&lt;br /&gt;# "There is only one device that warns about the formation of ice". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;Human existence is not susceptible of arbitrary division between consciousness and unconsciousness. The conscious world invaders and shapes the activities of the unconscious, while many of the great achievements of humanity's waking hours where wholly or partly inspired by dreams. Even if it could argued that dreams precede experience such a dichotomy could not be drawn, as the influence of the dreaming on the waking state would remain unclear, but as yet no common vocabulary exists to record the substance of prenatal dreaming. &lt;br /&gt;&lt;br /&gt;# "Sleep can be a creative state". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;FLORA 3-piece sofa-set is at the top of our upholstery range. This high-backed quality sofa-set boasts an impressive specification which starts with a hardwood frame in teak and a padded front edge ensuring really deep, long-lasting comfort. Seat cushions are of high resilience foam and back cushions of softest hollow fill. The whole set is carefully upholstered throughout in a choice of superb fabrics ranging from cotton print to velvet. &lt;br /&gt;&lt;br /&gt;# "The padding is there to ensure that the furniture will last for a long time". &lt;br /&gt;&lt;br /&gt;# "The firm sells other upholstery furniture". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;Hacking is a crime made possible by a relatively new technology, which is one of the reasons it is often poorly understood and reported. Many computers, but by no means all, are now linked together in networks which allow users on one computer to communicate with others on the same network. If a computer is not networked, no manipulation of its data from another machine possible. So long as users are authorized, networking is just a way of making work easier more productive. Hacking, on the other hand is the unauthorized use of networks or unauthorized entry into the computers themselves. Most people do not break into the networks they use, since they are already accredited users. &lt;br /&gt;&lt;br /&gt;# "Hackers do not work for the firms whose networks they break into". &lt;br /&gt;&lt;br /&gt;# "Hacking is the only vulnerability of the computers for the usage of the data". &lt;br /&gt;&lt;br /&gt;# "Hacking is done mostly due to the lack of computer knowledge". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;Polycythemia often occurs in people who have chronic lung disease, but can appear spontaneously in healthy individuals. Excessive numbers of red blood cells manufactured by the body and the individual then develops a very healthy-looking, ruddy complexion. The blood becomes thicker and is liable to clot and block major blood vessels. High blood pressure is another frequent complication. Treatment involves venesection, in which a liter or so of blood is removed from the body. Medication may also be given to reduce the numbers of red blood cells manufactured in the body. &lt;br /&gt;&lt;br /&gt;# "Lung disease frequently precedes polycythemia". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;Bindweed is only effectively controlled by applying a solution of brushwood-killer to the growing tips. It is necessary to unwind a suitable length from the host plant before treatment, but this is not so very difficult, and it does not seem essential to find and treat every leader on the same weed. The solution should be made up in a can which is carried in one hand, while the other, in a rubber glove, inserts the leaders in the can. If the the leaders can be laid out on the the ground , they can easily be wetted with a small brush. As long as the weather is calm, there is no real risk of damage to adjacent plants, and in two or three weeks the weeds should have disappeared. &lt;br /&gt;&lt;br /&gt;# "Brushwood-killer can pose a threat to other plants in the garden". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;Senior managers in a leading company said that new Japanese investment in India was transforming the car industry, and warned that jobs were under threat from Japanese competition. They stated that increasing competition would be coupled with an inevitable downturn in the car market and the recent rise interest rates which has already hit demand. &lt;br /&gt;&lt;br /&gt;# "The managers issued their warning after a rise in the interest rates". &lt;br /&gt;&lt;br /&gt;# "According to the senior managers, the Japanese investment in India will lead to a glut in the car market". &lt;br /&gt;&lt;br /&gt;# "Some senior managers said that more people will want to by new cars in the future". &lt;br /&gt;&lt;br /&gt;# "The perception of the senior managers is the new Japanese investment in India is leading to more automation of the car industry". &lt;br /&gt;&lt;br /&gt;# "The increased rate of interest will mean that Japanese firms will cease to operate in this country". &lt;br /&gt;&lt;br /&gt;# "The increase in loan interest will adversely affect car sales". &lt;br /&gt;&lt;br /&gt;# "Japanese workers are taking over the jobs of Indian industry". &lt;br /&gt;&lt;br /&gt;# "Managers said that interests in car will go down after seeing the raise in interest rates". &lt;br /&gt;&lt;br /&gt;# "People are very interested to buy the cars". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;The new Starfire has an advanced four-cylinder engine with catalytic converter and uses only unleaded petrol. Versatility is a major feature of the range and the 1500 and 1800 models have the same high level of specification inside and out. The only obvious visual difference, internally and externally, is the use of alloy wheels on the 1800 version, together with a discreet change in badging. The StarFire 2000 is distinguished by its tailgate spoiler and the rectangular fog and driving lamps integrated into the front bumper which are also included in the specification. &lt;br /&gt;&lt;br /&gt;# "Internally, the Starfire 2000 looks like the 1500 model". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;Pierre Claude Jean Allouez explored lake superior from 1665 to 1667. At his little mission station near the western end of the lake, he heard from the Indians of a great river to the west. Pierre Jacques Marquette determined to investigate. In 1673, accompanied by Louis Jolliet and five others, he left St. Ignace mission and ascended the fox river, which flows into green bay crossed over to Wisconsin river and followed it to the upper Mississippi. The party then descended the Mississippi to the mouth of Arkansas. These Frenchmen were not first Europeans to sight or travel the Mississippi. De Soto and Moscoso had done so a century and a half before. The report of the exploration was rushed back to Quebec, where, in 1672, Count Frontenac had arrived as Governor of the province. He and his friend, the remarkable La Salle-who earlier may have penetrated the Ohio river valley-listened with deep interest. &lt;br /&gt;&lt;br /&gt;# "Allouez explored the western end of lake superior". &lt;br /&gt;&lt;br /&gt;# "Marquette and his party were not the first French men to travel the Mississippi river". &lt;br /&gt;&lt;br /&gt;# "La Salle listened with deep interest- the report of exploration of De Soto and Moscoso". &lt;br /&gt;&lt;br /&gt;# "La Salle explored the Mississippi river valley". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;Dr. Goddard was the first to fire a rocket that reached a speed faster than the speed of sound. He was the first to develop a gyroscopic steering apparatus for rockets. He was the first to use vanes in the jet stream for rocket stabilization during the initial phase of a rocket flight. And he was the first to patent the idea of step rockets. After proving on paper and in actual tests that a rocket can travel in vacuum, he developed the mathematical theory of rocket propulsion and rocket flight, including basic designs for long-range rockets. All of this information was available to our military men before World War II, but evidently its immediate use didn't seem applicable. Near the end of World War II we started intense work on rocket-powered guided missiles, using the experiments and developments of Dr. Goddard and the American Rocket Society. &lt;br /&gt;&lt;br /&gt;# "The stabilization problem of rockets in the initial phase was solved by Dr. Goddard." &lt;br /&gt;&lt;br /&gt;# "Rockets can travel faster than sound, thanks to gyroscopic steering." &lt;br /&gt;&lt;br /&gt;# "Goddard lived before World War II". &lt;br /&gt;&lt;br /&gt;# "After careful mathematical calculations, Dr. Goddard proved that rockets can travel in vacuum". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;In March 1513, de Leon sailed off confidently from Peuto Rico for the Bahamas. Landing briefly at San Salvador, Bahamas, he wound through unchartered islands until he sighted an extensive coastline. He had no reason to suspect that it is anything more than an island, but he followed the coast for a day without rounding its end or finding a suitable landing place. He named the "island" La Florida. This name came to be applied by the Spanish to the entire Southeastern United States and beyond. Then, near the 30th parallel, de Leon landed at the mouth of the St. Johns river. Determined to be the first to circumnavigate the "island", he turned south, traced the coast around the tip of the peninsula, moved to the west, perhaps reaching Tampa bay. After 7 weeks, he gave up hope of circling the northern tip of this "island"; it was incredibly large and he may have suspected that he had discovered the long sought mainland. If so, it all belonged to his King, for he had earlier planted the Spanish flag and claimed Florida for Ferdinand. &lt;br /&gt;&lt;br /&gt;# "de Leon is from Spain, ruled by Ferdinand". &lt;br /&gt;&lt;br /&gt;# "de Leon is very patriotic". &lt;br /&gt;&lt;br /&gt;# "de Leon discovered part of US during his journey". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;James Madison understood that interests groups will inevitably develop within a free political system. The problem, as Madison saw it, was to prevent any single interest group from becoming so strong that it was able to dominate the political system. This could be accomplished by legislating restrictions on political behavior, but that solution meant a sacrifice of some of the freedom that Madison prized so highly. A better solution, he thought, was to extend the territorial scope of the government. This would allow for greater diversity of interests in the nation, and a greater number of groups competing for power. Each interest group would thereby find it more difficult to appeal to a majority of the people, and to dominate the political process. &lt;br /&gt;&lt;br /&gt;# "The more interest groups there are in a political system, the less freedom there is for everyone." &lt;br /&gt;&lt;br /&gt;# "Legislating restrictions on political behavior is sometimes the only method of preserving political freedom." &lt;br /&gt;&lt;br /&gt;# "Increasing the territorial scope of a government can help to preserve freedom." &lt;br /&gt;&lt;br /&gt;# "According to Madison, in a free political system, interest groups are undesirable." &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;The regulations and expenses to invent, patent and market new ideas and products imposes a heavy burden on inventors. The cost is often absorbed by large corporations with research and development facilities they provide. Corporations also help creative people contribute to society without suffering the loss of income or security of the private inventor. The realities of this arrangement are that many good ideas are never brought into the marketplace and the cost of products on the market is high because of the development cost. However, protection provided by the patents and the safety to the public to avoid placing harmful products on the market is important to maintain. Thus, as is often the case, rules and regulations have their favorable and unfavorable consequences. &lt;br /&gt;&lt;br /&gt;# "The regulations and expenses to invent, patent and market new ideas is an expensive proposition to the inventors". &lt;br /&gt;&lt;br /&gt;# "Good ideas are never brought into the marketplace because of the costs involved in inventing, patenting marketing them". &lt;br /&gt;&lt;br /&gt;# "Corporations steal the individual inventor of their inventions". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;Being born female and black were two handicaps Gwendolyn Brooks states that she faced from her birth, in 1917, in Kansas. Brooks was determined to succeed. Despite the lack of encouragement she received from her teachers and others, she was determined to write and found the first publisher for one of her poems when she was 11. In 1945, she marketed and sold her first book; national recognition ensued. She applied for and received grants and fellowships from such organizations as the AAAL and the Guggenheim Foundation. Later she received the Pulitzer prize for poetry; she was the first black woman to receive such an honor. Brooks' reaction to fame is atypical. She continues to work and work hard. She writes, travels, and helps many who are interested in writing. Especially important for her is increasing her knowledge of her black heritage and encouraging other people to do the same. She encourages dedication to the art to would-be writers. &lt;br /&gt;&lt;br /&gt;# "Brooks' story illustrates the power of strong determination". &lt;br /&gt;&lt;br /&gt;# "She became the author of a book in her teens". &lt;br /&gt;&lt;br /&gt;# "Gwendolyn received the Pulitzer prize for her first poetry". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;A cave is a natural opening in the ground extending beyond the zone of light and large enough to permit the entry of man. Occurring in a wide variety of rock types and caused by widely differing geological processes, caves range in size from single small rooms to interconnecting passages many miles long. The scientific study of caves is called speleology. It is a composite science based on geology, hydrology, biology and archeology, and thus holds special interest for earth scientists. Caves have been natural attractions since prehistoric times. Prolific evidence of early man's interest has been discovered in caves scattered throughout the world. Skeletons of some of the earliest manlike creatures (Australopithecines) have been discovered in cave deposit in South Africa, and the first evidence of primitive Neanderthal man was found in Germany. Cro-Magnon man created his remarkable murals on the walls of caves in France. &lt;br /&gt;&lt;br /&gt;# "Primitive human form originated in Germany". &lt;br /&gt;&lt;br /&gt;# "Study of caves is the study of earth, water, life and early man". &lt;br /&gt;&lt;br /&gt;# "Cro-Magnon man was more intelligent than Neanderthal man". &lt;br /&gt;&lt;br /&gt;# "Caves are a natural attraction because they reveal information about the early man". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;Although invaders represent the threat to the conservation of flora and fauna, there are two special cases in which invasion have been deliberately brought about. One is the desire to control pests by natural predators, which may have to be brought from other countries. The second is releasing organisms into the wild (or on to farms, from which they might escape) that are completely novel, because they have been genetically engineered. There is nothing intrinsically sinister about engineered organisms, but any novelty must be regarded as potential invader. &lt;br /&gt;&lt;br /&gt;# "Pests are more dangerous than their natural predators". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;Life in colonial times was harsh, and the refinements of the mother country were ordinarily lacking. The colonists, however, soon began to mold their English culture into the fresh environment of new land. The influence of religion permeated the entire way of life. In most Southern colonies, the Anglican church was the legally established church. In New England, the Puritans were dominant; and in Pennsylvania, the Quakers. Especially in the New England colonies, the local or village church was the hub of community life; the authorities strictly enforced the Sabbath and sometimes banished non-believers. Unfortunately, the same sort of religious intolerance, bigotry and superstition associated with the age of Reformation in Europe also prevailed in some of the colonies, though on a lesser scale. In the last half of the 17th century, during sporadic outbreak of religious fanaticism and hysteria, Connecticut authorities tried and hanged several women as "witches". Early in the 17th century, some other witchcraft persecution occurred in Virginia. As the decades passed, however, religious tolerance developed in colonies. &lt;br /&gt;&lt;br /&gt;# "New England was part of the Southern colonies". &lt;br /&gt;&lt;br /&gt;# "During the mid 17th century there was significant improvement in religious tolerance and superstition". &lt;br /&gt;&lt;br /&gt;# "Life in colonial times was harsh due to the strong influence of religion". &lt;br /&gt;&lt;br /&gt;# "The Anglican church used to govern the people in most Southern colonies". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;Confucius said that to know the future we have to understand the past. in his time, transport, communications and scientific knowledge were less developed than they are today. news took weeks to travel whereas today satellite links connect the continents virtually instantaneously, but our technological advances in the field of communications seem not to improved our capacity to understand one another. &lt;br /&gt;&lt;br /&gt;# "We understand each other better now than in Confucius' time because we can travel more quickly". &lt;br /&gt;&lt;br /&gt;# "In Confucius' day people were more intelligent". &lt;br /&gt;&lt;br /&gt;# "We have made great improvements in transport since Confucius' day". &lt;br /&gt;&lt;br /&gt;# "Technological advances in communication and human capacity to understand one another are directly proportional". &lt;br /&gt;&lt;br /&gt;# "In Confucius' day time news took months to travel". &lt;br /&gt;&lt;br /&gt;# "According to Confucius the past has a linkage to the future". &lt;br /&gt;&lt;br /&gt;# "Even with the fast developments of the technology we can't live happily". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;Every form of art is protected by copyright, upon the expiration of which the property passes to the public domain and becomes freely available to anyone wishing to exploit it commercially. the time has come when all treasures should pass to the control of a trust, and by this be made readily available to anyone on payment of a fee or royalty. The income from the works Van Gogh would alone be enormous. Those who now gain financial benefit from his genius should make some contribution to the welfare of the arts in general. &lt;br /&gt;&lt;br /&gt;# "Instead of buying a ticket, museum goers should pay a fee to a trust for the benefit of arts". &lt;br /&gt;&lt;br /&gt;# "It is not desirable to pass the control of treasures to a trust". &lt;br /&gt;&lt;br /&gt;# "Van Gogh's paintings are not protected by copyright". &lt;br /&gt;&lt;br /&gt;# "All artworks must be managed by a trust, so that the income generated can be used for the welfare of the arts". &lt;br /&gt;&lt;br /&gt;# "Copyright in art is valid only for a limited period of time". &lt;br /&gt;&lt;br /&gt;# "Van Gogh's descendants should be asked to make some contribution to the arts". &lt;br /&gt;&lt;br /&gt;# "Van Gogh's works are under this copy right rule". &lt;br /&gt;&lt;br /&gt;# "People are free to go to the public because of the copy right rule". &lt;br /&gt;&lt;br /&gt;# "People gives to theater and collect the money for development". &lt;br /&gt;&lt;br /&gt;# "We have asked the Van Gogh descendants to help for the developments of art". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;Organizing the home can be perceived as conferring power, so large numbers of women are unwilling to let go of chores, even when they have careers. A survey found that, out of 65 new marriages, not one single wife expected her husband to share work equally. According to the Family Policy Studies Center, 81% of working wives return home to do all the cooking. The average male has nearly half as much as more free time at weekends than his wife, and the typical new father spends just 37 seconds a day talking to his baby. &lt;br /&gt;&lt;br /&gt;# "Only career women perceive organizing the home as conferring power". &lt;br /&gt;&lt;br /&gt;# "The average wife has half as much free time at weekends as her husband". &lt;br /&gt;&lt;br /&gt;# "The family planning studies center shows that 81% working wives do all the cooking at home". &lt;br /&gt;&lt;br /&gt;# "19% working wives do not want to do the cooking at home". &lt;br /&gt;&lt;br /&gt;# "Housewives want the husbands to take part equally in the household". &lt;br /&gt;&lt;br /&gt;# "Wives have half as much leisure time as the husbands have". &lt;br /&gt;&lt;br /&gt;# "39% of the men will work equally in the house in cleaning and washing". &lt;br /&gt;&lt;br /&gt;Consider the following paragraph: &lt;br /&gt;Statistics show that millions of vehicles have been carried by shuttle over the past 30 years through Alpine tunnels without one ever catching fire. In the Alpine tunnels, drivers and passengers sit in their vehicles on the shuttle trains. Only one vehicle has ever caught fire on the busy French motorail equivalent system. This sort of accident is not possible in a closed shuttle. Assertion that a vehicle fire will lead to catastrophe have no basis. Since the resources exist to detect, control and extinguish a fire, and to remove any persons present safely to an adjoining wagon, leaving any surviving fire facing rapid extinction within a wagon built to contain fire for 30 minutes, catastrophe seems very unlikely. &lt;br /&gt;&lt;br /&gt;# " It is theoretically possible for a vehicle to catch fire even in a closed wagon". &lt;br /&gt;&lt;br /&gt;# " The French motorail system is inferior to the shuttle train system." &lt;br /&gt;&lt;br /&gt;# "No accident can occur in the closed tunnels". &lt;br /&gt;&lt;br /&gt;# "Fire is allowed to live for 30 min". &lt;br /&gt;&lt;br /&gt;# "All the cars that travel in the tunnels will be carried by rail shutters".&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-675648147053400214?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/675648147053400214/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/675648147053400214'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/675648147053400214'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/tcs.html' title='TCS'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-400831143374979434</id><published>2009-01-31T02:53:00.000-08:00</published><updated>2009-01-31T02:55:12.906-08:00</updated><title type='text'>Bhel</title><content type='html'>classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Consider the following expressions indicating the step or impulse response of an initially relaxed control system-&lt;br /&gt;&lt;br /&gt; 1. (5 – 4e-2+) u(t)&lt;br /&gt;&lt;br /&gt; 2. (e-2t +5) (u(t))&lt;br /&gt;&lt;br /&gt; 3 .V(t) + 8e-2t u(t)&lt;br /&gt;&lt;br /&gt; 4 . V(t) + 4e-2t 4(t)&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; Those which correspond to the step and impulse response of the same system include-&lt;br /&gt;&lt;br /&gt; 1&amp;3&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; Which is the following relate to rational transfer function of a system-&lt;br /&gt;&lt;br /&gt; 1. Ratio of Fourier transform of output to input with zero initial conditions.&lt;br /&gt;&lt;br /&gt; 2. Ratio of Laplace transform of output to input with zero initial conditions.&lt;br /&gt;&lt;br /&gt; 3. Laplace transform of system impulse response.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Laplace transform of system unit step response select the correct answer using the codes given below.&lt;br /&gt;&lt;br /&gt; Codes&lt;br /&gt;&lt;br /&gt; a.) 1 and 4&lt;br /&gt;&lt;br /&gt; b.) 2 and 3&lt;br /&gt;&lt;br /&gt; c.) 1 and 3&lt;br /&gt;&lt;br /&gt; d.) 2 and 4&lt;br /&gt;&lt;br /&gt; For the signal g (t) – 10 cos (50 pt) cos2 (150at)&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; The Nyquist sampling state in t seconds is&lt;br /&gt;&lt;br /&gt; a.) 150 samples per second&lt;br /&gt;&lt;br /&gt; b.) 200 samples per second&lt;br /&gt;&lt;br /&gt; c.) 300 samples per second&lt;br /&gt;&lt;br /&gt; d.) 350 samples per second&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; In the case of a 70 MHz 1F carries for a transponder band width of 36 MHz; energy must lie between – MHz.&lt;br /&gt;&lt;br /&gt; a.) 34 and 106&lt;br /&gt;&lt;br /&gt; b.) 52. And 88 &lt;br /&gt;&lt;br /&gt; c.) 106 and 142&lt;br /&gt;&lt;br /&gt; d.) 34 and 142&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; Radar used to eliminate clutter in navigational application is –&lt;br /&gt;&lt;br /&gt; a.) Pulse radar&lt;br /&gt;&lt;br /&gt; b.) Tracking radar&lt;br /&gt;&lt;br /&gt; c.) MTI radar&lt;br /&gt;&lt;br /&gt; d.) Mono pulse radar&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; The 1.55 mm windows is not yet in use with fiber optic systems because –&lt;br /&gt;&lt;br /&gt; a.) The attenuation is higher than at 0.85 mm &lt;br /&gt;&lt;br /&gt; b) The attenuation is higher than at 1.3mm&lt;br /&gt;&lt;br /&gt; c.) Suitable laser devices have not yet been developed&lt;br /&gt;&lt;br /&gt; d.) It does not lend itself to wavelength multiplexing&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; Pre-emphasis in FM systems involves-&lt;br /&gt;&lt;br /&gt; a.) Compression of the modulating signal&lt;br /&gt;&lt;br /&gt; b.) Expansion of the modulating signal &lt;br /&gt;&lt;br /&gt; c.) Amplification of lower frequency components of the modulating signal. &lt;br /&gt;&lt;br /&gt; d.) Amplification of higher frequency components of the modulating signal. &lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; In a terrestrial microwave system transmission of signals is achieved through-&lt;br /&gt;&lt;br /&gt; a.) reflection from the ionosphere&lt;br /&gt;&lt;br /&gt; b.) line of sight mode &lt;br /&gt;&lt;br /&gt; c) reflection from the ground &lt;br /&gt;&lt;br /&gt; d.) diffraction from the stratosphere. &lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Casse grain feed is used with a parabolic reflector to&lt;br /&gt;&lt;br /&gt; a.) increase the gain of the system&lt;br /&gt;&lt;br /&gt; b). increase the bandwidth of the system &lt;br /&gt;&lt;br /&gt; c.) reduce the size of the main reflector &lt;br /&gt;&lt;br /&gt; d.) allow the feed to be placed at a convenient point. &lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; In most microwave communication link rain drop attenuation is caused due to-&lt;br /&gt;&lt;br /&gt; a.) scattering of microwaves by water drops of specific size.&lt;br /&gt;&lt;br /&gt; b) scattering of microwaves by a collection of droplets acing as a single body.&lt;br /&gt;&lt;br /&gt; c.) absorption of microwaves by water and consequent heating of the liquid&lt;br /&gt;&lt;br /&gt; d.) absorption of the microwaves by water vapor in the atmosphere.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; When a (75 – j40)W load is connected to a coaxial line of Z0 = 75 W at 6MHz then the load matching on the line can be accomplished by connecting-&lt;br /&gt;&lt;br /&gt; a.) A short – circuited stub at the load&lt;br /&gt;&lt;br /&gt; b.)An inductance at the load&lt;br /&gt;&lt;br /&gt; c. )A short circuited stub at a specific distance from the load&lt;br /&gt;&lt;br /&gt; d.)none of the above&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;As compared to analog multimeters, digital multimeters are –&lt;br /&gt;&lt;br /&gt; a.) less accurate&lt;br /&gt;&lt;br /&gt; b.) more accurate&lt;br /&gt;&lt;br /&gt; c.) equally accurate&lt;br /&gt;&lt;br /&gt; d.) none.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; When a signal of 10 mV at 75 MHz is to be measured then which of the following instruments can be used –&lt;br /&gt;&lt;br /&gt; a.) VTVM&lt;br /&gt;&lt;br /&gt; b.) Cathode ray oscilloscope&lt;br /&gt;&lt;br /&gt; c.) Moving iron voltmeter&lt;br /&gt;&lt;br /&gt; d.) Digital multimeter&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; Amplifier of class B has high theoretical efficiency of 78.5 percent because-&lt;br /&gt;&lt;br /&gt; a.) It is biased almost to saturation&lt;br /&gt;&lt;br /&gt; b.)Its quiescent current is low&lt;br /&gt;&lt;br /&gt; c.)It’s output is an exact replica of it’s input&lt;br /&gt;&lt;br /&gt; d.)It is biased well below cut off&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; The coupling that produces minimum interference with frequency response is-&lt;br /&gt;&lt;br /&gt; a.) Direct coupling&lt;br /&gt;&lt;br /&gt; b.)Impedance coupling&lt;br /&gt;&lt;br /&gt; c.) R C coupling&lt;br /&gt;&lt;br /&gt; d.)Transformer coupling&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; A superconductor is a –&lt;br /&gt;&lt;br /&gt; a.) A material showing perfect conductivity and Meissner effect below a critical temperature&lt;br /&gt;&lt;br /&gt; b.) A conductor having zero resistance&lt;br /&gt;&lt;br /&gt; c.) A perfect conductor with highest di-magnetic susceptibility&lt;br /&gt;&lt;br /&gt; d.) A perfect conductor which becomes resistance when the current density through it exceeds a critical value&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; When an inductor tunes at 200 KHz with 624 pF capacitor and at 600 KHz with 60.4 pF capacitor then the self capacitance of the inductor would be –&lt;br /&gt;&lt;br /&gt; a) 8.05 pF&lt;br /&gt;&lt;br /&gt; b) 10.05pF&lt;br /&gt;&lt;br /&gt; c.) 16.01pF&lt;br /&gt;&lt;br /&gt; d.) 20.01pF&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; The Q of a radio coil –&lt;br /&gt;&lt;br /&gt; a.) is independent of frequency&lt;br /&gt;&lt;br /&gt; b.) increases monotonically as frequency increases&lt;br /&gt;&lt;br /&gt; c.) decreases monotonically as frequency increases&lt;br /&gt;&lt;br /&gt; d.) increases upto a certain frequency and then decreases beyond that frequency&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; When a generator of internal impedance and operating at 1GHz feeds a load via a coaxial line of characteristic impedance 50 ohm then the voltage wave ratio on the feed line is –&lt;br /&gt;&lt;br /&gt; a.) 0.5&lt;br /&gt;&lt;br /&gt; b.) 1.5&lt;br /&gt;&lt;br /&gt; c.) 2.5&lt;br /&gt;&lt;br /&gt; d.) 1.75&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; The coding system typically used in digital telemetry is –&lt;br /&gt;&lt;br /&gt; a.) PPM (pulse position modulation)&lt;br /&gt;&lt;br /&gt; b.) PAM (pulse amplitude modulation)&lt;br /&gt;&lt;br /&gt; c.) PCM (pulse code modulation)&lt;br /&gt;&lt;br /&gt; d.) PDM (pulse duration modulation)&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; Radiation pyrometers are used for the measurement of temperature in the range of &lt;br /&gt;&lt;br /&gt; a.) -2000C to 5000C&lt;br /&gt;&lt;br /&gt; b.) 00C to 5000C&lt;br /&gt;&lt;br /&gt; c.) 5000C to 12000C&lt;br /&gt;&lt;br /&gt; d.) 12000C to 25000C&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; RF amplifier of an A.M. receiver is normally biased in –&lt;br /&gt;&lt;br /&gt; a.) Class 'A'&lt;br /&gt;&lt;br /&gt; b.) Class 'b'&lt;br /&gt;&lt;br /&gt; c.) Class 'C'&lt;br /&gt;&lt;br /&gt; d.) None &lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt; The value of gate voltage for the operation of enhancement of only N channel MOSFET has to be –&lt;br /&gt;&lt;br /&gt; a.) High positive&lt;br /&gt;&lt;br /&gt; b.) High negative&lt;br /&gt;&lt;br /&gt; c.) Low positive&lt;br /&gt;&lt;br /&gt; d.) Zero&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-400831143374979434?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/400831143374979434/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/bhel.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/400831143374979434'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/400831143374979434'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/bhel.html' title='Bhel'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-6960740620799555963</id><published>2009-01-31T02:51:00.000-08:00</published><updated>2009-01-31T02:53:19.972-08:00</updated><title type='text'>PNB</title><content type='html'>classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;COMPUTER GENERAL KNOWLEDGE QUIZ&lt;br /&gt;&lt;br /&gt;1. Why the document you created at home displays with a different font at school?&lt;br /&gt;&lt;br /&gt;Because you have a different printer at school than at home&lt;br /&gt;&lt;br /&gt;Because you have a different monitor at school than at home&lt;br /&gt;&lt;br /&gt;font you used at home is not installed on your school computer&lt;br /&gt;&lt;br /&gt;Because the version of Windows is different&lt;br /&gt;&lt;br /&gt;2. Which keyboard shortcut centers selected text?&lt;br /&gt;&lt;br /&gt;Ctrl+C&lt;br /&gt;&lt;br /&gt;Alt+C&lt;br /&gt;&lt;br /&gt;There is no keyboard shortcut for this operation&lt;br /&gt;&lt;br /&gt;Ctrl+E&lt;br /&gt;&lt;br /&gt;3. What is the default file extension for all Word documents?&lt;br /&gt;&lt;br /&gt;TXT&lt;br /&gt;&lt;br /&gt;WRD&lt;br /&gt;&lt;br /&gt;FIL&lt;br /&gt;&lt;br /&gt;DOC&lt;br /&gt;&lt;br /&gt;4. Which key moves your cursor from one cell to the next in a table?&lt;br /&gt;&lt;br /&gt;Tab&lt;br /&gt;&lt;br /&gt;Shift&lt;br /&gt;&lt;br /&gt;Enter&lt;br /&gt;&lt;br /&gt;Ctrl+Enter&lt;br /&gt;&lt;br /&gt;5. How many different documents can you have open at one time?&lt;br /&gt;&lt;br /&gt;No more that three&lt;br /&gt;&lt;br /&gt;Only one&lt;br /&gt;&lt;br /&gt;As many as your computer memory will hold&lt;br /&gt;&lt;br /&gt;No more than your Taskbar can display&lt;br /&gt;&lt;br /&gt;6. In order to email a Word document from within Word:&lt;br /&gt;&lt;br /&gt;Go to File/Send To/Mail Recipient&lt;br /&gt;&lt;br /&gt;Save the file as an email attachment&lt;br /&gt;&lt;br /&gt;Start Outlook and attach the file while open in Word&lt;br /&gt;&lt;br /&gt;This is an impossible operation&lt;br /&gt;&lt;br /&gt;7. Which keystroke will take you at the beginning or the end of a long document?&lt;br /&gt;&lt;br /&gt;Ctrl+PageUp and Ctrl+PageDown&lt;br /&gt;&lt;br /&gt;Shift+Home and Shift+End&lt;br /&gt;&lt;br /&gt;Ctrl+Home and Ctrl+End&lt;br /&gt;&lt;br /&gt;The only way is by using the right scroll bar&lt;br /&gt;&lt;br /&gt;8. How many margins are on a page?&lt;br /&gt;&lt;br /&gt;Two (header and footer)&lt;br /&gt;&lt;br /&gt;Four (top, bottom, right, left)&lt;br /&gt;&lt;br /&gt;Two (landscape and Portrait)&lt;br /&gt;&lt;br /&gt;Two (top and bottom)&lt;br /&gt;&lt;br /&gt;9.In order to save a Word document as a web page you need to:&lt;br /&gt;&lt;br /&gt;Put the appropriate graphics and links on the document&lt;br /&gt;&lt;br /&gt;Save the document in simple text format&lt;br /&gt;&lt;br /&gt;Use your web browser as an editor and save as URL&lt;br /&gt;&lt;br /&gt;Save as HTML&lt;br /&gt;&lt;br /&gt;10. A document in portrait prints:&lt;br /&gt;&lt;br /&gt;The same characters per line with the same document in landscape&lt;br /&gt;&lt;br /&gt;More characters per line than the same document in landscape&lt;br /&gt;&lt;br /&gt;Less characters per line than the same document in landscape&lt;br /&gt;&lt;br /&gt;Smaller fonts in order to fit the same amount of characters per line with landscape&lt;br /&gt;&lt;br /&gt;GK QUIZ&lt;br /&gt;&lt;br /&gt;1. Miss Universe award for 2008 has been awarded to –&lt;br /&gt;&lt;br /&gt;Tanvi Vyas&lt;br /&gt;&lt;br /&gt;Dayana Mendoza&lt;br /&gt;&lt;br /&gt;SimranKaur Mundi&lt;br /&gt;&lt;br /&gt;Crystle Stewart&lt;br /&gt;&lt;br /&gt;2. Who among the following is the winner of the Rajiv Gandhi Khel Ratna Award for the year 2007? –&lt;br /&gt;&lt;br /&gt;Sachin Tendulkar&lt;br /&gt;&lt;br /&gt;Saurav Ganguli&lt;br /&gt;&lt;br /&gt;Sanjeeva Kumar Singh&lt;br /&gt;&lt;br /&gt;Mahendra Singh Dhoni&lt;br /&gt;&lt;br /&gt;3. The Mascot of the 2008 Olympic Games was-&lt;br /&gt;&lt;br /&gt;Fuwa&lt;br /&gt;&lt;br /&gt;Izz&lt;br /&gt;&lt;br /&gt;Izz&lt;br /&gt;&lt;br /&gt;Cobi&lt;br /&gt;&lt;br /&gt;4. Which among the following States would observe 2008 as the‘Year of Education’?&lt;br /&gt;&lt;br /&gt;Uttar Pradesh&lt;br /&gt;&lt;br /&gt;Haryana&lt;br /&gt;&lt;br /&gt;Bihar&lt;br /&gt;&lt;br /&gt;Karnataka&lt;br /&gt;&lt;br /&gt;5. Who has written “Unaccustomed Earth”?&lt;br /&gt;&lt;br /&gt;Jhumpa Laheri&lt;br /&gt;&lt;br /&gt;Kiran Desai&lt;br /&gt;&lt;br /&gt;Arundhati Roy&lt;br /&gt;&lt;br /&gt;Khushwant Singh&lt;br /&gt;&lt;br /&gt;6. Which of the following has been selected for best parliamentarian of the year award 2007 ?&lt;br /&gt;&lt;br /&gt;Priya Ranjan Das Munshi&lt;br /&gt;&lt;br /&gt;Mani Shankar Aiyyar&lt;br /&gt;&lt;br /&gt;P.Chidambaram&lt;br /&gt;&lt;br /&gt;Sushama Swaraj&lt;br /&gt;&lt;br /&gt;7. Duwuri Subbarao's name was in news recently as he has taken over as the Governor of&lt;br /&gt;&lt;br /&gt;RBI&lt;br /&gt;&lt;br /&gt;SBI&lt;br /&gt;&lt;br /&gt;SEBI&lt;br /&gt;&lt;br /&gt;Bihar&lt;br /&gt;&lt;br /&gt;8. ISRO has launched successfully ten satellites through PSLV-C9 on -&lt;br /&gt;&lt;br /&gt;15th March,2008&lt;br /&gt;&lt;br /&gt;30th March,2008&lt;br /&gt;&lt;br /&gt;28th April,2008&lt;br /&gt;&lt;br /&gt;4th May,2008&lt;br /&gt;&lt;br /&gt;9. Which country was host 15th SAARC Summit in 2008 ?&lt;br /&gt;&lt;br /&gt;Maldives&lt;br /&gt;&lt;br /&gt;Sri Lanka&lt;br /&gt;&lt;br /&gt;India&lt;br /&gt;&lt;br /&gt;Pakistan&lt;br /&gt;&lt;br /&gt;10. Who among the following is the winner of the Wimbledon open Tennis Tournament 2008 of the Women's Single Title ?&lt;br /&gt;&lt;br /&gt;Serena Williams&lt;br /&gt;&lt;br /&gt;Venus Wlliams&lt;br /&gt;&lt;br /&gt;Maria Sharapova&lt;br /&gt;&lt;br /&gt;Ana Ivanovic&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-6960740620799555963?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/6960740620799555963/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/pnb_2675.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/6960740620799555963'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/6960740620799555963'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/pnb_2675.html' title='PNB'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-5991867397200448402</id><published>2009-01-31T02:50:00.000-08:00</published><updated>2009-01-31T02:51:25.957-08:00</updated><title type='text'>PNB</title><content type='html'>classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1. Four of the following five are alike in a certain way and so form a group. Which is the one that does not belong to the group ? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;(A) Sand (B) Stone(C) Cement (D) Brick(E) Wall&lt;br /&gt;&lt;br /&gt;Ans : (E)&lt;br /&gt;&lt;br /&gt;2. If Yellow is called Green, Green is called Black, Black is called White, White is called Red, Red is called Blue, Blue is called Orange then what is the colour of milk?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;(A) White (B) Black(C) Red (D) Green(E) None of these&lt;br /&gt;&lt;br /&gt;Ans : (C)&lt;br /&gt;&lt;br /&gt;3. Pointing to a photograph Seema said ‘He is the only grandson of my mother’s father-in-law’. How is the man in photograph related to Seema ?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;(A) Father (B) Uncle(C) Cousin (D) Brother(E) Cannot be determined&lt;br /&gt;&lt;br /&gt;Ans : (D)&lt;br /&gt;&lt;br /&gt;4. If ‘+’ means ‘×’, ‘×’ means ‘÷’, ‘÷’ means ‘–’ and ‘–’ means ‘+’ what is the value of—17 + 15 – 135 × 9 ÷ 70 ?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;(A) 270 (B) 240(C) 170 (D) 200(E) None of these&lt;br /&gt;&lt;br /&gt;Ans : (D)&lt;br /&gt;&lt;br /&gt;5. If it is possible to make a meaningful word from the fourth, the fifth, the sixth, the eighth and the eleventh letters of the word GOURMANDISE using each letter only once first letter of the word is your answer. If more than one such word can be formed your answer is X. If no such word can be formed your answer is Y—&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;(A) D (B) R(C) M (D) X(E) Y&lt;br /&gt;&lt;br /&gt;Ans : (D)&lt;br /&gt;&lt;br /&gt;6. Four of the following five are alike in a certain way and so form a group. Which is the one that does not belong to the group ?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;(A) Silver (B) Gold(C) Nickel (D) Copper(E) Brass&lt;br /&gt;&lt;br /&gt;Ans : (E)&lt;br /&gt;&lt;br /&gt;7. In a certain code EXTRA is written as % 5 # 73 and NOSE is written as 4 @ 8%; how is STORE written in that code ? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;(A) 5#@7% (B) 8#@7%(C) 8#@%5 (D) 8@75%(E) None of these&lt;br /&gt;&lt;br /&gt;Ans : (B)&lt;br /&gt;&lt;br /&gt;8. In a row of children facing North, Shamika is third to the right of Nikhil who is seventeenth from the right end of the row. Ravi is fifth to the left of Shamika and is twentieth from the left end. Total how many children are there in the row ?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;(A) 39(B) 38(C) 37(D) Cannot be determined(E) None of these&lt;br /&gt;&lt;br /&gt;Ans : (B)&lt;br /&gt;&lt;br /&gt;9. How many such pairs of letters are there in the word EXAMINATION each of which has as many letters between them in the word, as they have in the English alphabet?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;(A) None (B) One(C) Two (D) Three(E) None of these&lt;br /&gt;&lt;br /&gt;Ans : (C)&lt;br /&gt;&lt;br /&gt;10. In a certain code ACQUIRE is written as EIRUQAC, how is DENSITY written in that code ?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;(A) YTISNDE (B) YITSNED(C) YTISNED (D) YITSNDE(E) None of these&lt;br /&gt;&lt;br /&gt;Ans : (D)&lt;br /&gt;&lt;br /&gt;Directions—(Q. 16–20) In each question below are given three statements followed by two conclus ions numbered I and II. You have to take the three given statements to betrue even if they seem to be at variance from commonly known facts and then decide which of the given conclusions logically follows from the three given statements, disregarding commonly known facts. Then decide which of the answer (A), (B), (C), (D)and (E) is correct answer and indicate it on the answersheet. Give answer—&lt;br /&gt;&lt;br /&gt;(A) If only conclusion I follows&lt;br /&gt;&lt;br /&gt;(B) If only conclusion II follows&lt;br /&gt;&lt;br /&gt;(C) If either conclusion I or conclusion II follows&lt;br /&gt;&lt;br /&gt;(D) If neither conclusion I nor conclusion II follows&lt;br /&gt;&lt;br /&gt;(E) If both conclusions I and II follow&lt;br /&gt;&lt;br /&gt;16. Statements : Some cards are plastics. Some Plastics are metals. All metals are pots.&lt;br /&gt;&lt;br /&gt;Conclusions : I. Some pots are cards.&lt;br /&gt;&lt;br /&gt;II. No pot is a card.&lt;br /&gt;&lt;br /&gt;Ans : (C)&lt;br /&gt;&lt;br /&gt;17. Statements : All chairs are tables. All tables are trains. All trains are buses.&lt;br /&gt;&lt;br /&gt;Conclusions : I. All tables are buses.&lt;br /&gt;&lt;br /&gt;II. All trains are tables.&lt;br /&gt;&lt;br /&gt;Ans : (A)&lt;br /&gt;&lt;br /&gt;18. Statements :Some machines are computers.Some computers are calculators.Some calculators are phones.&lt;br /&gt;&lt;br /&gt;Conclusions :I. Some phones are computers.&lt;br /&gt;&lt;br /&gt;II. Some computers are machines.&lt;br /&gt;&lt;br /&gt;Ans : (B)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;19. Statements :All spoons are bowls.Some bowls are glasses.Some glasses are plates.&lt;br /&gt;&lt;br /&gt;Conclusions :I. Some glasses are spoons.&lt;br /&gt;&lt;br /&gt;II. Some plates are bowls.&lt;br /&gt;&lt;br /&gt;Ans : (D)&lt;br /&gt;&lt;br /&gt;20. Statements :Some envelopes are packets.Some packets are boxes.All boxes are parcels.&lt;br /&gt;&lt;br /&gt;Conclusions :I. Some parcels are packets.&lt;br /&gt;&lt;br /&gt;II. Some parcels are boxes.&lt;br /&gt;&lt;br /&gt;Ans : (E)&lt;br /&gt;&lt;br /&gt;Directions—(Q. 21–25) Each of the questions below consists of a question and two statements numbered I and II are given below it. You have to decide whether the data provided in the statements are sufficient to answer the question. Read both the statements and give answer—&lt;br /&gt;&lt;br /&gt;(A) If the data in Statement I alone are sufficient to answer the question, while the datain Statement II alone are not sufficient to answer the question&lt;br /&gt;&lt;br /&gt;(B) If the data in Statement II alone are sufficient to answer the question, while the datain Statement I alone are not sufficient to answer the question&lt;br /&gt;&lt;br /&gt;(C) If the data either in Statement I alone or in Statement II alone are sufficient toanswer the question&lt;br /&gt;&lt;br /&gt;(D) If the data in both the Statements I and II are not sufficient to answer the question&lt;br /&gt;&lt;br /&gt;(E) If the data in both the Statements I and II together are necessary to answer the question&lt;br /&gt;&lt;br /&gt;21. Among D, B, J, T and F who was the first person to reach the office ?&lt;br /&gt;&lt;br /&gt;I. D reached before J and F but after B.&lt;br /&gt;&lt;br /&gt;II. B was not the first to reach office.&lt;br /&gt;&lt;br /&gt;Ans : (E)&lt;br /&gt;&lt;br /&gt;22. What is the code for ‘not’ in the code language ?&lt;br /&gt;&lt;br /&gt;I. In the code language ‘do not go’ is written as ‘la ra de’.&lt;br /&gt;&lt;br /&gt;II. In the code language ‘go to school’ is written as ‘ka ma ra.’&lt;br /&gt;&lt;br /&gt;Ans : (D)&lt;br /&gt;&lt;br /&gt;23. How many children are there in the class ?&lt;br /&gt;&lt;br /&gt;I. Rita ranks 23rd from the top.I&lt;br /&gt;&lt;br /&gt;I. Anita ranks 17th from the bottom and is five ranks above Rita.&lt;br /&gt;&lt;br /&gt;Ans : (E)&lt;br /&gt;&lt;br /&gt;24. How is Neela related to Deepa ?&lt;br /&gt;&lt;br /&gt;I. Neela’s mother is Deepa’s brother’s wife.&lt;br /&gt;&lt;br /&gt;II. Neela is the only granddaughter of Deepa’s mother.&lt;br /&gt;&lt;br /&gt;Ans : (C)&lt;br /&gt;&lt;br /&gt;25. R is in which direction with respect to T ?&lt;br /&gt;&lt;br /&gt;I. R is to the east of H who is to the north of T.&lt;br /&gt;&lt;br /&gt;II. Q is to the east of T and to the South of R&lt;br /&gt;&lt;br /&gt;Ans : (C)&lt;br /&gt;&lt;br /&gt;Directions—(Q. 26–30) These questions are based on the following arrangements I &amp; II. Study them carefully and answer the questions that follow—&lt;br /&gt;&lt;br /&gt;I. P T 7 A # 4 B C 3 @ K F 1 9 ●&lt;br /&gt;&lt;br /&gt;II. E H L © 6 8 $ U 5 J M 2 D% 1&lt;br /&gt;&lt;br /&gt;26. How many such symbols are there in arrangements I &amp; II together each of which is immediately preceded by a consonant and immediately followed by a numeral ?&lt;br /&gt;&lt;br /&gt;(A) 3 (B) 4(C) 5 (D) 1(E) None of these&lt;br /&gt;&lt;br /&gt;Ans : (E)&lt;br /&gt;&lt;br /&gt;27. If P7© : TAL : : B3J : ?&lt;br /&gt;&lt;br /&gt;(A) @KJ (B) C@J(C) C@5 (D) 3KJ(E) None of these&lt;br /&gt;&lt;br /&gt;Ans : (C)&lt;br /&gt;&lt;br /&gt;28.Which element will be third to the right of seventh element from right end in the arrangement I if the order of its elements is reversed ?&lt;br /&gt;&lt;br /&gt;(A) 7 (B) #(C) F (D) 1(E) None of these&lt;br /&gt;&lt;br /&gt;Ans : (E)&lt;br /&gt;&lt;br /&gt;29. What will come in place of the question mark (?) in the following series based on the position of the elements in the above two arrangements ?H7 ©# 8B ?&lt;br /&gt;&lt;br /&gt;(A) U3 (B) $C(C) 3J (D) UC(E) None of these&lt;br /&gt;&lt;br /&gt;Ans : (A)&lt;br /&gt;&lt;br /&gt;30. If the third, the fifth, the seventh and the ninth elements in arrangement II are replaced by the respective elements in arrangement I, which element will be third to the left of sixth element from the right end in arrangement II ?&lt;br /&gt;&lt;br /&gt;(A) $ (B) B(C) 7 (D) L(E) None of these&lt;br /&gt;&lt;br /&gt;Ans : (B)&lt;br /&gt;&lt;br /&gt;Directions—(Q. 31–35) Symbols @, %, ●, $ and # are used with following meanings—&lt;br /&gt;&lt;br /&gt;‘A @ B’ means ‘A is smaller than B’.&lt;br /&gt;&lt;br /&gt;‘A % B’ means ‘A is greater than B’.&lt;br /&gt;&lt;br /&gt;‘A ● B’ means ‘A is neither greater than nor smaller than B’.&lt;br /&gt;&lt;br /&gt;‘A $ B’ means ‘A is either smaller than or equal to B.’&lt;br /&gt;&lt;br /&gt;‘A # B’ means ‘A is either greater than or equal to B’.&lt;br /&gt;&lt;br /&gt;Now in each of the following questions assuming the given statements to be true, find which of the two conclusions I and II given below them is/are definitely true and give your answer accordingly. Give answer—&lt;br /&gt;&lt;br /&gt;(A) If only conclusion I is true.&lt;br /&gt;&lt;br /&gt;(B) If only conclusion II is true.&lt;br /&gt;&lt;br /&gt;(C) If either conclusion I or conclusion II is true.&lt;br /&gt;&lt;br /&gt;(D) If neither conclusion I nor conclusion II is true.&lt;br /&gt;&lt;br /&gt;(E) If both conclusions I and II are true.&lt;br /&gt;&lt;br /&gt;31. Statements : G @ H, H ● Q, Q $ M&lt;br /&gt;&lt;br /&gt;Conclusions : I. M % G&lt;br /&gt;&lt;br /&gt;II. H $ M&lt;br /&gt;&lt;br /&gt;Ans : (E)&lt;br /&gt;&lt;br /&gt;32. Statements : F ● B, B @ E, E # J&lt;br /&gt;&lt;br /&gt;Conclusions : I. F @ E&lt;br /&gt;&lt;br /&gt;II. J $ B&lt;br /&gt;&lt;br /&gt;Ans : (A)&lt;br /&gt;&lt;br /&gt;33. Statements : R $ H, H % M, M # F&lt;br /&gt;&lt;br /&gt;Conclusions : I. F $ H&lt;br /&gt;&lt;br /&gt;II. F @ R&lt;br /&gt;&lt;br /&gt;Ans : (D)&lt;br /&gt;&lt;br /&gt;34. Statements : T # L, L % W, W @ V&lt;br /&gt;&lt;br /&gt;Conclusions : I. L % V&lt;br /&gt;&lt;br /&gt;II. T % W&lt;br /&gt;&lt;br /&gt;Ans : (B)&lt;br /&gt;&lt;br /&gt;35. Statements : K % L, L # T, I $ T&lt;br /&gt;&lt;br /&gt;Conclusions : I. L % I&lt;br /&gt;&lt;br /&gt;II. L ● I&lt;br /&gt;&lt;br /&gt;Ans : (C)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-5991867397200448402?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/5991867397200448402/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/pnb_31.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/5991867397200448402'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/5991867397200448402'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/pnb_31.html' title='PNB'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-769629330311479794</id><published>2009-01-31T02:48:00.000-08:00</published><updated>2009-01-31T02:50:12.187-08:00</updated><title type='text'>PNB</title><content type='html'>1. The _____ states that a foreign key must either match a primary key value in another relation or it must be null.&lt;br /&gt;&lt;br /&gt;(a) entity integrity rule&lt;br /&gt;&lt;br /&gt;(b) referential integrity constraint&lt;br /&gt;&lt;br /&gt;(c) action assertion&lt;br /&gt;&lt;br /&gt;(d) composite attribute&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;2. An applet __________&lt;br /&gt;&lt;br /&gt;(a) is an interpreted program that runs on the client&lt;br /&gt;&lt;br /&gt;(b) tracks the number of visitors to a Website&lt;br /&gt;&lt;br /&gt;(c) is a compiled program that usually runs on the client&lt;br /&gt;&lt;br /&gt;(d) collects data from visitors to a Website&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. A _____ sometimes called a boot sector virus, executes when a computer boots up because it resides in the boot sector of a floppy disk or the master boot record of a hard disk.&lt;br /&gt;&lt;br /&gt;(a) system virus&lt;br /&gt;&lt;br /&gt;(b) Trojan horse virus&lt;br /&gt;&lt;br /&gt;(c) file virus&lt;br /&gt;&lt;br /&gt;(d) macro virus&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;4. Which error detection method uses one’s complement arithmetic?&lt;br /&gt;&lt;br /&gt;(a) Simply parity check&lt;br /&gt;&lt;br /&gt;(b) Checksum&lt;br /&gt;&lt;br /&gt;(c) Two-dimensional parity check&lt;br /&gt;&lt;br /&gt;(d) CRC&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;5. A result of a computer virus can not lead to ___.&lt;br /&gt;&lt;br /&gt;(a) Disk Crash&lt;br /&gt;&lt;br /&gt;(b) Mother Board Crash&lt;br /&gt;&lt;br /&gt;(c) Corruption of program&lt;br /&gt;&lt;br /&gt;(d) Deletion of files&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;6. The network interface card of LAN is related to following layer of OSI Model-&lt;br /&gt;&lt;br /&gt;(a) Transport&lt;br /&gt;&lt;br /&gt;(b) Network&lt;br /&gt;&lt;br /&gt;(c) Data Link&lt;br /&gt;&lt;br /&gt;(d) Physical&lt;br /&gt;&lt;br /&gt;(e) All of these&lt;br /&gt;&lt;br /&gt;7. Which of the following does not describe a data warehouse?&lt;br /&gt;&lt;br /&gt;(a) Subject-oriented&lt;br /&gt;&lt;br /&gt;(b) Integrated&lt;br /&gt;&lt;br /&gt;(c) Time-variant&lt;br /&gt;&lt;br /&gt;(d) Updateable&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;8. Which of the following is true ?&lt;br /&gt;&lt;br /&gt;(a) Logical design is software-dependent&lt;br /&gt;&lt;br /&gt;(b) In a distributed database, database is stored in one physical location&lt;br /&gt;&lt;br /&gt;(c) Conceptual design translates the logical design into internal model&lt;br /&gt;&lt;br /&gt;(d) Logical design is software independent&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;9. A range check _____&lt;br /&gt;&lt;br /&gt;(a) ensures that only the correct data type is entered into a field&lt;br /&gt;&lt;br /&gt;(b) verifies that all required data is present&lt;br /&gt;&lt;br /&gt;(c) determines whether a number is within a specified limit&lt;br /&gt;&lt;br /&gt;(d) tests if the data in two or more associated fields is logical&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;10. The total set of interlinked hypertext documents worldwide is-&lt;br /&gt;&lt;br /&gt;(a) HTTP&lt;br /&gt;&lt;br /&gt;(b) Browser&lt;br /&gt;&lt;br /&gt;(c) WWW&lt;br /&gt;&lt;br /&gt;(d) B2B&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;11. With the object-oriented (OO) approach, an object encapsulates, or_____.a programmer.&lt;br /&gt;&lt;br /&gt;(a) carries out, the details of an object for&lt;br /&gt;&lt;br /&gt;(b) hides, the details of an object from&lt;br /&gt;&lt;br /&gt;(c) reveals, the details of an object to&lt;br /&gt;&lt;br /&gt;(d) extends, the details of an object beyond&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;12. Every computer connected to an intranet or extranet must have a distinct_____&lt;br /&gt;&lt;br /&gt;(a) firewall&lt;br /&gt;&lt;br /&gt;(b) proxy server&lt;br /&gt;&lt;br /&gt;(c) IP address&lt;br /&gt;&lt;br /&gt;(d) domain name&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;13. A table of bits in which each row represents the distinct values of a key?&lt;br /&gt;&lt;br /&gt;(a) Join index&lt;br /&gt;&lt;br /&gt;(b) Bitmap index&lt;br /&gt;&lt;br /&gt;(c) B + Tree&lt;br /&gt;&lt;br /&gt;(d) Hierarchical index&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;14. The degree of detail that should be incorporated into a database depends on what?&lt;br /&gt;&lt;br /&gt;(a) Data integrity&lt;br /&gt;&lt;br /&gt;(b) The type of database&lt;br /&gt;&lt;br /&gt;(c) The user’s perspective&lt;br /&gt;&lt;br /&gt;(d) The business practices and policies&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;15. The ___.converts digital signals to analog signals for the purpose of transmitting data over telephone lines.&lt;br /&gt;&lt;br /&gt;(a) Modem&lt;br /&gt;&lt;br /&gt;(b) Router&lt;br /&gt;&lt;br /&gt;(c) Gateway&lt;br /&gt;&lt;br /&gt;(d) Bridge&lt;br /&gt;&lt;br /&gt;(e) All of these&lt;br /&gt;&lt;br /&gt;16. Before a package can be used in a java program it must be___.&lt;br /&gt;&lt;br /&gt;(a) executed&lt;br /&gt;&lt;br /&gt;(b) referenced&lt;br /&gt;&lt;br /&gt;(c) imported&lt;br /&gt;&lt;br /&gt;(d) declared&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;17. Choose the correct way to indicate that a line in a C++ program is a comment line, that is, a line the will not be executed as an instruction___.&lt;br /&gt;&lt;br /&gt;(a) begin the line with a # sign&lt;br /&gt;&lt;br /&gt;(b) begin the line with double slashes (/ /)&lt;br /&gt;&lt;br /&gt;(c) begin and end the line with double hyphens (-_-)&lt;br /&gt;&lt;br /&gt;(d) indent the line&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;18. Programming language built into user programs such as Word and Excel are known as____&lt;br /&gt;&lt;br /&gt;(a) 4GLs&lt;br /&gt;&lt;br /&gt;(b) macro languages&lt;br /&gt;&lt;br /&gt;(c) object-oriented languages&lt;br /&gt;&lt;br /&gt;(d) visual programming languages&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;19. Firewalls are used to protect against___.&lt;br /&gt;&lt;br /&gt;(a) Unauthorized Attacks&lt;br /&gt;&lt;br /&gt;(b) Virus Attacks&lt;br /&gt;&lt;br /&gt;(c) Data Driven Attacks&lt;br /&gt;&lt;br /&gt;(d) Fire Attacks&lt;br /&gt;&lt;br /&gt;(e) All of these&lt;br /&gt;&lt;br /&gt;20. This is a standard way for a Web server to pass a Web user’s request to an application program and to receive data back to forward to the user-&lt;br /&gt;&lt;br /&gt;(a) Interrupt request&lt;br /&gt;&lt;br /&gt;(b) Forward DNS lookup&lt;br /&gt;&lt;br /&gt;(c) Data-Link layer&lt;br /&gt;&lt;br /&gt;(d) File Transfer Protocol&lt;br /&gt;&lt;br /&gt;(e) Common gateway interface&lt;br /&gt;&lt;br /&gt;21. Three SQL, DDL, CREATE commands are__.&lt;br /&gt;&lt;br /&gt;(a) Schema, Base and Table&lt;br /&gt;&lt;br /&gt;(b) Base, Table and Schema&lt;br /&gt;&lt;br /&gt;(c) Key, Base and Table&lt;br /&gt;&lt;br /&gt;(d) Schema, Table and View&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;22. Data are ________ in client/server computing.&lt;br /&gt;&lt;br /&gt;(a) never sent to the client machine&lt;br /&gt;&lt;br /&gt;(b) sent in very large sections to save processing time&lt;br /&gt;&lt;br /&gt;(c) sent only upon the client’s request&lt;br /&gt;&lt;br /&gt;(d) sent in complete copies for the client to filter and sort&lt;br /&gt;&lt;br /&gt;(e) sent from the client to the server for processing&lt;br /&gt;&lt;br /&gt;23. Which of the following will not eliminates the ambiguities of a null value?&lt;br /&gt;&lt;br /&gt;(a) Define the attribute as required&lt;br /&gt;&lt;br /&gt;(b) Define subtypes&lt;br /&gt;&lt;br /&gt;(c) Define each attribute as having an initial value that is recognized as blank&lt;br /&gt;&lt;br /&gt;(d) Define supertypes&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;24. The____directory is mandatory for every disk.&lt;br /&gt;&lt;br /&gt;(a) Root&lt;br /&gt;&lt;br /&gt;(b) Base&lt;br /&gt;&lt;br /&gt;(c) Sub&lt;br /&gt;&lt;br /&gt;(d) Case&lt;br /&gt;&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;25. This is a group of servers that share work and may be able to back each other up if one server fails.&lt;br /&gt;&lt;br /&gt;(a) Channel bank&lt;br /&gt;&lt;br /&gt;(b) Cluster&lt;br /&gt;&lt;br /&gt;(c) Tiger team&lt;br /&gt;&lt;br /&gt;(d) Serverless backup&lt;br /&gt;&lt;br /&gt;(e) Logical unit&lt;br /&gt;&lt;br /&gt;ANSWERS&lt;br /&gt;&lt;br /&gt;1. (a) (c) (e) (b) (b)&lt;br /&gt;&lt;br /&gt;6. (e) (d) (a) (c) (a)&lt;br /&gt;&lt;br /&gt;11. (b) (c) (b) (b) (a)&lt;br /&gt;&lt;br /&gt;16. (c) (b) (d) (a) (e)&lt;br /&gt;&lt;br /&gt;21. (d) (c) (d) (c) (b)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-769629330311479794?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/769629330311479794/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/pnb.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/769629330311479794'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/769629330311479794'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/pnb.html' title='PNB'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-672902855528288458</id><published>2009-01-31T02:46:00.000-08:00</published><updated>2009-01-31T02:48:00.406-08:00</updated><title type='text'>Crompton Greaves</title><content type='html'>1. Mohr circle is used to find? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. What will happen to height of a capillary tube- &lt;br /&gt;&lt;br /&gt;a) increases with increase in diameter &lt;br /&gt;&lt;br /&gt;b) decrease with increase in diameter &lt;br /&gt;&lt;br /&gt;c) increase with increase in specific weight &lt;br /&gt;&lt;br /&gt;d) decrease with increase in specific weight &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. Specific speed of turbine signifies &lt;br /&gt;&lt;br /&gt;a) rotational speed &lt;br /&gt;&lt;br /&gt;b) head &lt;br /&gt;&lt;br /&gt;c) flow rate &lt;br /&gt;&lt;br /&gt;d) not remember &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4. Power of a belt is given by- &lt;br /&gt;&lt;br /&gt;a) mass &lt;br /&gt;&lt;br /&gt;b) velocity &lt;br /&gt;&lt;br /&gt;c) arc &lt;br /&gt;&lt;br /&gt;d) all the above &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5. At what temperature Celsius and Fahrenheit is equal- &lt;br /&gt;&lt;br /&gt;answer. -40 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6. Slenderness ratio of a mild steel is- &lt;br /&gt;&lt;br /&gt;a) &gt;80 &lt;br /&gt;&lt;br /&gt;b) &lt;80 &lt;br /&gt;&lt;br /&gt;c) &gt;90 &lt;br /&gt;&lt;br /&gt;d) &lt;90 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. Magnet is made of which iron &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8. Which is weakest iron &lt;br /&gt;&lt;br /&gt;a) spring &lt;br /&gt;&lt;br /&gt;b) bolt &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9. Magnet north pole represents which direction &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;10. Speriodizing is a type of which process &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11. Normaling is done at &lt;br /&gt;&lt;br /&gt;a) above crystalline temp with quenching of oils &lt;br /&gt;&lt;br /&gt;b) below crystalline temp &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;12. Rivets r made by which process &lt;br /&gt;&lt;br /&gt;a) extrusion &lt;br /&gt;&lt;br /&gt;b) cold heating &lt;br /&gt;&lt;br /&gt;c) forging &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;13. Why mercury do not stick to the tube &lt;br /&gt;&lt;br /&gt;a) cohesive force&gt;adhesive force &lt;br /&gt;&lt;br /&gt;b) cohesive force &lt;adhesive force &lt;br /&gt;&lt;br /&gt;c) cohesive force =adhesive force &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;14. Why cage is provided in bearing in between the balls &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;15. Wear allowance on go no go is for which end &lt;br /&gt;&lt;br /&gt;a) go &lt;br /&gt;&lt;br /&gt;b) no go &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;16. If area, length, diameter, stress r doubled what will happen to the strain energy? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;17. If a spring of stiffness of k is divided in 4 parts and then joined in parallel then what will b the resultant stiffness &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;18. One question on lubrication. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;19. How can we increase the pressure angle of a gear &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;20 Plaster of paris is extracted from bauxite, true / false &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;21. What is 18-4-1 mild steel? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;22. What is the shape of bending moment of cantilever with udl over it? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;23. Surface measurement RA is taken in which units? &lt;br /&gt;&lt;br /&gt;a) micron &lt;br /&gt;&lt;br /&gt;b) mm2 &lt;br /&gt;&lt;br /&gt;c) dnt remember &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;24. In which fit clearance will b more for hole and shaft? &lt;br /&gt;&lt;br /&gt;h6g8 &lt;br /&gt;&lt;br /&gt;h6e8 &lt;br /&gt;&lt;br /&gt;h9f9 &lt;br /&gt;&lt;br /&gt;h9d8 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;25. If spring is in compressive stresses then major stresses will b &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;26. Velocity ratio of gear will be equal at which point? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;27. How much is thermal efficiency of internal combustion engine? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;28. Internal spur gear is mass produced by which process&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-672902855528288458?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/672902855528288458/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/crompton-greaves.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/672902855528288458'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/672902855528288458'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/crompton-greaves.html' title='Crompton Greaves'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-4349464553712778670</id><published>2009-01-31T02:38:00.000-08:00</published><updated>2009-01-31T02:40:59.371-08:00</updated><title type='text'>Flextronics</title><content type='html'>Aptitude Questions &lt;br /&gt;1. Age problem &lt;br /&gt;2. Time and distance &lt;br /&gt;3. Coin &lt;br /&gt;4. direction problem &lt;br /&gt;5. (2n + 2 n-1/2 n+1 – 2n) what is gives if n = something &lt;br /&gt;6. ( 10n –1) n&gt;1 when is divisible by 11.no divisible by 8 &lt;br /&gt;7. find the missing no. when it is divisible by some no &lt;br /&gt;8. Boat problem &lt;br /&gt;9. Average &lt;br /&gt;&lt;br /&gt;Technical Questions &lt;br /&gt;10. Which one is called family tree &lt;br /&gt;11. virtual function and overloading &lt;br /&gt;12. DHCP protocol &lt;br /&gt;13. Order of insertion and Heap sort &lt;br /&gt;14. left recursion &lt;br /&gt;15. find output: for(l=1;a&lt;=l;a++) &lt;br /&gt;cout&lt;&lt;++a; cout &lt;16. DEBUG trigger (oracle) &lt;br /&gt;17. In unrestricted session which system privilege mode is used (oracle) &lt;br /&gt;18. NEXTVAL and CURRENTVAL in sequence (Oracle) &lt;br /&gt;19. Unix system call ……like Var( ) &lt;br /&gt;20. OS 384 support which memory management &lt;br /&gt;21. Complexity to access name from the given double link list &lt;br /&gt;22. Which WAN network is suitable for the 100Km or m. distance network &lt;br /&gt;23. If duplicate segments , file are there in hardisk which is best for management &lt;br /&gt;a) FAT &lt;br /&gt;b) SAT &lt;br /&gt;24. stop n wait protocol is associated with which layer &lt;br /&gt;25. find errors from the c and c++ codes. &lt;br /&gt;26. 3 questions on operating systems. I qn on dijkestra algorithm &lt;br /&gt;27. Using which pin it's possible to address 16 bit addresses even though there re only 8 address bits in 8085? Ans: ALE &lt;br /&gt;28.Voltage gain for an amplifier is 100 while it is operating at 10 volts. What is the O/P voltage wen i/p is 1 volt &lt;br /&gt;29. Quality factor indicates a) Quality of inductor b) quality of capacitor c) both &lt;br /&gt;30. Qns related to bridges, routers and generators, which OSI layer they corresspond to. (Refer to stevens 4th chapter) &lt;br /&gt;31. OPAmp's I/P ciurrent, O/p current and CMRR is given, what is the voltage gain &lt;br /&gt;32. 2-3 qns on scope of static variables in C. Qn to view o/p odf a C static var &lt;br /&gt;33. Qn to print a value of a pointer &lt;br /&gt;34. OPAmp's I/P ciurrent, O/p current and CMRR is given, what is the voltage gain &lt;br /&gt;35. A qn to find the physical address from a given virtual address, virtual to physical address table was provided &lt;br /&gt;36. 6 bit mantissa and 8 bit exponent can present what maximum value? &lt;br /&gt;37. 4 bit window size in sliding window protocol, how many acknowledgements can be held? &lt;br /&gt;38. Among AM and FM which is better and why? &lt;br /&gt;39. Last stage of TTL NAND gate is called: Ans: Totem Pole Amplifie &lt;br /&gt;40. SR to JK flip flop conversion. Ans: S=JQ', R=KQ &lt;br /&gt;41. LSB of a shift register is connected to its MSB, what is formed: &lt;br /&gt;42. 2-3 questions based on Demorgan's laws (identities: (A+b)' = A'b', etc) &lt;br /&gt;43. 2 questions on Logic gates (O/p of logic gates) &lt;br /&gt;44. Diff in IRET and RET statements of 8086 &lt;br /&gt;45. How many address bytes are required to address an array of memory chips (4 * 6), each chip having 4 memory bits and 8k registers. &lt;br /&gt;46. Diff. in memory mapped and I/P O/P mapped Input/Output (Refer a book on Microprocessor) &lt;br /&gt;47. Qn on pipeline architecture &lt;br /&gt;48. QN on LAPB protocol&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-4349464553712778670?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/4349464553712778670/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/flextronics.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/4349464553712778670'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/4349464553712778670'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/flextronics.html' title='Flextronics'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-92364685052298319</id><published>2009-01-31T02:36:00.000-08:00</published><updated>2009-01-31T02:38:42.512-08:00</updated><title type='text'>Yahoo</title><content type='html'>Normal &lt;br /&gt;0 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;false &lt;br /&gt;false &lt;br /&gt;false &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;MicrosoftInternetExplorer4 &lt;br /&gt;&lt;br /&gt;&lt;![endif]--&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1. In a village in each family they give birth to children till they get a boy. IF girl child they try again. What is the ratio of boys to girls. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. 2n+1 numbers in a list except for 1 num all had duplicates, how to find duplicate in O(n) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. In 1000 wine bottles stack 10 are poisoned given 10 rats what is the minimum number of tries to find the poisoned one. Rat dies once it licks the poisoned wine. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4. Write 1,3,6,4 using +,-,*,/ to get 24 (no repeat of numbers) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5. Which is the DS used in dictionary mode in mobile (t9) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6. Which is DS used for chess program...to predict move each and every time.. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. There are $1070 dollars how to split them into bags such that asked for any denomination from $1 to $1070 , u must b able to give without opening bag&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-92364685052298319?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/92364685052298319/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/yahoo.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/92364685052298319'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/92364685052298319'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/yahoo.html' title='Yahoo'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-5896928825935210909</id><published>2009-01-31T02:34:00.000-08:00</published><updated>2009-01-31T02:35:54.827-08:00</updated><title type='text'>Impetus</title><content type='html'>Time::40 minutes &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1. Banker’s algorithm is used for- &lt;br /&gt;&lt;br /&gt;a). Deadlock Avoidance &lt;br /&gt;&lt;br /&gt;b). Deadlock Prevention &lt;br /&gt;&lt;br /&gt;c). Deadlock Handling &lt;br /&gt;&lt;br /&gt;d). None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. The software which run on hardware to support other programs to run is called- &lt;br /&gt;&lt;br /&gt;a) System software &lt;br /&gt;&lt;br /&gt;b) Operating system &lt;br /&gt;&lt;br /&gt;c) Application programs &lt;br /&gt;&lt;br /&gt;d) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. FSM can recognize- &lt;br /&gt;&lt;br /&gt;a) Any grammar &lt;br /&gt;&lt;br /&gt;b) Only CFG &lt;br /&gt;&lt;br /&gt;c) Any unambiguous grammar &lt;br /&gt;&lt;br /&gt;d) Only regular grammar &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4. Any string of terminals that can be generated by the following CFG- &lt;br /&gt;&lt;br /&gt;S à XY &lt;br /&gt;&lt;br /&gt;X à aX | bX | a &lt;br /&gt;&lt;br /&gt;Y à Ya | Yb | a &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;a) Has at least one b &lt;br /&gt;&lt;br /&gt;b) Should end in an a &lt;br /&gt;&lt;br /&gt;c) Has no consecutive a’s or b’s &lt;br /&gt;&lt;br /&gt;d) Has at least two a’s &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5. CSG can be recognized by a- &lt;br /&gt;&lt;br /&gt;a) FSM &lt;br /&gt;&lt;br /&gt;b) DPDM &lt;br /&gt;&lt;br /&gt;c) NDPDM &lt;br /&gt;&lt;br /&gt;d) Linearly bounded memory machine &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6. The depth of a complete binary tree with n nodes is- &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;a) Log(n+1)-1 &lt;br /&gt;&lt;br /&gt;b) Log(n) &lt;br /&gt;&lt;br /&gt;c) Log(n-1)+1 &lt;br /&gt;&lt;br /&gt;d) Log(n)+1 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. Which of the following traversal techniques lists the nodes of a binary search tree in ascending order- &lt;br /&gt;&lt;br /&gt;a) Post-order &lt;br /&gt;&lt;br /&gt;b) In-order &lt;br /&gt;&lt;br /&gt;c) Pre-order &lt;br /&gt;&lt;br /&gt;d) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8. Odd man out- &lt;br /&gt;&lt;br /&gt;a) Fragrance &lt;br /&gt;&lt;br /&gt;b) Smell &lt;br /&gt;&lt;br /&gt;c) Foul smell &lt;br /&gt;&lt;br /&gt;d) Incense &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9. What will be the output- &lt;br /&gt;&lt;br /&gt;for(i=1;i&lt;=3;i++) &lt;br /&gt;&lt;br /&gt;{ &lt;br /&gt;&lt;br /&gt;printf("%d",i); &lt;br /&gt;&lt;br /&gt;continue; &lt;br /&gt;&lt;br /&gt;i++; &lt;br /&gt;&lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;a) 1,2,3 &lt;br /&gt;&lt;br /&gt;b) 1,1,1 &lt;br /&gt;&lt;br /&gt;c) 0,0,0 &lt;br /&gt;&lt;br /&gt;d) Compilation error &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;10. Which is more important in a sql query IN or EXISTS- &lt;br /&gt;&lt;br /&gt;a) IN &lt;br /&gt;&lt;br /&gt;b) EXISTS &lt;br /&gt;&lt;br /&gt;c) Both &lt;br /&gt;&lt;br /&gt;d) Depend on the condition &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11. In union which type of variables cant be used- &lt;br /&gt;&lt;br /&gt;a) Constants &lt;br /&gt;&lt;br /&gt;b) Static &lt;br /&gt;&lt;br /&gt;c) Extern &lt;br /&gt;&lt;br /&gt;d) None &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;12. Vendor is related to buyer, similarly consultant is related to- &lt;br /&gt;&lt;br /&gt;a) Firm &lt;br /&gt;&lt;br /&gt;b) Client &lt;br /&gt;&lt;br /&gt;c) Shop &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;d) None &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;13. Compiler convert- &lt;br /&gt;&lt;br /&gt;a) High level language to machine language &lt;br /&gt;&lt;br /&gt;b) Three other options &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;14. What in these not in process- &lt;br /&gt;&lt;br /&gt;a) CPU register &lt;br /&gt;&lt;br /&gt;b) Counter &lt;br /&gt;&lt;br /&gt;c) Memory management info. &lt;br /&gt;&lt;br /&gt;d) None of above &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;15. FTP works on port no- &lt;br /&gt;&lt;br /&gt;a) 21 &lt;br /&gt;&lt;br /&gt;b) 27 &lt;br /&gt;&lt;br /&gt;c) 80 &lt;br /&gt;&lt;br /&gt;d) 23 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;16. How many types of JDBC driver- &lt;br /&gt;&lt;br /&gt;a) 4 &lt;br /&gt;&lt;br /&gt;b) 5 &lt;br /&gt;&lt;br /&gt;c) 2 &lt;br /&gt;&lt;br /&gt;d) 3 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;17. What is related to these:Humidity:Temparature:Pressure &lt;br /&gt;&lt;br /&gt;a) Meterology &lt;br /&gt;&lt;br /&gt;b) Weather forcasting &lt;br /&gt;&lt;br /&gt;c) Geology &lt;br /&gt;&lt;br /&gt;d) None &lt;br /&gt;&lt;br /&gt;&lt;!--[if !supportLineBreakNewLine]--&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--[endif]--&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-5896928825935210909?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/5896928825935210909/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/impetus.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/5896928825935210909'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/5896928825935210909'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/impetus.html' title='Impetus'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-4354022400465699312</id><published>2009-01-31T02:31:00.000-08:00</published><updated>2009-01-31T02:33:30.482-08:00</updated><title type='text'>AIR India</title><content type='html'>classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1. The lowest temperature coefficient metal is &lt;br /&gt;&lt;br /&gt;(A) Molybdenum. (B) Kantal. (C) Mangenin. (D) Nicrome &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. Density of gold is approximately equal to the density of &lt;br /&gt;&lt;br /&gt;(A) Platinum (B) Tungstun (C) Nicrome (D) Kantal &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. For long- distance transmission lines which of the following is preferred &lt;br /&gt;&lt;br /&gt;(A) Aluminium (B) Kantal (C) Copper (D) A mixture of Copper and Aluminium. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4. Resistivity range of semiconductors lies between the range of &lt;br /&gt;&lt;br /&gt;(A) 10-3 to 103 ohm-m (B) 10-5 to 105 ohm-m (C) 10-3 to 105 ohm-m (D) 10-5 to 103 ohm-m &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5. Which out of the following is a poorest insulator ? &lt;br /&gt;&lt;br /&gt;(A) Bakelite (B) Lucite (C) Rubber (D) Polyethylene &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6. Due to the free electrons moving in the metals the potential energy of the free electrons is &lt;br /&gt;&lt;br /&gt;(A) Very high (B) Positive (C) Zero (D) Negative &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. Quantum states with the same energies are said to be &lt;br /&gt;&lt;br /&gt;(A) Complementary states (B) degenerate states (C) equal energy states (D) None of these. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8. The probability of occupation P (E) of an energy level E by an electron is given by &lt;br /&gt;&lt;br /&gt;(A) P (E) = 1/1+e(EF - E) / KT (B) P (E) = [1+e(E - EF)] / KT (C) (P (E) = 1/1+e(E - EF) / KT D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9. The wave number can take &lt;br /&gt;&lt;br /&gt;(A) only negative values. (B) only positive values (C) both Positive or negative values. (D) all real values possible &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;10. 7.18o K is the critical temperature of &lt;br /&gt;&lt;br /&gt;(A) V (B) Ta (C) Po (D) V3Si. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11. At critical temperature T c the value of the critical magnetic field He is &lt;br /&gt;&lt;br /&gt;(A) zero (B) some finite value, which depends upon the structure of the material. (C) infinity (D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;12. Which of the following properties of the superconductor is a structure sensitive property ? &lt;br /&gt;&lt;br /&gt;(A) Critical magnetic field strength H c (B) Critical temperature T c (C) Critical current density J c (D) None of these. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;13. A quantum state has 19 for the sum of the squares of the quantum numbers n x, n y, n z. What is the degeneracy of state ? &lt;br /&gt;&lt;br /&gt;(A) 22 (B)19 (C) 20 (D) 24 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;14. The order of energy gaps between the valance band and the conduction band in insulators and semi- conductors is &lt;br /&gt;&lt;br /&gt;A) 10eV, 4eV (B) 6eV, 4eV (C) 6eV, 1eV (D) 1eV, 3eV &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;15. Mark the true statement. &lt;br /&gt;&lt;br /&gt;A) Iron is greatly used for making permanent magnets. (B) Paper can't affect magnetic lines of force or magnetic flux &lt;br /&gt;&lt;br /&gt;(C) ALNICO is commonly used for making electromagnets (D) Ferrites has lower permeability than air or vacuum. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;16. A closed switch has ideally a resistance of &lt;br /&gt;&lt;br /&gt;(A) zero ohm (B) infinite ohm (C) at least 100 ohm at any temperature (D) about 100 ohm at room temperature &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;17. If an electric flux density Do passes across a negatively charged surface the density of the flux &lt;br /&gt;&lt;br /&gt;(A) remains same (B) decreases (C) increases (D) may increase or decrease &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;18.Which of the following is not an elemental semiconductor &lt;br /&gt;&lt;br /&gt;(A) Te (B) C (C) B (D) Br &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;19. The potential energy of an electron is &lt;br /&gt;&lt;br /&gt;(A) constant and does not vary with the distance of electron from the atom (B) more when it is close to the positive ion &lt;br /&gt;&lt;br /&gt;(C) less it is close to the positive ion. (D) less when it is far from the positive ion &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;20. If the amplitude of the standing wave at a point is A, then the probability of finding an electron at that point is proportional to &lt;br /&gt;&lt;br /&gt;(A) A3 (B) A2 (C) A (D) A1.732 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;21. In monovalent metals the outer most energy band is &lt;br /&gt;&lt;br /&gt;(A) empty (B) full (C) half- filled (D) any of (A) or (B) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;22.The Probability P (E) of an electron occupying energy level E becomes &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;(A) P (E) = 1/1-exp[(E-EG) /kT] (B) P (E) = exp(-2 Eg/kT) (C) P (E) = exp (-2 EgkT) (D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;23. A n-type semiconductor has excess of free electrons and a p-type semiconductor has deficiency of free electron. &lt;br /&gt;&lt;br /&gt;The semi- conductors are electrically &lt;br /&gt;&lt;br /&gt;(A) positively charged and negatively charged respectively (B) negatively charged and positively charged respectively &lt;br /&gt;&lt;br /&gt;(C) both are electrically neutral (D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;24.In zone refining section the purity achieved is better than &lt;br /&gt;&lt;br /&gt;(A) 99.9% (B) 99.99% (C) 99.999% (D) 99.9999% &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;25.If the acceptor level is 0.16eV above the top of the valence band, the fractions of hole present at 300 K is &lt;br /&gt;&lt;br /&gt;(A) 6.10 * 10-4 (B) 2.05 * 10-3 (C) 5.01 * 10-3 (D) 9.23 * 10-4 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;26.Make the false statement out of the following &lt;br /&gt;&lt;br /&gt;(A) Phosphorous has 5 valence electron &lt;br /&gt;&lt;br /&gt;(B) Hole current is the movement of positive charges in the opposite direction from electron flow &lt;br /&gt;&lt;br /&gt;(C) The internal barrier potential at PN junctions for silicon is approximately 1.1 eV &lt;br /&gt;&lt;br /&gt;(D) None of these. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;27. All the materials with a basic unit, which has a center of symmetry i.e. starting from the center and drawing a vector to one of the surrounding ions, one finds a similar ion at a position. Corresponding to a vector of equal length drawn in the opposite direction, are &lt;br /&gt;&lt;br /&gt;known as &lt;br /&gt;&lt;br /&gt;(A) Magneto striction (B) Piezoelectric (C) Electrostriction (D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;28. The relative permeability of diamagnetic material is of the order of &lt;br /&gt;&lt;br /&gt;(A) 1+ 10-5 (B) 10-5 (C) 1-10-5 (D) 105 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;29.The ferromagnetic curies temperature in degrees absolute for iron is &lt;br /&gt;&lt;br /&gt;(A) 990 (B) 1428 (C) 631 (D)1043 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;30.Which of the following material is used for making permanent magnets &lt;br /&gt;&lt;br /&gt;(A) Alnico V (B) Carbon Steel (C) Plantinum cobalt (D) All of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;31.If a number of domains are arranged such that no poles exists at the surface and no lines of force go out of the material the magnetostatic energy of a ferromagnetic material &lt;br /&gt;&lt;br /&gt;(A) reduces (B) remains the same (C) increases (D) it may increase or decrease &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;32.On the application of an electric field, a polarisation process occurs as a function of time. the polarisation p (t) as a function of time t is given by &lt;br /&gt;&lt;br /&gt;(A) P (t) = P/[exp(-t/tr) + 1] (B) P (t) = P/[1-exp(-t/tr)] (C) P (t) = P[1-exp(-t/tr)] (D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;33. A constant voltage generator has &lt;br /&gt;&lt;br /&gt;(A) low internal resistance (B) minimum efficiency (C) high internal resistance (D) minimum current capacity &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;34. Which of the following is a low pass filter ? &lt;br /&gt;&lt;br /&gt;(A) L type with series C and shunt L (B) T type with series L and shunt C &lt;br /&gt;&lt;br /&gt;(C) T type with series C and shunt L (D) L type with series L and shunt C &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;35.With an indirectly heated cathode the heater voltage &lt;br /&gt;&lt;br /&gt;(A) must be a steady d.c. voltage (B) is separate from the cathode circuit &lt;br /&gt;&lt;br /&gt;(C) is applied to the cathode (D) is equal to the c-bias voltage &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;36.Which is single 8-input NAND gate ? &lt;br /&gt;&lt;br /&gt;(A) SN 7430 (B) SN 7432 (C) SN 7440 (D) SN 7410 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;37. EZ-80 in radio is a &lt;br /&gt;&lt;br /&gt;(A) full wave rectifier (B) audio amplifier (C) line output pentode (D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;38.In LED, light is emitted because &lt;br /&gt;&lt;br /&gt;(A) We make the light fall on LED (B) recombination of charges takes place (C) emits light when heated (D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;39.which of the following has the highest voltage gain ? &lt;br /&gt;&lt;br /&gt;(A) CB (B) CE (C) CC (D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;40.(i)Transistors on a monolithic linear IC unit are generally PNP on a silicon substrate &lt;br /&gt;&lt;br /&gt;(ii) typical values of L integrated on a chip are 10 to 100 mH. &lt;br /&gt;&lt;br /&gt;Indicate correct combination &lt;br /&gt;&lt;br /&gt;(A) F, F (B) T, F (C) F, T (D) T, T &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;41. Bridge rectifiers are preferred because &lt;br /&gt;&lt;br /&gt;(A) less peak inverse voltage (B) they require small transformer (C) Both (A) &amp; (B) (D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;42.Triac is a &lt;br /&gt;&lt;br /&gt;(A) 2 terminal unilateral switch. (B) 3 terminal bidirectional switch (C) 2 terminal bidirectional switch (D) 3 terminal unilateral switch &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;43. SCS is a device which is &lt;br /&gt;&lt;br /&gt;(A) physically smaller than SCR and operates at lower current and voltage (B) physically larger &lt;br /&gt;&lt;br /&gt;(C) physically smaller but operates at high current and voltage as compared to SCR. &lt;br /&gt;&lt;br /&gt;(D) physically larger and operate at high voltage and current &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;44.Thyristor can be turned off &lt;br /&gt;&lt;br /&gt;(A) by reversing the anode voltage (B) by reducing the anode current below holding current value &lt;br /&gt;&lt;br /&gt;(C) Both (A) &amp; (B) (D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;45.SN 7410 IC is a &lt;br /&gt;&lt;br /&gt;(A) triple 3 input Nand gate (B) triple 3 input Nand with open collector (C) 2- input Nand gate (D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;46. h22 hybrid parameter is &lt;br /&gt;&lt;br /&gt;(A) out put conductance with input open circuited (B) input resistance with output open circuited &lt;br /&gt;&lt;br /&gt;(C) output resistance with input open circuited (D) input conductance with output open circuited. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;47.Cascade configuration is &lt;br /&gt;&lt;br /&gt;(A) CE- CC (B) CE- CE (C) CE-CB (D) CE- CE &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;48.Class B and Class C operations are used in (respectively) &lt;br /&gt;&lt;br /&gt;(A) tunned amblifiers (B) untunned and tunned amblifiers (C) tunned and untunned amblifiers (D) untunned amblifiers &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;49. In Voltage series negative feedback Ri and Rof &lt;br /&gt;&lt;br /&gt;(A) increases, decreases as compared to previous value (B) increases, increases (C) decreases, increases (D) decreases, decreases &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;50.Pushpull amplifier result in &lt;br /&gt;&lt;br /&gt;(A) less distortion and more output power (B) less distortion, less output power &lt;br /&gt;&lt;br /&gt;(C) more distortion , more output power (D) more distortion , less output power &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;51.Class B push pull amblifier suffers from &lt;br /&gt;&lt;br /&gt;(A) cross over distortion (B) inter modulation distortion (C) excessive harmonic distortion (D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;52. In trans- resistance amplifiers &lt;br /&gt;&lt;br /&gt;(A) O/P current depends on input voltage. (B) O/P voltage depends on input current &lt;br /&gt;&lt;br /&gt;(C) O/P voltage depends on input voltage. (D) O/P current depends on input current. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;53. With negative feed back, the Rof (output) and Rif (input) impedance in case of voltage series feedback amblifier, respectively &lt;br /&gt;&lt;br /&gt;(A) increases, increases (B) decreases, decreases (C) increases, decreases (D) decreases, increases &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;54. Emitter follower is characterised by &lt;br /&gt;&lt;br /&gt;(A) low output impedance and little distortion (B) low output impedance and more distortion &lt;br /&gt;&lt;br /&gt;(C) more output impedance and more distortion (D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;55.The effect of bypass capacitor in amplifier design is adversely seen on &lt;br /&gt;&lt;br /&gt;(A) low frequency response (B) medium frequency response (C) high frequency response (D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;56. if the input resistance is reduced in tube amplifier then the power gain of the driving amplifier for moderate feedback, and the voltage gain respectively &lt;br /&gt;&lt;br /&gt;(A) increases, decreases (B) both increases (C) both decreases (D) remain same &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;57.Conversion efficiency for class A and B respectively are &lt;br /&gt;&lt;br /&gt;(A) 25, 50% (B) 50, 50% (C) 50, 25% (D) 50, 78.4% &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;58. cascade amplifiers are used in &lt;br /&gt;&lt;br /&gt;(A) tunned amplifier design (B) video amplifier (C) voltage amblifier (D) power amplifier &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;59. The high frequency response of an amplifier can be determined from &lt;br /&gt;&lt;br /&gt;(A) hybrid - T- model (B) h-parameter model of the amplifier (C) hybrid pie -model (D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;60.The dynamic impedance of a Zemer diode &lt;br /&gt;&lt;br /&gt;(A) decreases with increase in current passing through it (B) increase with increase in current passing through it &lt;br /&gt;&lt;br /&gt;(C) is independent of current passing through it (D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;61. Ripple factor (r) of an inductance can be calculated from the formula &lt;br /&gt;&lt;br /&gt;(A) r = 2410/LRL (B) r = RL/1600L (C) r = 1600L/RL (D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;62.The purpose of an amplifier is &lt;br /&gt;&lt;br /&gt;(A) to increase voltage and current of an input signal (B) to introduce distortion in the signal fed to it &lt;br /&gt;&lt;br /&gt;(C) to attenuate the single fed to its point (D) to increase voltage current or power of an input signal. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;63.The standard aircraft frequency is &lt;br /&gt;&lt;br /&gt;(A) 60 Hz (B) 50 Hz (C) 400 Hz (D) None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;64. Conversion efficiency for the amplifier is signal power delivered &lt;br /&gt;&lt;br /&gt;(A) n = to load / d.c power supplied to output circuit *100 (B) n = output power/input power *100 &lt;br /&gt;&lt;br /&gt;(C) n = output circuit / signal power delivered to load *100 (D) None of these&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-4354022400465699312?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/4354022400465699312/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/air-india.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/4354022400465699312'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/4354022400465699312'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/air-india.html' title='AIR India'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-4578038751215419324</id><published>2009-01-31T02:28:00.000-08:00</published><updated>2009-01-31T02:29:16.373-08:00</updated><title type='text'>L s T</title><content type='html'>The test was completely based on respective subjects only; they are allowing mechanical, civil, environmental engg students along electrical. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The subjects they covered are power systems, power electronics, electrical machines, &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Electrical measurements, simple logical circuits, &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1. Convert 16 into binary form …….. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. In which gate o/p is 1 when all i/p are 1 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. What is moving coil ammeter reading, if supply is (10+15 sin 314 wt), &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4. If voltmeter reads 100V,if we want to measure 150 what we have to do &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5. Y-delta starter used in induction motor for……….. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6. In a balanced Y connection if VAN=400at 60,what is VBN …………….. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. for unity TMS 10 sec, what about 0.5 TMS ………………ans: 10(chck it). &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8. 400V,15 kW,4%slip,50 Hz, 4 pole what is the torque, &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9. what r the factors influencing change in torque &amp;speed &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;10. buccholtz relay is used for &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11. lightening arrester is used for &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;12. what is the power dissipated in i=10+5 sin 314wt for 2ohm resistor &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;14. what should be the impedance value for 3-4j,for max power transfer &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;15. if current required for triggering thyristor at -30 degrees(temp) is 80 mA, what is the current required at 60 degrees. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;16. Question regarding thevenins resistance &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;17. Fourier series expansion like periodic signal …….. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;18. Question regarding reactive power compensation ……… &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;19. Question regarding positive sequence currents …some L-L-G fault occur on 3 – ph network Ia current……like &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;20.400v,50ohm resistor , inductive reactance 100ohm , circuit to be resonance ,find the voltage across capacitor &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;21. what is the ideal power loss for 1.1mH &amp; 11.86 nF, length is negligible voltage &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;22. sync motor is used for &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;23. In Q factor which resonance is used…ans: series. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;24. regarding p.u. values &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;25. regarding voltage bus parameters (3 ph networks) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;26. charging of capacitor&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6408683967253505314-4578038751215419324?l=placementpapers-interview-questions.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://placementpapers-interview-questions.blogspot.com/feeds/4578038751215419324/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/l-s-t.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/4578038751215419324'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6408683967253505314/posts/default/4578038751215419324'/><link rel='alternate' type='text/html' href='http://placementpapers-interview-questions.blogspot.com/2009/01/l-s-t.html' title='L s T'/><author><name>Interview Helper</name><uri>http://www.blogger.com/profile/00019571984377897004</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='33' height='12' src='http://1.bp.blogspot.com/_AdNUW2U2OOs/SYHHT9_iGqI/AAAAAAAAAAM/PzlYVvYWMac/s1600-R/interviewhelper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6408683967253505314.post-5356895249265480605</id><published>2009-01-31T02:24:00.000-08:00</published><updated>2009-01-31T02:26:54.504-08:00</updated><title type='text'>SBI</title><content type='html'>classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1. Which layers of the OSI model are included in the lower layers? &lt;br /&gt;&lt;br /&gt;A. Application, Session, Presentation B. Physical, Transport, Data Link C. Data Link, Physical, Network &lt;br /&gt;&lt;br /&gt;D. Session, Data Link, Physical E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. From smallest to largest, rank the following logical pieces of the database : data block, table space, extent, segment &lt;br /&gt;&lt;br /&gt;A. table space, segment, extent, data block B. data block, segment, extent, table space &lt;br /&gt;&lt;br /&gt;C. Segment, extent, data block, table space D. data block, extent, segment, table space E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. Where are cookies stored? &lt;br /&gt;&lt;br /&gt;A. On the server B. In web.xml C. On the client D. In HTML E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4. How is power supplied to a low-power USB device? &lt;br /&gt;&lt;br /&gt;A. Through a power cable B. From an external power supply C. Directly from the computer's power supply &lt;br /&gt;&lt;br /&gt;D. Through the USB cable E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5. When you are selecting a mouse for a particular computer system, what is the most important consideration? &lt;br /&gt;&lt;br /&gt;A. The type of drivers that come with the mouse B. The length of the mouse cord C. The type of connector the mouse is equipped with &lt;br /&gt;&lt;br /&gt;D. The number of buttons the mouse has E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6. Programme that automatically submit your search request to several search engines simultaneously are called.................. &lt;br /&gt;&lt;br /&gt;A. Metasearch engines B. Webcrawlers C. Spiders D. Hits E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. You are planning on using a single network that support 208 users. Which IP address class would you choose to be the most effect? &lt;br /&gt;&lt;br /&gt;A. Class A B. Class B C. Class C D. Class D E. Class E &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8. Which of the following options is not a JSP implicit object? &lt;br /&gt;&lt;br /&gt;A. Out B. In C. Response D. Page E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9. In Oracle, which statement is true about segments? &lt;br /&gt;&lt;br /&gt;A. Each table has its own segment B. A segment is created every time an extent is created, extended, or altered &lt;br /&gt;&lt;br /&gt;C. An index segment is created every time a table is created D. A segment is deleted whenever a table is truncated E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;10. All of the following are basic principles of networks, except ............... &lt;br /&gt;&lt;br /&gt;A. each computer must have a network card B. there must be communications media connecting the network hardware devices &lt;br /&gt;&lt;br /&gt;C. there must be at least one connecting device D. each computer must have software that supports the movement of information &lt;br /&gt;&lt;br /&gt;E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11. Which of the following could be a legitimate Media Access Control address? &lt;br /&gt;&lt;br /&gt;A. 192.168.254.3 B. 3FA2.4756.F9A3 C. A5514 D. C1.3A.77.5B E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;12. The term, hypertext means ................. &lt;br /&gt;&lt;br /&gt;A. Non-sequential writing B. Hypermedia C. Blinking text D. Text with heavy formatting E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;13. You receive an e-mail message that forms you that a terrible virus has been unleashed on the Internet and that you should warn all the people in your Address Book. Which of the following have you most likely encountered? &lt;br /&gt;&lt;br /&gt;A. A virus hoax B. A filter C. A spam D. A virus E. A worm &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;14. If 20 people need to communicate using symmetric-key cryptography, .................symmetric keys are needed &lt;br /&gt;&lt;br /&gt;A. 190 B. 200 C. 20 D. 19 E. 210 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;15. What should you do as soon as you have successfully created the data base and the data dictionary? &lt;br /&gt;&lt;br /&gt;A. Open the data base for users to start adding data B. Start adding a bunch of table space to allow users to use &lt;br /&gt;&lt;br /&gt;C. Leave it running for a few days to make sure that nothing bad is going to happen &lt;br /&gt;&lt;br /&gt;D. Shut it down and take a cold back up E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;16. Which of the following is the default mask of a class A IP address? &lt;br /&gt;&lt;br /&gt;A. 255.0.0.255 B. 255.255.0.0 C. 255.0.0.0 D. 255.255.255.0 E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;17. What is Internet 2? &lt;br /&gt;&lt;br /&gt;A. A new type of cabling system for Wide Area Networks &lt;br /&gt;&lt;br /&gt;B. A second local area network that can connect with another online LAN to share access &lt;br /&gt;&lt;br /&gt;C. A new standard for Internet browsers &lt;br /&gt;&lt;br /&gt;D. An association to develop advanced Internet technology &lt;br /&gt;&lt;br /&gt;E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;18. Which of the following objects is passed to a Java Bean when one of its properties is set via at JSP action? &lt;br /&gt;&lt;br /&gt;A. Servlet Request B. Http Servlet Request C. Servlet Response D. Http Servlet Response E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;19. If you wanted to locate the hardware address to a local device, which protocol would you use? &lt;br /&gt;&lt;br /&gt;A. ARP B. RARP C. ICMP D. PING E. PONG &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;20. In oracle, which table space is the minimum required when creating a new data base? &lt;br /&gt;&lt;br /&gt;A. Undo table space B. Temporary table space C. System table space D. Users table space E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;21. Data space red sign is not terribly difficult if the ......................... &lt;br /&gt;&lt;br /&gt;A. data base is structured B. data base is well- designed C. data space has no data D. data base is relatively small &lt;br /&gt;&lt;br /&gt;E. data base is relatively large &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;22. Which of the following are normally used to initialize a computer system's hard ware? &lt;br /&gt;&lt;br /&gt;A. Bootstrap memory B. Volatile memory C. External mass memory D. Static memory E. Random access memory &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;23. Which of the following is not true about two-tier client-server data base architecture? &lt;br /&gt;&lt;br /&gt;A. SQL statements are processed on the server B. SQL statements may be processed on some of the clients &lt;br /&gt;&lt;br /&gt;C. Business logic is mostly processed on clients D. Business logic may be processed on the server E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;24. The process by which the structure of the data base is modified to eliminate hidden dependencies and repeating groups is ............. &lt;br /&gt;&lt;br /&gt;A. enforcing data integrity B. enforcing referential integrity C. indexing D. normalization E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;25. Which of the following functions is not performed by TCP? &lt;br /&gt;&lt;br /&gt;A. Flow control B. Sequencing C. Error checking D. Sub netting E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;26. In oracle, who owns the data dictionary? &lt;br /&gt;&lt;br /&gt;A. Oracle B. SYS C. The DBA D. SYSTEM E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;27. The reason the data outputs of most ROM ICs are tri-state outputs is to ......... &lt;br /&gt;&lt;br /&gt;A. allow for three separate data input lines B. allow the bi-directional flow of data between the bus lines and the ROM registers &lt;br /&gt;&lt;br /&gt;C. permit the connection of many ROM chips to a common data bus D. isolate the registers from the data bus during read operations &lt;br /&gt;&lt;br /&gt;E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;28. To drop a column that is used as a foreign key, first...................... &lt;br /&gt;&lt;br /&gt;A. drop the primary key B. drop the table C. drop the foreign key constraint D. All of these E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;29. In the straight CGI approach to data-base connectivity on the Internet..................... &lt;br /&gt;&lt;br /&gt;A. the external program is located between the client and the web server &lt;br /&gt;&lt;br /&gt;B. the external program is located between the data base server and the data base &lt;br /&gt;&lt;br /&gt;C. the external program is located between the web server and the data base server &lt;br /&gt;&lt;br /&gt;D. there is no external program &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;30. What is the name of protocol used to eliminate loops? &lt;br /&gt;&lt;br /&gt;A. Switching B. ISL C. Frame Tagging D. Spanning Tree Protocol E. Scanning &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;31. The effect of the ROLLBACK command in a transaction is the following............................. &lt;br /&gt;&lt;br /&gt;A. undo all changes to the data base resulting from the execution of the transaction &lt;br /&gt;&lt;br /&gt;B. undo the effects of the last UPDATE command &lt;br /&gt;&lt;br /&gt;C. restore the content of the data base to its state at the end of the previous day &lt;br /&gt;&lt;br /&gt;D. make sure that all changes to the data base are in effect &lt;br /&gt;&lt;br /&gt;E. None of these &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;32. In Oracle, what is the default number of transactions that MAXTRANS is set to if not specified? &lt;br /&gt;&lt;br /&gt;A. 512 B. 10 C. 40 D. 1 E. 255 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;33. To which pin on the RAM chip does the address decoder connect in order to signal which memory chip is being accessed? &lt;br /&gt;&lt;br /&gt;A. The address input B. The output enable C. The chip enable D. The data input E. The data output &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;34. Which of the following switching methods provides the greatest frame through out? &lt;br /&gt;&lt;br /&gt;A. Store-and-forward switching B. Frame-tag switching C. Cut-through switching D. ISL switching &lt;br /&gt;&lt;br /&gt;E. Store-and-backward switching &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;35. Which kind of lock includes a keypad that can be used to control access into areas? &lt;br /&gt;&lt;br /&gt;A. Cipher B. Warded C. Device D. Tumbler. E. Typelock &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;36. A gateway is ............................. &lt;br /&gt;&lt;br /&gt;A. a device that enables users to send information simultaneously over a network without slowing down transm
