Sunday

Nucleus Placement Paper

4 sections each of 15 minutes having 15 questions...
1. Quantitative aptitude
2. Logical reasoning
3. General English
4. Technical aptitude


English Section:

gruesome=? (4 choces were given)
ans:frightful

barbarian=?
ans:uncivilized

serene=?
ans:calm

4 sentences were given,they asked u to choose right senctence.
ans: How's the weather

Mirror on the wall.They asked to replace on word with meaningful option.
ans: mirror at the wall. (Plz check.)

He sometimes works________night.
a)all
b)at
c)all of the above
d)none of above
ans: c(check)

The document______delivered.
ans: has been(plz check)

____ is it from manchaster to london.
ans: How far

I have______my car.
ans: driven

Correct the sentence....They have been doing it since 12 months.
ans: replace 'since' with 'for'

Logical reasoning

if 1234567573 is coded as xxxxxxxxxx and 563423is coded like xxxxxx the 3512 will be coded as? (only format of question, i m mentioning, question is very easy..even a class 3 student will answer)
ans: RATION

Same as previous question with different data.
ans: MEAT
Some analogy questions were given....

dawn:twilight::day:evening/night

Mosquito:maleria::infection:deasease

Writer:book::composer:song

Cloth:scissor::wood:axe

Friend:good::enemy:bad

John and David....Age of both is asked.
ans: the option in which age of John is 40.

Analogy question...
ans: Saturday: Monday (check it)

nalogy question...if 20:21 then what is the appropriate choice
ans:20:21::m:n

Quantitative Aptitude

if a jug evaporates 1/3 rd in first day and 3/4 th of remaining water in the second day.What percentage of water will be
remaining? ans:20%(check it)ans may be 16.6 viz not given

what is the angle between hands of hour and minute in a clock when the time is 8:30? ans:75 degree

In 10 minutes how many degrees hour hand rotates? ans:5 degree

if 17xy+7 =19xy then 14 xy=?
a) 2xy-x
b) 2y
c) x-2y
d) don't remember
ans:8/0.8

Saturday

Novel Placement Paper

1.Max value of SIGNED int
a. b. c. d.
2.One questin is given, long one, to find the answer U should be
femiliar
with the operation as follows

int *num={10,1,5,22,90};
main()
{
int *p,*q;
int i;
p=num;
q=num+2;
i=*p++;
print the value of i, and q-p, and some other operations are there.
}
how the values will change??
3. One pointer diff is given like this:
int *(*p[10])(char *, char*)
asked to find the meaning.
4. char *a[4]={"jaya","mahe","chandra","buchi"};
what is the value of sizeof(a)/sizeof(char *)
a. 4 b.bytes for char c-- d.--
( we don't know the answer)

5. void fn(int *a, int *b)
{
int *t;
t=a;
a=b;
b=t;
}
main()
{
int a=2;
int b=3;
fn(&a,&b);
print the values os a and b;
}
what is the output--- out put won't swap, the same values remain.

a. error at runtime
b. compilation error
c.2 3
d. 3 2
6.
#define scanf "%s is a string"
main()
{
printf(scanf,scanf);
}
what is the output.

ANS : %s is string is string

7. i=2+3,4>3,1;
printf("%d"i);

ans is 5 only.
8. char *p="abc";
char *q="abc123";

while(*p=*q)
{
print("%c %c",*p,*q);
}

a. aabbcc
b. aabbcc123
c. abcabc123
d. infinate loop ( this may be correct)
9. printf("%u",-1)
what is the value?
a. -1 b. 1 c. 65336 d. --


(maxint value-1 I think, check for the answer)

10. #define void int
int i=300;
void main(void)
{
int i=200;
{
int i=100;
print the value of i;
}
print the value of i
}
what is the output?


may be 100 200
11.

int x=2;
x=x<<2;
printf("%d ",x);


ANS=8;
12.

int a[]={0,0X4,4,9}; /*some values are given*/

int i=2;

printf("%d %d",a[i],i[a]);

what is the value??? (may be error)

13.
some other program is given , I can't remember it
U can get it afterwads,

the answer is 3 3

Novartis Placement Paper

About Company: NOVARTIS is a Swiss based MNC and world number one in Pharmaceutical. It has a very good brand name. It's having around 80,000 employees. It's entering IT insustry now to handle the large number of their in-house projects. As of now, the only development center in India is in Mumbai.
The interviews are held for more than 3 years experience in JAVA, J2EE.

There are 3 rounds :

1. Technical Test (25 questions in 45 minutes time)
2. Group Discussion (30 minutes)
3. Technical & HR interview (30 minutes to 90 minutes)
I wrote here all the questions I remember. I think I almost covered most of them.
______________________
Technical Test
______________________
All are multiple choice questions.
1) Question on Static Methods, whether they can be overloaded or not
2) A java program on nested (inner) loops and it is asked what is the output of the program.
3) Once a Servlet is initialized, how do you get the initialization parameters ?
(a) Initialization parameters will not be stored
(b) They will be stored in instance variables
(c) using config.getInitParameters()
ANS: I think answer is (c)

4) A question on functionality of <forward> tag in JSP
5) If the cookies are disabled, how can you maintain the Session.
ANS: URL rewriting
6) If there are strict timelines and if you want to get high performance for JSP to DB access, what method you suggest ?
(a) Moving application server in to same manchine as Database
(b) By storing results in Cache
(c) By implementing Connection Pooling
ANS: I think answer is (c)

7) A question on MVC architecture and the functionality of Controller and View.
8) Question on Design Pattern. (I don't remember it)
9) Which Design Pattern hides the complexities of all sub-systems ?
(I don't remember the options and also don't know answer.)
10) In CMP bean, which method executes only once in life time
(a) setEntityContext()
(b) create()
(c) remove()
(d) find()
ANS: I think answer is (b)
11) Which bean can be called as Multi-Threaded bean ?
(a) Entity beans
(b) Stateless Session beans
(c) Stateful Session beans
(d) Pooled Stateless Session beans
ANS: I think answer is (d)

