30 Dec
2)Five trays cost is 0.35 each and dozen—– (ans:Rs13.75)
3)In a journey of 15 miles two third distance was travelled
with 40 mph and remaining with 60 mph.How muvh time the
journey takes…(ans:20 min)
4)A man walks from 9.15 to 5.15 from monday to friday and 9.00
to 12.00 on saturday.Each day 0.45 min lunch.
How much time he walks in a week…(ans: 39hrs15min).
5) 12 revolutions takes 1/8 th second time.In 20 seconds how
many revolutions…(ans:1920)
6) In 60 reems of paper 40 reems were utilised then what
percent will remain…(ans:33.33%)
7) A started at 9.00 am with 6 mph and B started at 9.30 am
with 8mph in the same direction. At what time they will meet…
(ans:11.00am)
8) In a storage stall of 5×3x2inch.How many blanks of size
2×1x1inch can be stored..(ans:15)
9) In a company 3/5 of people know shorthand 1/4th know typing
and 1/5 know both. What fraction of people do not know both..
(ans:35%)
10) A man how many bikes of Rs 14000 can buy by selling 2100
bikes of Rs500/- of each (ans: 75)
11) A company requires 11,500 strength.present employees are 200
women , men and 6500 unmarried To reach the target how many
women required to maintain the same ratio (ans : 300)
12) What is the time required to punch 1500 cards of 50 column
each at the rate of 10,000 punches per hour (ans:7hr 30min)
ANALYTICAL REASONING:
1) In a group of five persons A,B,C,D,and E
a)A and C are intelligent in English and Reasoning.
b)B and C are intelligent in English and General Awareness.
c)E and D are intelligent in Arithmatic and Inteview.
d)E is intelligent in Interview,reasoning and Arithe matic.
e)B and D are intelligent in Arithematic and General Awareness.
1) Who is intelligent in English,arithematic,and general
awareness (ANSWER:B)
2)Who is intelligent in english and reasoning but not in
general awareness (ans:A)
3)Who is intelligent in Arithematic,General Awareness and
Interview (ans
)
4)Who is intelligent in English General Awareness and Reasoning
(ans:C)
5)Who is intelligent in Arithematic,Reasoning and Interview(ans:E)
2) Five persons A,B,C,D and E were travelling in a car.They were
two ladies in the group. Of them who knew the car driving one
was a lady.A is brother of D.B wifeof D,drve at the begining.
E drive at the end.
1)Which of the following is a pair of brothers.(ans:A,D)
2)Who was the other lady in the group.(ans:C)
3)In the case of which the following pairs,no relationship
can be established with one else in the group (ans:C,E)
4)How was E related to A.(ans
ATA INADEQUATE)
3) A man said to woman ” your only brother’s son is my wife’s
brother”. How is the woman related to the man’s wife…(ans:AUNT)
HCL SOFTWARE PAPER
1.which of the following involves context switch,
a) system call b)priviliged instruction
c)floating poitnt exception
d)all the above
e)none of the above
ans: a
2.In OSI, terminal emulation is done in
a)semion b)appl.. c)presenta… d)transport
ans: b
3……. 25MHz processor , what is the time taken by the
instruction which needs 3 clock cycles,
a)120 nano secs b)120 micro secs
c)75 nano secs d)75 micro secs
4. For 1 MBmemory no of address lines required,
a)11 b)16 c)22 d) 24
ans: 16
5. Semafore is used for
a) synchronization b0 dead-lock avoidence
c)box d) none
ans : a
6. class c: public A, public B
a) 2 member in class A,B shouldnot have same name
b) 2 member in class A,C ” ” ” ”
c) both
d) none
ans : a
7. question related to java
8. OLE is used in
a)inter connection in unix
b)interconnection in WINDOWS
c)interconnection in WINDOWS NT
9.No given in HEX —- write it in OCTAL
10.macros and function are related in what aspect?
a)recursion b)varying no of arguments
c)hypochecking d)type declaration
11.preproconia.. does not do one of the following
a)macro …… b)conditional compliclation
c)in type checking d)including load file
ans: c
SECTION B
1.enum day = { jan = 1 ,feb=4, april, may}
what is the value of may?
a)4 b)5 c)6 d)11
e)none of the above
2.main
{
int x,j,k;
j=k=6;x=2; ans x=1
x=j*k;
printf(”%d”, x);
3. fn f(x)
{ if(x<=0)
return; ans fn(5) ….?
else f(x-1)+x;
}
4. i=20,k=0;
for(j=1;j<i;j=1+4*(i/j))
{
k+=j<10?4:3;
}
printf(”%d”, k); ans k=4
5. int i =10
main()
{
int i =20,n;
for(n=0;n<=i![]()
{
int i=10
i++;
}
printf(”%d”, i); ans i=20
6. int x=5;
y= x&y
( MULTIPLE CHOICE QS)
ans : c
7. Y=10;
if( Y++>9 && Y++!=10 && Y++>10)
printf(”…….. Y);
else printf(”"…. )
ans : 13
8. f=(x>y)?x:y
a) f points to max of x and y
b) f points to min of x and y
c)error
d) ……..
ans : a
9. if x is even, then
(x%2)=0
x &1 !=1
x! ( some stuff is there)
a)only two are correct
b) three are correct
c), d) ….
ans : all are correct
10. which of the function operator cannot be over loaded
a) <= b)?: c)== d)*
ans: b and d
SECTION.C (PRG SKILLS)
——–
(1) STRUCT DOUBLELIST
{ DOUBLE CLINKED
INT DET; LIST VOID
STRUCT PREVIOUS; BE GIVEN AND A PROCEDURE TO DELETE
STRUCT NEW; AN ELEMENT WILL BE GIVEN
}
DELETE(STRUCT NODE)
{
NODE-PREV-NEXT NODE-NEXT;
NODE-NEXT-PREV NODE-PREV;
IF(NODE==HEAD)
NODE
}
IN WHAT CASE THE PREV WAS
(A) ALL CASES
(B) IT DOES NOT WORK FOR LAST ELEMENT
(C) IT DOES NOT WORK FOR—–
30 Dec
main()
{
int x=10,y=15;
x=x++;
y=++y;
printf(”%d %d\n”,x,y);
}
int x;
main()
{
int x=0;
{
int x=10;
x++;
change_value(x);
x++;
Modify_value();
printf(”First output: %d\n”,x);
}
x++;
change_value(x);
printf(”Second Output : %d\n”,x);
Modify_value();
printf(”Third Output : %d\n”,x);
}
Modify_value()
{
return (x+=10);
}
change_value()
{
return(x+=1);
}
main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf(”%d %d\n”,x,y);
}
main()
{
char *p1=”Name”;
char *p2;
p2=(char *)malloc(20);
while(*p2++=*p1++);
printf(”%s\n”,p2);
}
main()
{
int x=5;
printf(”%d %d %d\n”,x,x<<2,x>>2);
}
#define swap1(a,b) a=a+b;b=a-b;a=a-b;
main()
{
int x=5,y=10;
swap1(x,y);
printf(”%d %d\n”,x,y);
swap2(x,y);
printf(”%d %d\n”,x,y);
}
int swap2(int a,int b)
{
int temp;
temp=a;
b=a;
a=temp;
return;
}
main()
{
char *ptr = “Ramco Systems”;
(*ptr)++;
printf(”%s\n”,ptr);
ptr++;
printf(”%s\n”,ptr);
}
#include<stdio.h>
main()
{
char s1[]=”Ramco”;
char s2[]=”Systems”;
s1=s2;
printf(”%s”,s1);
}
#include<stdio.h>
main()
{
char *p1;
char *p2;
p1=(char *) malloc(25);
p2=(char *) malloc(25);
strcpy(p1,”Ramco”);
strcpy(p2,”Systems”);
strcat(p1,p2);
printf(”%s”,p1);
}
1.enum day = { jan = 1 ,feb=4, april, may}
what is the value of may?
a)4 b)5 c)6 d)11
e)none of the above
2.main
{
int x,j,k;
j=k=6;x=2; ans x=1
x=j*k;
printf(”%d”, x);
3. fn f(x)
{ if(x<=0)
return; ans fn(5) ….?
else f(x-1)+x;
? Help M Main Menu P PrevMsg
return; ans fn(5) ….?
else f(x-1)+x;
}
4. i=20,k=0;
for(j=1;j<i;j=1+4*(i/j))
{
k+=j<10?4:3;
}
printf(”%d”, k); ans k=4
5. int i =10
main()
{
int i =20,n;
for(n=0;n<=i![]()
{
int i=10
i++;
? Help M Main Menu P PrevMint i=10
i++;
}
printf(”%d”, i); ans i=20
6. int x=5;
y= x&y
( MULTIPLE CHOICE QS)
ans : c
7. Y=10;
if( Y++>9 && Y++!=10 && Y++>10)
printf(”…….. Y);
else printf(”"…. )
ans : 13
8. f=(x>y)?x:y
a) f points to max of x and y8. f=(x>y)?x:y
a) f points to max of x and y
b) f points to min of x and y
c)error
d) ……..
ans : a
9. if x is even, then
(x%2)=0
x &1 !=1
x! ( some stuff is there)
a)only two are correct
b) three are correct
c), d) ….
c), d) ….
ans : all are correct
10. which of the function operator cannot be over loaded
a) <= b)?: c)== d)*
ans: b and d
SECTION.C (PRG SKILLS)
(1) STRUCT DOUBLELIST
{ DOUBLE CLINKED
INT DET; LIST VOID
30 Dec
CITI CORPORATION pattern
The test is followed by a Technical and a HR interview. The Some puzzles may also be asked in the interview
The Written Test consists of three sections. The first section is an aptitude section. The second section is a 10 data interpretation questions section. For this section you follow the GRE book. In these questions some graphs will be there and the related questions will be asked…so you prepare from gre book. The third section is a Number series with 20 Questions to be done in 7 minutes. The Forth section is a Figure series with 20 Questions to be done in 14 minutes. The last section is a Essay. In the last section there was passage. You should conclude that one in the specified 10 min. It would be better to prepare a computer related topics like client server, internet etc..
30 Dec
CitiCorp Company Profile
Citicorp Information Technology Industries Limited had Established in 1989, Citicorp Information specializes in providing state-of-the-art information technology solutions to the Banking and Financial Services Industry worldwide. Its products and services are aimed at the corporate, retail and investment banking business. CITIL has a proven track record of providing high-quality and cost-effective solutions to clients in 42 countries in the US and Carribean, Far East Asia, Middle East Europe and Africa.
CITIL is the first company providing IT solutions to the financial sector, to be rated at Level 4 of Software Engineering Institute’s Capability Maturity Model (SEI-CMM) for process maturity. This rating ranks CITIL among the top 2% of software organizations in the world today.
CITIL’s understanding of the global financial services environment and familiarity with banking security and audit requirements enables it to provide its clients a unique blend of banking expertise and technological skills, resulting in practical, workable and cost-effective solutions.
CITIL operates out of two offices in India – Mumbai and Bangalore. These two offices are CITIL’s development centers and also operate as 24 hours global support centers. In addition to these, CITIL has support centers at eleven regional locations worldwide (Indonesia, Malaysia, Hungary, Jamaica, Kenya, Zambia, Bahrain, Nigeria, Russia, Philippines, Ghana) and two marketing offices (USA and Indonesia)