|
|
|
|
|
|
|
|
|
Join our Yahoo Groups
|
|
|
|
|
|| freshersdreams ||Latest
Job openings in the Top MNC for Freshers & Expercienced
||
Learn how to crack interviews
||FreshersDreams||
Company Question Papers, Technical Ques, Programming
Section, FREE Resume Tips, Student Resources ||
FreshersDreams || Company
Information, Consultancy Listings, Company Profiles, Alumini
and lot more ... || FreshersDreams
||Join the Freshersdreams
Yahoo Group to get latest job openings :: fresherdreams-subscribe@yahoogroups.com
|
|
|
|
|
|
|
CITI
GROUP
For
More CITIGROUP paper please Clickhere
PAPER-1
1]. The following variable is available in
file1.c
static int average_float;
all the functions in the file1.c can access
the variable
[2]. extern int x;
Check the answer
[3]. Another Problem with
# define TRUE 0
some code
while(TRUE)
{
some code
}
freshersdreams.com
This won't go into the loop as TRUE is defined
as 0
[4]. A question in structures where the memebers
are dd,mm,yy.
mm:dd:yy
09:07:97
[5]. Another structure question
1 Rajiv System Analyst
[6]. INFILE.DAT is copied to OUTFILE.DAT
[7]. A question with argc and argv .
Input will be
c:\TEMP.EXE Ramco Systems India
freshersdreams.com
----------------------------------------------------------------------
main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
----------------------------------------------------------------------
freshersdreams.com
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);
}freshersdreams.com
----------------------------------------------------------------------
main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
freshersdreams.com
--------------------------------------------------------------------
#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);
}
Paper-2
freshersdreams.com
SECTION-1
1) For the first qustion in the paper answer
is (30).
2)Five trays cost is 0.35 each and dozen-----
(ans:Rs13.75)
3) In a journey of 15 miles two third distance
was traveled
with 40 mph and remaining with 60 mph. How
much time the
Journey takes... (ans: 20 min)freshersdreams.com
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).freshersdreams.com
5) 12 revolutions takes 1/8 th second time.
In 20 seconds how
many revolutions...(ans:1920)
6) In 60 reams of paper 40 reams were utilized
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 5x3x2inch.How many
blanks of size
2x1x1inch can be stored.. (ans:15)freshersdreams.com
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)
This section includes 10 data interpretation
questions. For
this 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 books.
Some questions are difficult. SO you first
do the above questions
and go to data interpretation.freshersdreams.com
In the above given paper the meaning of the
questions may be wrong,
but the answers and the numerically in the
question are exactly
correct. so it would be better to remember
the answers.
thta'S all about this section.
NUMBER SERIES: 20 QUESTIONS 7 MINUTES
These are very easy. Questions are not available.
FIGURE SERIES: 20 questions 14 minutes
THESE ARE ALSO VERY EASY.DON'T WORRY ABOUT
THIS SECTION
ANALYTICAL REASONING:freshersdreams.com
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 Arithmetic and
Interview.
d)E is intelligent in Interview, reasoning
and Arithmetic.
e)B and D are intelligent in Arithmetic and
General Awareness.
1) Who is intelligent in English, arithmetic
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 Arithmetic, General
Awareness and
Interview (ans:D)freshersdreams.com
4) Who is intelligent in English General Awareness
and Reasoning (ans:C)
5) Who is intelligent in Arithmetic , 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,
drive at the begining.
E drive at the end.freshersdreams.com
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:DATA 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)
IN THIS SECTION ALSO THERE ARE SOME MORE QUESTIONS.THESE
ARE NOT AVAILABLE.freshersdreams.com
This is also like tcs paper. for every section
there will be a
limited time.you should complete only at that
specified time.
They won't allow going back in the middle.
So please remember, time factor is the important
thing.
ESSAY (10 MIN)freshersdreams.com
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..
freshersdreams.com
|
|
|
|
|
|
|