12) A question on Threads in Java, whether we need to mention the word "Daemon" explicitly to make a thread as Daemon.
13) A question on Transactions of EJB. I think the question is something similar to - "Which is faster ?"
(a) TRANSACTION_UNREPEATABLE_READ
(b) TRANSACTION_REPEATABLE_READ
(c) TRANSACTION_COMMIT_READ
(d) TRANSACTION_UNCOMMIT_READ
(I don't know answer and also I am not sure of options. but the options are something similar to this.)
14) Question on EJB Home Object, Remote Object and what functionalities will be performed by each.
15) What is the difference between Server and Container
(a) A Container can have multiple Servers
(b) A Server can have multiple Containers
(c) A Server can have only one Container
ANS: I think answer is (b)
16) ejbStore() method is equivalent to
(a) SELECT
(b) INSERT
(c) UPDATE
(d) DELETE
ANS: I think answer is (c)
17) A question on where the garbage collection is done. I think the answer is : "finalize()" method
18) A question properties of Primary key in Entity Beans (I don't remember the options exactly.)
(a) Primary key consists of only basic data types in java
(b) Primary key can contain composite data types
Remarks on Technical Test : It's a bit difficult and lot of questions are on EJBs, JSPs and Design Patterns.
Group Discussion
Topics:
1. Development of India
2. Qualities to become a successful manager

Technical & HR Interview

1) Tell about yourself ?

2) Explain your projects and what design patterns they follow !

3) Questions on Project management, Team management, Defect prevention, Quality procedures (These, questions are in detail and on each aspect. This went on for around 1 hour.)

4) Tell something about your current company

5) Reasons for leaving current company.

6) Current salary & Expected salary !

6) Any Questions ?

NFL Placement Paper

Pattern: aptitude+technical
50% 50%
aptitude: vocabulary english+verbal,nonverbal reasoning+quantative
technical: c,oops,operating system,compiler,dbms,network,computer graphics,compuiter organisation in this exam 170 questions & time allotted for this exam only 2:00hrs/120min negative marking in this exam:on 1 wrong ans 0.5 mark will be deducted right ans contain 1 mark

some confirm question on this exam:

[1] the process of transforming 1 bit pattern into another is called a masking b bitting c prunning d chopping

[2] lint is a compiler b a interactive debugger c a cinterpreter d a tool for analysing c++ program

[3] header files used in c programs usually found in a /bin/include b /usr/bin/include c /dev/include d /usr/include

[4] dijstra banking algorithm used in the problem a dead lock avoidance b deadlock recovery c mutual exclusion d none

[5] which is following service is not supported by operating system a compilation b accounting protection d i/o operation

[6]which is the following sheduling policy is suited in time sharing o/s a sjf b fcfs c round robin d none

[7] a top down parser genrates a left most derivation b right most derivation c right most derivation in reverse
[8] a bottom up parser genrates a left most derivation b right most derivation c right most derivation in reverse

[9] which is the following symbol table implementation is based on principal of locality of referencea linear list b searchtree c hash table d self organisation list

[10] let * be a boolean operation defined by a a*b =a*b+a'b' then a*a a A b B c 0 d 1

[11]the number column in a state table for a sequential circuit with m flip flops and n inputs a m+n b m+2n c 2m+n d 2m+2n

[12] the minimum time delay between the initiation of two memory operations a access time b cycle time c transfer rate d latency time

[13] the way a card player game arranges his cards as he picks them up one by onea bubble sort b insertion c selection d merge sort

[14] phenomenon of having a continuous glow of a beam on the screen even aftera removed a called a a flouresence b persistence c phospherence d incadence

[15] which display device is suited for cad system a a crt with vector referesh monitor b crt with raster scan monitor
c plasma panel display d led display

[16] the basic elements of a picture in volume graphics a pixel b voxel c volsel d none

[17] which of the following system resides in memory always a text editor b assembler c linker d loader

[18] for a weak entity set to be meaningful it must be a part of a one to many relationship b one to one c many to many d none

[19] c front is a a is front end of a c compiler b is preprocessor of a ccompiler c translates a c++ code to its equivalent code d none

[20] files in a structure of ac++ are by default a public b private c protected d none

[21] end to end connectivity is provided from host to host in a the network layer b the transport layer c the session layer d data
link layer

[22] how many characters persec (7bit+1) can be transmitted per over a 2400 bps line in the transfer is synchronous]
a 300 b 240 c 275 d 250

[23] which is the following is more closely related to the physical communication facilities
a application b session networkn d datalink

aptitude
quantative

1partnership
2time and work
3average
4 arithmatic
5 boat
6profit & loss
7 ratio
8 si & ci

verbal
analogy
sequnce arrangement
puzzle
direction sence
calender
ven diagram

Thursday

Ness Placement Paper

Hello frnds,
I got this pattern frm one of my frnd... hope this will help...
50 Questions from Aptitude........ 1 hour
out of this 50 questions
10 - Analytical reasoning.......
10- Logical reasoning English.... This is tough one prepare well.....
10 - comprehensive (passage reading)...... This is tough one prepare well.....
10- simple Mathematics....... very very easy.......
10-English Grammar......I think u can do ...

60 Questions from Tech.......... 1 hour
10-Data Structures.... read about graphs, tree traversal, stacks, ques, sorting algorithms.....

10- C....they asked from Exploring C ..... so be thorough with all examples and exercises......

10-C++ Basic Concepts...... From Balagurusamy.....
15- C++ programs.....From Balagurusamy... Concentrate more on inheritence, constructors and virtual functions.....

10- SQL Queries..... Study all basic commands like select, update, max, min, average and group by.......

5 - Client - Server ..... definitions of client server....

NCR Placement Paper

NCR Placement Paper and Sample Paper
The pattern for the company NCR Teradata in HYD.

The exam was of 1:45 and consisted of C,C++,Data Structures, total 4(5 Marks)

Note that the code or the values may not be correct.... Just get the concept.

Predict the o/p... each 1 mark

1.
static int i;
{
i=10;
...
}
printf("%d",i);
Ans: 10

2.
#define func1(a) #a
#define func2(a,b,c) a##b##c
printf("%s",func1(func2(a,b,c)))
Ans: func2(a,b,c)

3.
const int* ptr;
int* ptr1;
int a=10;
const int p=20;
ptr=a;
ptr1=p;

4.
class a
virtual disp()
{ printf("In a");}
class b:public a
disp()
{ printf("In b");}
class c:public a
disp()
{ printf("In c");}
main()
{
a obj;
b objb;
c objc;
a=objb;
a.disp();
a=objc;
a.disp();
Ans: "In a" "In a"

5.
a="str";
char *b="new str";
char *temp;
malloc(sizeof(temp)+1,....
strcpy(a,temp);
malloc(sizeof(b)+1,....
strcpy(temp,b);

6.
int m,i=1,j=0,k=-1;
m=k++||j++&&i++;
printf("%d...",m,i,j,k);

7.
class x
{
double b;
double *l;
float &c;
}
main()
{
double g=10.34;
double *f=1.3;
float k=9;
x o;
o.b=g;
o.l=f;
o.c=k;
}

Ans: Compiler Error

Write C/C++ code for following:

For all the probs, u will have decide on wht DS to use.... and u'r program must be efficient...explain in detail... (5 Marks)

1. Find the Kth smallest element in a Binary Tree. (5 Marks)

2. Each worker does a job and is given a rating +ve,-ve or Zero.

Find the MaxSubSequenceSum for given no. of workers.

Ex: Workers=6; Ratings={1,0,-1,4,5,-3}

MaxSubSequenceSum=4+5=9 (5 Marks)

3. 1 to N ppl sitting in a circle. Each one passes a hot potato to the next person. After M passes the person holding the potato is eliminated. The last person remaining is winner. Find winner for given N,M.

Ex: N=5, M=2, Winner=4 (5 Marks)

4. Reverse a given Linked List. (5 Marks)

5. There is a file called KnowledgeBase.txt which contains some words. Given a sub-string u have to find all the words which match the word in the file.

Ex: file contains a, ant, and, dog, pen.

If I give "an" I should get o/p as "ant, and" (10 Marks)

6. Company employee have id,level,no. of sub-ordinates under him...

If a emp leaves then his sub-ordinates are assigned to any of the emp's seniors...
Write four functions:

Nagaroo Placement Paper

There were two parts

1) aptitude duration 90 min
2) technical duration 60 min (for freshers) / 30 min (for exp)

In technical paper, we had a choice of three papers - Java, Vb, & C++. Iwrote on C++

In aptitude paper, they have 25 qns on maths and 25 on reasoning. Maths qns level is same as that of CAT. Mensuration, trignometry, interests etc. are asked. they alos provide you with some formulae on the back of the qpaper. pls note that not all the formulas will be used and not all that are needed are provided. there is negative marking in both papers (+3 & -1). I prepared for this section from IMS CAT material.


Find the output (4-5 qns on this)
Time complexity
Queue, deque, linked list
We can simulate queue using two stacks. Can we simulate two stacks using a queue? etc..

it was 90 mins. aptitude test (50 ques.) - comprising of maths aptitude(25 ques)(trigonometry,pythagoras theorem,basic geometry,mesuration,profit/loss,average,time/speed problems,etc.) and rest 25 ques. were analytical reasoning (eg.set of 5-6 ques. based on a set of statements....gre barrons style). next was the c++ test again 50 MCQ - they asked everything from inheritance to static variables to extern to pointers to data structures etc.

1) apptitude duration 1 hour
2) technical duration 45 min

in apptitude, they asked mostly about the geometry sudied in 9th &10th std. all the mensuration & pythagorus theorem. trapezium,
quadrilaterals, their properties, angles to be found. allmot every thing.In technical, they had 6-7 questions on code optimization and time complexity of c/c++ code. few questions on hashing technique and 3-4 on operating systems and networking. the c, c++ test was quite simple and it had general questions.that is all i remeber, i hope this helps u all.

Friday

Mphasis Placement Paper


A process is defined as
Ans. Program in execution

A thread is
Ans. Detachable unit of executable code)

What is the advantage of Win NT over Win 95
Ans. Robust and secure

How is memory management done in Win95
Ans. Through paging and segmentation

What is meant by polymorphism
Ans. Redfinition of a base class method in a derived class

What is the essential feature of inheritance
Ans. All properties of existing class are derived

What does the protocol FTP do
Ans. Transfer a file b/w stations with user authentification

In the transport layer ,TCP is what type of protocol
Ans. Connection oriented

Why is a gateway used
Ans. To connect incompatible networks

How is linked list implemented
Ans. By referential structures

What method is used in Win95 in multitasking
Ans. Non preemptive check

What is meant by functional dependency

What is a semaphore
Ans. A method synchronization of multiple processes

What is the precedence order from high to low ,of the symbols ( ) ++ /
Ans.( ) , ++, /

Preorder of A*(B+C)/D-G
Ans.*+ABC/-DG

B-tree (failure nodes at same level)

Dense index (index record appers for every search -key in file)

What is the efficiency of merge sort
Ans. O(n log n)

A program on swaping ( 10,5 )was given (candidate cannot recollect)

In which layer are routers used
Ans.In network layer

In which layer are packets formed ( in network layer )

heap ( priority queue )

copy constructor ( constant reference )

Which of the following sorting algorithem has average sorting behavior --Bubble sort,merge sort,heap sort,exchange sort
Ans. Heap sort

In binary search tree which traversal is used for getting ascending order values--Inorder ,post order,preorder
Ans.Inorder

What are device drivers used for
Ans.To provide software for enabling the hardware

Irrevalent to unix command ( getty)

What is fork command in unix
Ans. System call used to create process

What is make command in unix
Ans. Used forcreation of more than one file

Motorola Placement Paper

There are Three streams
1 hardware ( sps)
2 software (gsg)
3 dsp
ppt for 2 hours
salary 28000
hardware 13 questions 1hour and 15 minutes
software 20 questions
Hardware questions

Hardware questions

Draw the state transition diagram for sequence detector for the sequence 011. if the first bit detected is zero then SCRH should be asserted when the second bit is 1 the SCRH should remain asserted when the third bit is 1 the FOUND should be asserted and the SCRH should be disasserted. No bits should be left.

ts=0.5 and Th=0.7 (for the this is the setup time reqd and hold time reqd)
buffer has the delay of 1nsec
what is the setup time _________ns
what is the hold time ___________ns
a.
b.
for Each gate delay time is 0.5 ns

a. For each gate the delay time is 0.5 ns when will the glitch occur draw the glitch waveform.

b. How the circuit should be modified to avoid glitch.

describe the driving inverter? What inverter is weak and which has more strength? why?

what is the output of the following circuit?

Draw the output waveform for the following ckt Vtp=Vtn=1V

obtain expression for the output (the i/ps may not be in correct order)

Determine the output waveform input is

a. What is the output waveform
b. What will happen when the AND gate is replaced by OR gate

using 2:1 Mux and one inverter make XOR gate

using 2:1 Mux make a transparent latch (D f/f)

Design a ckt such that f (clk_out)=2 f (CLK_in) that is frequency doubling circuit is needed

Find the outputs of the following ckts

a). assume Vt = threshold voltage

b).

c).

Software questions:
Totally 20 questions were asked
* Most of them from C and datastructures (in equal nos)
* few from c++

Numbers sequential search has to compare ______ elements on worst and _______numbers on an average

Which of the following algorithm is not applicable for lived list representation of numbers
1. binary search 2. Sequential search 3. Selection sort

program to reverse a linked list all the variables 3 left pair of statements they give, we have to write the logic part
i.e. live
typedef struct link
{
int element;
struct link *next;
}code;
struct link rev(node *p)
{
node *t;
node *r=0;
while(p!=___)
{
t=____;
p=_____;
r=______;
}
return=______

exactly same type of question to check whether the given string is palindrome or not

they gave one program and asked what it is (it is fibonacci series)

int i=7;
printf("%d",i++*i++); what is the answer

int i=7;
printf("%d",i++*i++); what is the answer
7. struct code
{ int I;
int t;
}
/* some code */
main()
{

}
what is wrong ?
semicolon is missing after structure declaration

Selection sort for N elements the no of comparisions needed and no of swapping

One question from heap sort

One question about breadth search

what is a language
* set of alphabet
* combination of alphabet
* strings of some alphabet

Max-Soft Placement Paper

Electronics Design Automation Domain (EDAD)

1. Which transmission line supports Quasi-TEM

a) Stripline b) Microstrip Line c) Coupled Stripline d) Coaxial Line

2. Two isotropic antennas are separated by a distance of 2 wavelengths, if both the antennas are fed with currents of equal phase and magnitude the number of lobes in the radiation pattern in the horizontal plane are

a) 2 b) 4 c) 6 d) 8

3. Given S-parameter corresponds to which microwave component
a) Power Divider b) Coupler c) Circulator d) Filter

4. EMPIRE is based on which method

a) FEM b) BEM c) FDTD d) MOM

5. 1 watt is

a) 10dBm b) 20dBm c) 30dBm d) 40dBm

6. Where is the LNA placed

a) Between Antenna and BPF

b) Between Antenna and Power Amplifier

c) Between Antenna and Mixer

d) Between Mixer and Antenna

7. A rectangular air filled wave-guide has cross section of 4cm x 10 cm. The minimum frequency which can propagate in the wave-guide is

a) 1.5 GHz b) 2 GHz c) 2.5 GHz d) 3.5 GHz

8. A 1km long microwave link uses two antennas each having 30dB gain. If the power transmitted by one antenna is 1w at 3GHz the power received by the other antenna is

a) 98.6 m watts b) 63.4 m watts c) 76.8 m watts d) 55.2 m watts

9. Which of the following is True or False

a) Data rate is inversely proportional to Distance

b) Antenna acts as a load

c) Directivity is inversely proportional to Distance

d) Patch antenna is used in high power applications.

10. The far-field region is commonly taken to exist at (D is the maximum overall dimension of the source)

a) Distances greater than 2D2/ from the source

b) Distances lesser than /4 from the source

c) Distances greater than /4 from the source

d) Distances lesser than 2D2/ from the source

11. If the frequency were 12GHz, what would be the wavelength?

a) 25mm b) 2.5mm c) 0.25 mm d) 250mm

12. What is the frequency range if the antenna is operating at Ku-band?

a) 4-8GHz b) 8-12GHz c) 12-18GHz d) 18-27GHz

13. For a given permittivity of 4 and permeability of 2, what is the wave impedance?

a) 266.5 b) 533.0 c) 377.0 d) 133.2

14. In Smith chart, what is the wavelength it will cover for the first 1800 or first half circle.

a) b) /2 c) /4 d) 2

15. If source impedance is 50 Ohms and the load impedance is 100 Ohms, what will be the line impedance of the Quarter Wave Transformer?

a) 14.14 Ohms b) 50 Ohms c) 1.414 Ohms d) 70.7 Ohms

16. Compute the skin depth of copper at a frequency of 20GHz. (Conductivity of copper = 5.813 x 107 mho).

a) 8.14 x 10-7 b) 6.6 x 10-7 c) 6.4 x 10-7 d) 4.6 x 10-7

17. Zigbee network is mainly used for

a) Signaling and Monitoring

b) High Speed Data Transfer

c) Voice Transfer

d) Video Transmission

18. Ideal Power Supply has

a) Zero internal resistance

b) High O/P resistance

c) High I/P resistance

d) Low O/P resistance

19. Which type of transmission line will have maximum value of characteristic impedance

a) Open Wire line

b) Coaxial Cable

c) Twin lead line

d) None

20. Write the relation between Standing Wave Ratio and Reflection Coefficient?

21. Draw the equivalent circuit of the transmission line.

22. What is resonance?

23. Write syntax to define a function in MATLAB.

24. Mention few applications of EMPIRE.

25. What is the size of a pointer?

Mtnl Placement Paper

1.what is a aquadag.
2.about the quiscent condition
3.cassegrain feedis used with parabolic reflector to
allow the feed convenient position. $
4. configuration of cascade.
ce cc,cbce, none
5.resistors is measured in a) ohms
b) watts. c) both
6.if diameter of radar is >> 4 times $
how much range is increased ans)4
7.n type have which type of impurity
8.semiconductor strain gauge over the normal strain gauge is around.$
9.why slicon is prefeered
10. what is w2/w1=4 relationship is called $
11.which one is best outof(near about)
nyqiust,bode, routhz
12.wein bridge frequecy conditions
13.The ,h, parameter equivalent circuit of a junction transistor is
valid for รข€"
a). High frequency, large signal operation
b.) High frequency, small signal operation
c.) Low frequency, small signal operation
d). Low frequency, large signal operation
14. comparater is used for?
15. astable and bistable uses
16. to increase input z u will prefer
a). Current series feedback
b). Current shunt feedback
c). Voltage series feedback
d). Voltage shunt feedback
17.. Enhancement type P channel MOSFET the gate voltage is
+,-,+ &-
18 which gate gives 0 when i/p is 1
19. decimal have radix ?
20 what is binary for 10
21 one value was given SN72 like that ,u have to tell
which device it means.
22. what does the sync mean in tv tramnsmission. $
23. question on transformer coupling(i didnt remember)
24. where the double tunning is used in radio receivers.
25. sequential circuit dependence on input and output.$
26.question on power receiveed by the receiver in tramsmmission
27.the probability density function of envelope of narrow
band noise is gaussian...............................
28. what isthe output of given IC .
29.if quantization level is incresed from 8--->9 then what is the
effect
30. a figure was given and we have identify thec circuit.
31.in closed loop if u are having m=100 and negative feedback
is .04,what is gain
32.k maps was given u have to give the right pairings.
33.a question on bandwidth
34.fourier series coprises of
sine,cosine,both
35.stalites works in which frequency $
vhf,uhf,both
36.by which u can prepare a binary counter. $
d,rs,jk,latch
37.q based on use of schotky diode
38. q based on the use of varactor diode.
39.q based on allignment in paramagnetic materials.
40.which equipment uses minimum power.
41. it both input of nand gate is high,give the o/p.
42.how many bits are required to reepresent 35 in binary.
43.what is CMRR.
44.if current in zener is increased then what happens.(near about).
45.for,thermistor if temperature is increased then then temperature
coefficent
will?
46.relation between B(beta) and Ic in bjt
47.the resistance of loudspeaker is nearly
ohms,k ohms,m ohms,
48.early state in bjt is due i/p applies,
on time,off time,....

aptitude section

aptitiude q

antonymns of

1. debonair
2.bafeful
3.exasperate.
4.dainty
5.epolsive

6.a very simple passage followed by 5n scoring q,s
7.5 question to pick the wrong part in sentences
maths part

1.work... time taken by 4 men to do work is 98.if 3 more
person are involved they the will finsh the work of 298 hrs
in how many more days
2. dicount offered by 3 shopownwer
15 and 10
20 and 10
36
which is the most discounted
3.15^3-14^3/15^2+210+14^2 solve it
4. (312)^.5 * (201)^.5 solve it
5.radius of 2 circle and revolution of one was given,find the other
6. 7 know french ,8 know german ,3 know none ,find how many know both.
7. 80 %failed in maths, 70 %in english ,10 % failed in both,total
passed
no is 144.find total strength.? $
8.if watch is always makes error of 4 second (+)/hours,what will be
time on 22 day 8 am when it was last corrested on 21 day 1 pm
9 q based on day of birth ?

analytical
1. cube face q(same of any two side is 7) $
2. relationships based simple q .(8 in no in total)
3. dog:caninne governor: ??? $
4. 0,6,24,36,120,312(approx likethat) what should not be there $
5 123456:234556 345678:???

Moscot Placement Paper

TECHNICAL TEST (MASCOT)

Total 6 sections.
1)Computer Fundamentals
2)Algorithms
3)Hardware
4)Software
5)General Awareness
6)Languages

* All together 60 questions with each section containing 10 questions.
* All are multiple choice questions

1. One Nibble = ?
2. Hexadecimal and Octal representation of 1024 ?
3. What a compiler does ?
4. DOS ? (whether Graphical interface or Character interface and two more
choices are given)
5. CPU - abbrevation
6. Fortran used as ( Ans : Scientific Language)
7. ASCII character set ? (total number)
8. Windows NT- What NT stands for?
9. Which is not an input device ? (keyboard, Disk, Mouse,Lightpen)
10. Which is not a pointing device ?( mouse,Joy stick,lightpen none)
11. Microsoft Chief ?
12. 4GL ? (Fortran,SQL,ADA, ....)
13. Father of Computers?
14. Which of them is Object Oriented Language.?
15. Power PC is the product of ? (Microsoft,IBM,Apple,Motorola,Intel)
(A combination of any correct 3 companies)
16. Latest processor used ? (Pentium, Power PC, Pentium pro,none)
17. MS Word is ?
18. First Super Computer built in India. (Ans : param)
19. Which of the following companies donot manufacture chips?
(Microsoft, Motorola, Intel, HP)
20. LAN - abbrevation
21. WAN - abbrevation
22. Modem is ?
(related to electrical hardware.- Like Modulator&demodulator)
23. FDD - abbrevation ( floppy disk drive)
24. BIT - abbrevation
25. Information is ? (message, data,processed data,none)
26. Which is not networking ?(internet,ethernet,arcnet,none)
27. One Gigabyte =?( 2 power30 , 2 power 20 ,2 power 10 none)
28. Which of the following is not RDBMS ? (sybase, SQL,Acess,none)_
29. Oracle is ? (Ans : Relationasl Data Base Management System)
30. In Oracle, Table means ( Ans : Collection of records)
31. DMA - abbrevation (Direct Memory Access,Discrete memory Access,
Disk memoryaccess)
32. What is meant byStatic Variable ?
33. What is meant by QUEUE? {refer any data structures text}
34. What is meant by STACK? {refer any data structures text}
35. The processor used in first IBM PC? (8086,8088,zig4,intel)
36. Difference between 80286 and 80287
37. In bubble sort , no. of comparisons required ?
(ans : formula : N*(N-1)/2)
38. No. of comparisons of an item in 100 items by binary comparison?
( 10,25,50 100)
39. CRT - (Cathode Ray Tube)
40. No. of entryvalues are there in ideally in a subroutine.
41. Binary tree?
42. Flow in one direction ? (Single linked list,Double linked
list,.......,....)
43. Electron screen size ? (here, 2 lines of algorithm is given.
Name the algoirithm)
44. Which is not storage device.? (printer,CD ROM,Disk,none)
45. A question regarding memory ? ( least used memory,recently unused
memory,..)
46. ISO - (International Standard Organisation)
47. HTML - (Hyper Text Makeup Language)
48. Flow chart for factorial N? (ans :choice a)
49. What is meant by Recursion ?

Sunday

Mistral Placement Paper

C Section

1. What does the following program print?
#include <stio.h>
int sum,count;
void main(void)
{< BR> for(count=5;sum+=--count;)
printf("%d",sum);
}
a. The pgm goes to an infinite loop b. Prints 4791010974 c. Prints 4791001974
d. Prints 5802112085 e. Not sure

2. What is the output of the following program?
#include <stdio.h>
void main(void)
{
int i;< BR> for(i=2;i<=7;i++)
printf("%5d",fno());
}
fno()
{
staticintf1=1,f2=1,f3;
return(f3=f1+f2,f1=f2,f2=f3);
}
a. produce syntax errors b. 2 3 5 8 13 21 will be displayed c. 2 2 2 2 2 2 will be displayed
d. none of the above e. Not sure

3. What is the output of the following program?
#include <stdio.h>
void main (void)
{
int x = 0x1234;
int y = 0x5678;
x = x & 0x5678;
y = y | 0x1234;
x = x^y;
printf("%x\t",x);
x = x | 0x5678;
y = y & 0x1234;
y = y^x;
printf("%x\t",y);
}
a. bbb3 bbb7 b. bbb7 bbb3 c. 444c 4448
d. 4448 444c e. Not sure

4. What does the following program print?
#include <stdio.h>
void main (void)
{
int x;
x = 0;
if (x=0)
printf ("Value of x is 0");
else
printf ("Value of x is not 0");
}
a. print value of x is 0 b. print value of x is not 0 c. does not print anything on the screen
d. there is a syntax error in the if statement e. Not sure

5. What is the output of the following program?
#include <stdio.h>
#include <string.h>
int foo(char *);
void main (void)
{
char arr[100] = {"Welcome to Mistral"};
foo (arr);
}
foo (char *x)
{
printf ("%d\t",strlen (x));
printf ("%d\t",sizeof(x));
return0;
}
a. 100 100 b. 18 100 c. 18 18 d. 18 2 e. Not sure

6. What is the output of the following program?
#include <stdio.h>
display()
{
printf ("\n Hello World");
return 0;
}
void main (void)
{
int (* func_ptr) ();
func_ptr = display;
printf ("\n %u",func_ptr);
(* func_ptr) ();
}
a. it prints the address of the function display and prints Hello World on the screen
b. it prints Hello World two times on the screen
c. it prints only the address of the fuction display on the screen
d. there is an error in the program e. Not sure

7. What is the output of the following program?
#include <stdio.h>
void main (void)
{
int i = 0;
char ch = 'A';
do
putchar (ch);
while(i++ < 5 || ++ch <= 'F');
}
a. ABCDEF will be displayed b. AAAAAABCDEF will displayed
c. character 'A' will be displayed infinitely d. none e. Not sure

MindTree Placement Paper

The Question consist of quant-aptitude , logical reasoning , analytical reasoning , and few puzzles
Every Correct answer carry +3 mark and wrong answer carry -1 mark.

A person losses and gains 10% on selling a object for 200.
ans:he losses

sum of 1 to 100 is divisible by
1. 1,2,4,8
2. 2 & 4
3. 2
4. none
ans: 2

10 consonants and 4 vowels , how many words with 3 consonants and 2 vowels?
1) 720 , 2)7200 ...

complete series

AZX....

ABCEFGIJK......( ver easy )

how many nos start and end with 2 b/w 100 and 300?

If a sphere of dia 3 cm is melted & formed into 3 spheres , the diameter of 1st is 1.5cm and that of second is 2.0 cm , what is the diameter of the third?.

5 logical reasoning like :: All elephants are trained a few animals are trained
..........etc -> refer to IMS material for this

There are 6 steps from 1st floor to 2nd floor A is 2 stes below C B is next to D ONly one step is vacant
NO 2 people are on any step
Q )if a is on the first step , which of the following are true

6 people compete in a race A,b,c,d,e,f b is not in the 1st place there are 2 runners b/w d and e a is ahead of d
( one more condition ) and 2 quesitions --very easy

If prizes are increased by 25% , by how much should i reduce the consumption to keep the expenditure same??

how many factors ( or what nos) divide 6400 1) 24 , 2) 25 3) ....

"COURTESY" - how many words can be constructed with C in the begining and Y at the end

My mother's husband's father in laws son's child->what is the relation?

3 glasses containing mixture of water and alco in ratio 2:3 , 3:4 , 5:9 when all 3 are mixed what is the new ratio??

There is a meeting organized, every person shake hands with the other only once. If there are 60 shake hands,how many persons are there in the meeting?.

A fater has 8 children ,he takes 3 at a time to a zoo.probability of a child going to the zoo.

A father has six children .all the children are born at regular intervels.if the sum of their ages of all the children and father is 186. calculate the age of the elder son, when the younger sons age is 3.

count the numbers between 100 and 300, that starts with 2 and ends with 2.
Ans: 10.

Some reasoning questions There are six steps,5 people a,b,c,d,e . conditions are , a is two steps below c,no two people are on same step,b is next to d. 4 Questions based on this

5 people participating in the race .conditions are given about the positions.

A ball is dropped from a height of 10 feet.Every time it rebounces to half of the height. how many feet it traveled?

There are 3 jars. The ratio of spirit to water in each of these jars is 3:2,4:5,5:7. the three jars are mixed into a single jar. What is the ration of spirit to water in single jar.

What is the relation with your mothr's sister's brother's wife's child with you.?

what is the relation with your mother's husband's father-in-law's son's child with you?

There is one programing question. We have to write program(This program will be evaluated if you are qualified forInterview).you will be given choice(ie write one out of two given)

GD topics.

If both husband and wife are working in the same organization.

coordination between educational institutions and companies.

Linux Vs Microsoft . Which will perish?.

Microsoft Placement Paper

Algorithms & Coding : Microsoft Examination Papers

(Avg. of 25 ) : You have b boxes and n dollars. If I want any amount of
money from 0 to n dollars, you must be able to hand me 0 to b boxes so
that I get exactly what I request." The two questions were "What are
the restrictions on b and n, and how is money distributed among the
boxes?

(Avg. of 49 ) : What is the sum of the numbers from 1 to 1000?

(Avg. of 39 ) : You are an employer. You have ten employees. Each
month, each one of your ten employees gives you ten bags of gold. Each bag
of gold has ten pieces of gold in it. Each piece of gold weighs one
pound. One of your employees is cheating you by only putting nine pieces of
gold in each of his ten bags of gold. You have a scale (not a balance,
a scale), and you can only take one measurement from the scale, only
one (1) reading.

How can you tell which of the ten employees is cheating you by using
this scale and only taking one measurement?

(Avg. of 38 ) : How many points are there on the globe where by walking
one mile south, one mile east and one mile north you reach the place
where you started.

(Avg. of 23 ) : How would go about finding out where to look for a book
in a library? (You do not know how the books are organized beforehand)

(Avg. of 25 ) : Imagine you are standing in front of a mirror, facing
it. Raise your left hand. Raise your right hand. Look at your
reflection. When you raise your left hand your reflection raises what appears to
be his right hand. But when you tilt your head up, your reflection does
too, and does not appear to tilt his/her head down. Why is it that the
mirror appears to reverse left and right, but not up and down?

(Avg. of 21 ) : You have a bucket of jelly beans. Some are red, some
are blue, and some green. With your eyes closed, pick out 2 of a like
color. How many do you have to grab to be sure you have 2 of the same?

(Avg. of 18 ) : You are given a scale which you are to use to measure
eight balls. Seven of these balls have the same weight: the eigth ball
is heavier than the rest. What is the minimum number of weighs you could
perform to find the heaviest of the eight balls?. Remmber it's a scale
not a balance. (i.e. It can just tell you if one side is heavier than
the other it can't give you the exact weight).

(Avg. of 13 ) : How would you design a toaster?

(Avg. of 10 ) : How would you design an universal remote control?

(Avg. of 22 ) : How would you design a clock for a blind person?

(Avg. of 30 ) : How many miles of road are there in the US

(Avg. of 64 ) : There are n couples attending a party. Each one shakes
hands with the persons he doesn't know. (Assuming each person knows
his/her partner) Mary and John are a couple. John asked the rest of the
party-attenders how many times he has shaken hands. Each one gives a
unique answer. How many times does Mary shake hands?

Databases : Microsoft Examination Papers
What are two methods of retrieving SQL?

(Avg. of 588 ) : What cursor type do you use to retrieve multiple
recordsets?

(Avg. of 35 ) : What action do you have to perform before retrieving
data from the next result set of a stored procedure?

(Avg. of 36 ) : What is the basic form of a SQL statement to read data
out of a table?

(Avg. of 29 ) : What structure can you have the database make to speed
up table reads?

(Avg. of 16 ) : What is a "join"?

(Avg. of 17 ) : What is a "constraint"?

(Avg. of 11 ) : What is a "primary key"?

(Avg. of 11 ) : What is a "functional dependency"? How does it relate
to database table design?

(Avg. of 15 ) : What is a "trigger"?

(Avg. of 7 ) : What is "index covering" of a query?

(Avg. of 42 ) : What is a SQL view?

MBT Placement Paper

This
I) Distribution of workers in a factory according to the no.of
children they have
Figure
1. Total no. of workers in the factory.
Ans : 200
2. Total no. of children that all the workers that have between them is
Ans : 560
3. The total no. of literate workers is
Ans : 105
4. The ratio of literate & illiterate is
Ans - 1:2
5. The no. of literate workers with atleast 3 children is
Ans : 45
6. The no. of illiterate workers with less than 4 children is
Ans : 60
7. The rate of literate to illiterate workers who have 3 children is
Ans - 3:4
II) Which of the following statement(s) is(are) not true

a. Literate workers have small families than illiterate workers.
b. Families with 2 or less than 2 children are commoner than families
with 3 or more children.
c. 2 children families constitute 60% of the families of workers.
d. More the no. of children a worker has the more illiterate he is.
e. None the above statement is true.
Ans : e
III) ---- of a mutual instrument vibrate 6,8 & 12 intervals
respectively. If all three vibrate together what is the time
interval before all vibrate together again?
LCM of NR
--------- Ans : 1/2 sec
HCF of DR
12) Certain no. of men can finish a piece of work in 10 days. If
however there were 10 men less it will take 10 days more for the
work to be finished. How many men were there originally.
Ans : 110 men
10) In simple interest what sum amounts of Rs.1120/- in 4 years and
Rs.1200/- in 5 years.
Ans : Rs.800/-
vi) Sum of money at compound interest amounts of thrice itself in 3
years. In how many years
will it take 9 times itself.
Ans : 6
vii) Two trains in the same direction at 50 & 32 kmph respectively. A
man in the slower train observes the 15 seconds elapse before the
faster train completely passes him.
What is the length of faster train ?
Ans : 75m
16) How many mashes are there in a sq. m of wire gauge. Each mesh
being 8mm long X 5mm width
Ans : 25000
17) x% of y is y% of ?
Ans : x
11) The price of sugar increases by 20%, by what % house-wife should
reduce the consumption of sugar so that expenditure on sugar can be
same as before
Ans : 16.66
? ) A man spending half of his salary for house hold expenses, 1/4th
for rent, 1/5th for travel expenses, a man deposits the rest in a
bank. If his monthly deposits in the bank amount 50. What is his
monthly salary ?
Ans : 1000
? ) The population of a city increases @ 4% p.a. That is an additioanl
annual increase of 4% of the population due to this influx of job
seekers, the % increase in population after 2 years is
Ans :
? ) The ratio of no. of boys & girls in a school is 3:2 Out of these
?% the boys & 25% of girls are scholarship holders. % of students who
are not scholarship holders.?
Ans :
? ) 15 Men take 21 days of 8 hrs. each to do a piece of work. How many
days of 6 hrs. each would do if 21 women take. If 3 women do as much
work of 2 men.
Ans : 30
?) a cylinder ingot 6cms in diameter and 6 cms in height is and
spheres all of the same
size are made from the material obtained.what is the diameter of each
sphere?
Ans :3cms
5) rectangular plank of sqrt(2)meters wide can be placed so that it is
on either side of the diagonal of a square shown below.what is the
area of the plank?
Ans :7sqrt(2)
fig no-
7) the difference b/w the compound interest payble half yearly and
the simple interest on a
certain sum cont out at 10% p.a for 1 year is Rs 25 what is the sum
Ans:10,000
8) what is the smallest n0 by which 2880 must be divided in order to
make it a
perfect square ?
Ans : c
a)3 b)4 c)5 d) 6 e)8
9)a father is 30 times more than his son however he will be only
thrice as old as the son
what is father's present age ?
Ans : 40
10) An article sold at a profit of 20% if both the c.p & s.p were to
be Rs.20/- the profit would be 10% more. What is the c.p of that
article?
Ans : 1% loss

Friday

Mastek Placement Paper

Online aptitude test--that is u have to giv ur exam on a PC..i.
2.GD
Here they look for gud points..that is ur ideas are important n not how loud or aggressive u r. We were asked to chose a topic ourselves n we chose education system n India. They might giv u a topic themselves.
3.Interview
My friend who got through was asked only HR quesns.
like...
-tell me smthg abt urself
-how do u look at life
-can u handle stress
-wot is problem with working in teams
No tech quesns were asked.But better be prepared.

Manhattan Associates Placement Paper

About the Company:
The company is in ITPL, Bangalore. And around 200 people strong in India. The whole company is around 1000 people strong world-wide. It's a product based company and dealing mostly with Supply-Chain management and Data Warehousing.

TEST PAPER AND INTERVIEW PATTERN:

There are 4 rounds:
Written Test
Technical Interview
CEO interview
HR interview

The Written test pattern:
50 Questions -- 1.5 hours of time.
Most of the questions are multiple choice.

The split up is :
EJB (10 Questions)
JAVA (20 Questions)
JSP (5 Questions)
MISLLENEOUS - XML, JDBC etc (5 Questions)
ANALYTICAL (5 Questions)
SQL (5 Questions)

EJB
1) What is true about 'Primary Key class' in Entity Beans ?

(a) Used to identify the entity bean based on EJB type, Home Interface and Container Context.
(b) Used to identify the entity bean based on EJB type, Remote Interface and Container Context.
(c) The definition of Primary Key class can be deferred till deployment

2) The Home Interface in Entity beans

(a) Provides at least one create() method
(b) May not provide any create() method
(c) Provides at least one findByPrimaryKey() method
(d) May not provide any findByPrimaryKey() method

3) In CMP of Entity beans

(a) Constructor with no arguments is defined
(b) Constructor is not defined

4) What is the purpose of ejbLoad()

5) What is the purpose of ejbStore()

6) In EJB, when a system error occurs, which exception is thrown ?

(a) EJBException
(b) RemoteException

7) In EJB, which of the following is an application level Exception ?

(a) NullPointerException
(b) ArrayOutOfBoundsException
(c) CreateException
(d) ObjectNotFoundException
(e) All the above
(f) None of the above

8) CMP bean provides

(a) Empty implementation of ejbLoad() and ejbStore()
(a) Concrete implementation of ejbLoad() and ejbStore()

JSP and Mislleneous
1) What is the purpose of XSL

(a) Convert XML to HTML
(b) Convert HTML to XML

ANS: (a)

2) resultSet has the following methods

(a) next()
(b) first()
(c) a & b
(d) No methods

3) In WebLogic clusters, what is the load balancing algorithm ?

(a) RoundRobin
(b) FIFO
(c) LIFO

ANS: (a)

WebLogic uses a Round-Robin strategy as default algorithm for forwarding the HTTP requests inside a cluster. Weight-based and random algorithms are also available.

Lucent Placement Paper

The paper consists of three sections.

1. Aptitude 15 questions 20 min
2. System concepts 20 questions 20 min.
3. 'C' 15 questions 20 min.

Section 1
Question 1 to 5 have to be answered on the basis of the information given below:

On Sunday, December 23, four ships were berthed at the Port.

Ship W left at 4 PM on Sunday, December 23, for a series of 8-day cruises to Bermuda and Nassau.
Ship X left at 4:30 PM on Sunday, December 23, for a series of alternating11-day and 13-day cruises.
Ship Y sailed at 5 PM on Sunday, December 23, for a series of 5-day cruises to Bermuda.
Ship Z sailed on Monday, Decmeber 24, for a series of 7-day cruises to Nassau.
Each cruise begins on the day after departure.
Each ship is scheduled to return to the Port early in the morning after the last day of the cruise and leave again in the afternoon of the same day.
( From 1999 Barrons GRE book Model Test 3 - Section 5 - Q8 to Q12)

1. On December 31, which ships will be sailing from the Port on a New Year's Eve.

(a) W and X
(b) X and Y
(c) W and Z
(d) X and Z
(e) X, Y and Z

Ans: (c)

2. On how many sailing dates between December 24 and February 28 will ship W be moored alongside another ship

(a) 0
(b) 2
(c) 4
(d) 5
(e) 6

Ans: (d)

3. On how many occasions between December 24 and February 28 will three ships be moored at the Port.

(a) 0
(b) 1
(c) 2
(d) 3
(e) 4

Ans: (a)

4. On which day of the week will these four ships make most of their departures?

(a) Sunday
(b) Monday
(c) Tuesday
(d) Thursday
(e) Saturday

Ans: (b)

5. On which days of the week in the period between December 24 and February 28 will the pier be least crowded?

(a) Tuesday and Friday
(b) Tuesday and Thursday
(c) Friday and Saturday
(d) Wednesday and Thursday
(e) Thursday and Saturday

Ans: (a)

6. A family with a husband, his wife and their child are at one side of river.
They want to cross the river on a boat. The child can't be left alone.
The only available boat can hold only one person and the boatboy.
Only the boatboy can row the boat.
What is the minimum number of trips from on bank to the other, that the boatboy has to make
for the whole family to reach the other side.

Question 7 to 10 have to be answered on the basis of the information given below:

The workweek in a small business is a five-day workweek running from Monday through Friday.
In each workweek, activities L,M,N,O and P must all be done.The work is subject to the following restrictions:

L must be done earlier in the week than O and earlier than P
M must be done earlier in the week than N and earler than O
No more than one of the activities can ever be done on any one day

7.Which of the following is an acceptable schedule starting from Monday to Friday

a) L, M, N, O, P
b) M, N, O, N, M
c) O, N, L, P, M
d) P, O, L, M, L
e) P, O, L, M, N

Ans. (a)

8. Which of the following pair of activies could be done on Monday and Tuesday

a) L and O
b) M and L
c) M and P
d) N and O
e) O and M

Ans. (b)

LG Soft India Placement Pape

Instructions:
1. Please ignore any case-sensitive errors and un-included libraries.
2. You may use the back of this question paper for any rough work.

Q1.
main()
{
int i;
printf("%d", &i)+1;
scanf("%d", i)-1;
}

a. Runtime error.
b. Runtime error. Access violation.
c. Compile error. Illegal syntax
d. None of the above

Q2.
main(int argc, char *argv[])
{
(main && argc) ? main(argc-1, NULL) : return 0;
}

a. Runtime error.
b. Compile error. Illegal syntax
c. Gets into Infinite loop
d. None of the above

Q3.
main()
{
int i;
float *pf;
pf = (float *)&i;
*pf = 100.00;
printf("%d", i);
}

a. Runtime error.
b. 100
c. Some Integer not 100
d. None of the above

Q4.
main()
{
int i = 0xff;
printf("%d", i<<2);
}

a. 4
b. 512
c. 1020
d. 1024

Q5.
#define SQR(x) x * x
main()
{
printf("%d", 225/SQR(15));
}

a. 1
b. 225
c. 15
d. none of the above

Q6.
union u
{
struct st
{
int i : 4;
int j : 4;
int k : 4;
int l;
}st;
int i;
}u;

main()
{
u.i = 100;
printf("%d, %d, %d",u.i, u.st.i, u.st.l);
}

a. 4, 4, 0
b. 0, 0, 0
c. 100, 4, 0
d. 40, 4, 0

Q7.
union u
{
union u
{
int i;
int j;
}a[10];
int b[10];
}u;

main()
{
printf("%d", sizeof(u));
printf("%d", sizeof(u.a));
printf("%d", sizeof(u.a[0].i));
}

a. 4, 4, 4
b. 40, 4, 4
c. 1, 100, 1
d. 40 400 4

Q8.
main()
{
int (*functable[2])(char *format, ...) ={printf, scanf};
int i = 100;
(*functable[0])("%d", i);
(*functable[1])("%d", i);
(*functable[1])("%d", i);
(*functable[0])("%d", &i);
}

a. 100, Runtime error.
b. 100, Random number, Random number, Random number.
c. Compile error
d. 100, Random number

Q9.
main()
{
int i, j, *p;
i = 25;
j = 100;
p = &i; /* Address of i is assigned to pointer p */
printf("%f", i/(*p)); /* i is divided by pointer p */
}

a. Runtime error.
b. 1.00000
c. Compile error
d. 0.00000

Logica CGM Placement Paper

There were 4 sections,120ques and 60 minutes.

1. verbal ability (use of is , am, are, words like suspended and imperceptible, and a passage)

2. analytical ability (questions from sets, and valuation of _expression by changing * to /,+ to - etc)

3. mental ability (questions like cube to divide 729 parts and then colou it and then to count how many of them are colored both the sides, three sides or none, a puzzle)

4. its based on your option (C/C++/JAVA/Testing). I opted for c and questions were mostly from exploring c. a large part of C was from pointer and structure.
after this written there was a communication round very similar to jam session and then it was PI and then offer letter on the spot.

Interview Q's asked by LOGICACMG for testing

technical round;

1:bug life cyle
2:projects done
3:wat tool do u use
4:how to choose the tool
5:problems during the testing
6:wat did u do to solve them
7:wat version did u use (winunner)
8:how to map the requirements to d test cases (traceability matrix)

hr round

1:wat would u do if u find a bug
2:wat if the developer denies the bug
3:wat bug tracking tool did u use
4:wat r the different data it contained
5:project
6:wat were ur responcibilities