0% found this document useful (0 votes)
188 views12 pages

Value Labs Preparation Material

This document provides preparation material for the ValueLabs recruitment process. It includes sample questions in various categories like vocabulary, analytical reasoning, general knowledge, logical reasoning, and C programming. The questions range from math and logic puzzles to coding concepts. The document also provides explanations and answers for many of the sample questions.

Uploaded by

SHREYA DONTHULA
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
188 views12 pages

Value Labs Preparation Material

This document provides preparation material for the ValueLabs recruitment process. It includes sample questions in various categories like vocabulary, analytical reasoning, general knowledge, logical reasoning, and C programming. The questions range from math and logic puzzles to coding concepts. The document also provides explanations and answers for many of the sample questions.

Uploaded by

SHREYA DONTHULA
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 12

Durga Software Solutions

(Arithmetic & Reasoning)

Value Labs
Preparation Material

DURGA SOFTWARE SOLUTIONS


23/3RT IInd Floor, Opp.Andhra Bank,Near Umesh Chandra Statue,S.R.Nagar,Hyderabad - 500038
DURGA SOFTWARE SOLUTIONS, S.R.NAGAR,HYDERABAD-38, Cell:9246212143, Ph:040-64512786 Page 1
Ph: 040 - 64512786, 09246212143 | www.durgasoft.com
Durga Software Solutions

VALUELABS PREPARATION MATERIAL

The pattern :

1.Written
2.GD
3.Tech-Interview

Quetions may consist of Vocabulay, Analytical, Genaral Knowledge, Simple Logical and
Some C technical Quetions.

Total of 25 Quetions

1-5. Q are Vocabulary, Genaraly from Gre Barrans


6-10.Q are Fill in the blank, Genaraly from Gre Barrans
11-12- are Analytical
13-17 are GenaralKnowledge
18-22 are Simple Logical
23-25 are C technical Quetions mostly on pointers

Arithmetic & Reasoning:

1.In a class 70% passed in mathematics and 80 % passed in English. Together 40% failed in
maths and English in a class of 133 members. How many students passed in both the subjects?
14
2. There are seven stations between Chennai and howrah.How many type of second class tickets
should be printed so as to serve all type of passengers?

a. 20 b. 8 c. 4 d. 7
Ans: b

3.Tanya is older than Eric.


Cliff is older than Tanya.
Eric is older than Cliff.
If the first two statements are true, the third statement is
a) true b) false C)Uncertain
Ans :B

4. During the past year, Josh saw more movies than Stephen.
Stephen saw fewer movies than Darren.

DURGA SOFTWARE SOLUTIONS, S.R.NAGAR,HYDERABAD-38, Cell:9246212143, Ph:040-64512786 Page 2


Durga Software Solutions

Darren saw more movies than Josh.


If the first two statements are true, the third statement is
a) true b) false c) uncertain
Ans: c

5. All the tulips in Zoe's garden are white.


All the pansies in Zoe's garden are yellow.
All the flowers in Zoe's garden are either white or yellow
If the first two statements are true, the third statement is
a) true b) false c) uncertain
Ans: C

6. Today is Tuesday, after 3365 days what is that day


a) Monday b) Tuesday c) Wednesday d) Saturday

7. 2, 4, 6, 8, 10, ... What number should come next?


a) 11 B)12 c) 13 D) 14

8. 58,52,46,40,34,……
a)26 b)28 c)32 d)43

9. a boy walks 90m towards east in search of his father and turns to his right,walks straight for 20
m and again turns to his right. he walks 30 m to reach his uncle's place where he doesn't find his
father and hence moves 100m north where he finds his father. find the distance from the point he
started.(this ques got repeated)

Ans:100m

10.Two trains 225 km apart are traveling toward each other along the same track. Two trains
have the same speed 75kmph. A bee is hovering just above the nose of the first train. It buzzes
from the first train to the second train, turns around immediately, flies back to the first train, and
turns around again. It goes on flying back and forth between the two trains until they collide. If
the bee's speed is twice the speed of two trains, how far will it travel?
ANS: 450 km

11. A husband, wife and child can do a peace of work in 6 days. Wife alone can do the work in
16 days, child alone can do the work in 24 days then husband alone can do the work in how
many days?
ANS:16
12. If $ means three times and % means negative then what is the value of $%$6-%$%6?
ans:-72
13. There are two poles of equal height 15mts. One cable with length 16mts is hanging between

DURGA SOFTWARE SOLUTIONS, S.R.NAGAR,HYDERABAD-38, Cell:9246212143, Ph:040-64512786 Page 3


Durga Software Solutions

that two poles. The height from center of the cable to earth is 7mts then what is the distance
between that two poles?

ANS:16M

14.Two trains 200 miles apart are traveling toward each other along the same track. Two trains
have the same speed 100MPH. A bee is hovering just above the nose of the first train. It buzzes
from the first train to the second train, turns around immediately, flies back to the first train, and
turns around again. It goes on flying back and forth between the two trains until they collide. If
the bee's speed is twice the speed of two trains, how far will it travel?
ANS:400 MILES
15. One person went for shopping spent 1/3rd of the amount to buy cloths and 1/4th of remaining
amount to buy shoes and 1/5th of remaining amount on food. After all, he left with Rs.100/-.
How much amount he had initially?

Ans:250

16. In a Bus there are 7 people.Each one carry 7 bags. Each bag contains 7 cats.Each cat carry 7
small cats. How many legs are there in the bus?

ANS:10990

17. A bus run at 100 km/hr top speed. It can carry a maximum of 6 persons. If speed of bus
decreases in fixed proportion with increase in number of person, find speed when three person
are traveling in bus?
ANS: 200 KM/HR
18. Three people picked 65 apples altogether. At the first tree they have picked the same number
of apples. At the second tree they each picked 3 times as many as they picked at the first tree.
When they finished at the third tree, the group had 5 times as many apples as they had when they
started at that tree. At the fourth tree the group picked just 5 apples. How many apples did each
person pick at the first tree?
ANS: each person picks 1 apple at the first tree.

C-language Questions:
1.int main()
{
Extern int i;
i=4;
printf(“%d”,i);
return 0;
}
a)0 b) 4 c) error d)1

DURGA SOFTWARE SOLUTIONS, S.R.NAGAR,HYDERABAD-38, Cell:9246212143, Ph:040-64512786 Page 4


Durga Software Solutions

Ans: c

2. what is diff b/w arrays and pointers? (should write answer,they will provide white sheets)
Arrays are homogeneous in nature and stores the element continuously where as pointers
hold the address.
Array concept is internally converted into pointer.

3.Should we have to free the memory compulsory when we use malloc() in a c program
ans: yes

4.Difference between const *char p and char const *p;


First case: p is const *p is varying
SecongCase: *p is const p is varying

5.int main()
{
Int n=20,i;
For(i=0;i<=n;i--)
{
Printf(“-“);
Return 0;
}
It will pring only one –(dash)

6.how many characters can be taken as command line arguments?


Any number(Max index of Array Size);

7.find the output


int main(){
char c[20];
c="S\023";
printf("Str length:",sizeof(c));
return 0;
}
ans:20
8.#include
void swap(int &i,int&j);
int main(){
int i=10,j=11;
swap(i++,j++);
printf("%d %d",i,j);
return 0;
}
void swap(int &i,int&j)

DURGA SOFTWARE SOLUTIONS, S.R.NAGAR,HYDERABAD-38, Cell:9246212143, Ph:040-64512786 Page 5


Durga Software Solutions

{
i+=2;
j+=3;
}
Ans:13 15

9. Is there any difference between arr and &arr where arr is the name of an array of 10 integers.
Explain?
Both are different.
Arr contains first element address.
&Arr contains complete array address
10. What are the uses of bit fields in structures?
Memory is used effectively.

11. Is it neccessary to have same size for all members in an union. Explain?
NO. But union size will be longest member inside union.

12. How structure passing is done by the compiler.


Pass by value. Member to member data will be copied

13. NULL macro was defined in which header file?


stdio.h,stdlib.h,….
14. What is the output of following program?
main()
{
float a=1.1;
dauble b=1.2;
if(a==b)
printf("DAUBLE");
else
printf("SINGLE");
}
ans:single
15. While we pass an array to a function, what will be passed?
options:
A)The base address of the array. B)First element of the array.
C)Last element of the array. D)size of the array.
E)____ F)____
ans:a
16. Among the following what are the preprocessor directives (This requires one option or more
than one option)
A)#if B)#ifndef C)#elif D)#endif E)#pragma F)all.
ans:f
17. It is better to use which of the following commands to pass a string of characters.
A) scanf B)gets() C)____ D)____ E)____ F)_____
ans:B

DURGA SOFTWARE SOLUTIONS, S.R.NAGAR,HYDERABAD-38, Cell:9246212143, Ph:040-64512786 Page 6


Durga Software Solutions

18.main()
{
char *p="ValueLabs";
char p[]="ValueLabs";
}
A)Both are same. B)It is necessary to put a value in the square
brackets.
C)We can be able to alter any of the value of *p. D)It requires \0 at the end of each string.
E)______ F)______

(For the above type of question, put tick for all options which are correct)

19. How many number of characters are available including the space between two words?
A)128 B)256 C)64 D)512 E)30

Other types in C-programming:

1. write a c program to take a set of characters as input in 'text' and store it in another array
of characters 'backtext'.
2. write a c program to open a file and write "valuelabs,hyderabad" and save it before
closing.
FILE *fp;

fp = fopne(“Abct.txt”,”r);
if(fp == NULL) return;
fprintf(fp,”%s”, "valuelabs,hyderabad");
fclose(fp);

3. what the difference between malloc and calloc functions.


Malloc default values garbage, it requires two args.
Calloc default values 0’s, it requires one arg.
4.what is the difference between static memory allocation and dynamic memory allocation.
Knowing the memory at compile time. Allocating memory at compile time.

Allocating at runtime DMA

5. what is the advantage of using typedef?


We can create alias names for types.

Technical Round Questions:


1) What does 'virtual"keyword in C++?
Virtual keyword is used to get runtime polymorphism and in multiple inheritance

2) EACKFHDBG what is preorder?

DURGA SOFTWARE SOLUTIONS, S.R.NAGAR,HYDERABAD-38, Cell:9246212143, Ph:040-64512786 Page 7


Durga Software Solutions

3) Depth of balanced binary tree?


a) log2n b) log2n+1 c) n d) None

4) Total no od comparisons in buubble sort when list is not sorted


N2

5) Eficien data structure for store/search list of 1000 records


a) array b) double linked list c) circular queue d) hash table
stor- array
Search – hash table
6) static variale in C stored in
a) heap b) stack c) code segment d) none

7) Connectionless protocol is
UDP

8) Which is associative of data link layer


PHYSICAL LAYER
9) Page pault occurs when
a) page is not in virtual address space b) page is not in virtual addr space
c) both d) none

10) When a process waits for an i/o operation to complete then it is called
synchronous I/O or blocking I/O
11) Router works which layer of OSI
NETWORK LAYER
12) What is interupt latency
interrupt latency is the time that elapses from when an interrupt is generated to when the
source of the interrupt is serviced

13) RARP protocol used to


RARP protocol is used to translate hardware interface addresses to protocoladdresses
14) What critical region is
A critical region is a section of code that is always executed under mutual exclusion.
15) FDDI is which network
a) ring topology b) bus c) star d) mess

16) What are the protocol of data link layer


HDLC: High-Level Data Link Control
ADCCP: Advanced Data Communications Control Protocol
used by ANSI
SDLC: Synchronous Data Link Control
developed by IBM in 1970 as a replacement for its
binary synchronous (BSC) protocol.
LAP-B: Link Access Protocol – Balanced
LAP-D: Link Access Procedure D channel
17) Packet switching used for

DURGA SOFTWARE SOLUTIONS, S.R.NAGAR,HYDERABAD-38, Cell:9246212143, Ph:040-64512786 Page 8


Durga Software Solutions

Packet switching is the approach used by some computer network protocols to deliver data
across a local or long distance connection
18) You want download a file modem spead (isp speed)56kbps. File downloaded with in 2 min,
so how much data downloaded

19) 2 * *X 3* *
----------------
005 **
a*6 *
**3
-----------------
*****
-------------------- find out stars

20) Six people are ther they went see the film, they want sit following order
Suzzy, miley, stella, rachel, raghu, geetha
Suzzy will sit either side of milay
Stell will sit eiher sit of suzzy, miley
Rachel will sit either side of suzzy stell
Like this what is prob of siting students
a) 40 b) 60 c) 54

Some more questions on C,C++,JAVA and Other Questions:


1 . Default session handling is done through
A . Cookies B. Cookieless C. URL mapping D.State server

2. How many web . confiig files do a Application have?


A .1 B. 2 C. 3 D. 4

3. what is the extension of master file


A. .aspx B. .ascx C .asmx D..asdx

4. How many generations do GC have


A .0 B. 1 C. 2 D. 3

5.Use of view state


A TO view all the controls when the page is submitted
B To maintain state and input of the controls when the page is submitted.
C both a and b
D none of the above

6. server required vs-2005

DURGA SOFTWARE SOLUTIONS, S.R.NAGAR,HYDERABAD-38, Cell:9246212143, Ph:040-64512786 Page 9


Durga Software Solutions

A. IIS
B,C,D I don’t remember.

7 . question on .exe file IIS related (regarding the registration of iis)

8.What is the difference between string and string builder?

9.Diffrence between method over ride and over loading?

10.Write code to display the data from database in the gridview whose id is “Gridview1”

11.Write code to access each element in an array using for loop

12.What is boxing and Un boxing? Can u box string to integer ?why?

13.Write code in html to display data table with 1 row and 2 columns n row n columns

14.Write code to retrieve text in text box

15 .Write code to display text in div tag in center

DURGA SOFTWARE SOLUTIONS, S.R.NAGAR,HYDERABAD-38, Cell:9246212143, Ph:040-64512786 Page 10


Durga Software Solutions

Aptitude Training
(Arithmetic & Reasoning)

For CRT, Bank PO’s/Clerks, RRB, Groups,


SI, Constables And Any Competitive Exams…

SAILENT FEATURES:

 PRINTED MATERIAL for each and every topic.

 Topic wise HAND OUTS & EXAMS on each and every topic with 50
problems.

 Previous solved papers of different GOVT & NON GOVT exam papers…
(Bank’s, RRB, SSC, S/W companies placement papers…etc).

 100+ company Placement papers CD.

By Expert Faculties

Mr. Suresh, B.Tech

Mr. Vishnu, B.Tech Fee: 500 INR


Mr. Vinod, B.Tech Only
Mr. Ashok, B.Tech

DURGA SOFTWARE SOLUTIONS, S.R.NAGAR,HYDERABAD-38, Cell:9246212143, Ph:040-64512786 Page 11


Durga Software Solutions

Syllabus:
19. Races
Arithmetic
20. Partnership
1. Number System
Reasoning
2. L.C.M & H.C.F
1. Blood Relations
3. Problems On Ages
2. Directions
4. Averages
3. Coding And Decoding
5. Percentages
4. Series
6. Ratios And Proportion
5. Analogy
7. Profit And Loss
6. Odd Man Out
8. S.I And C.I
7. Ranking
9. Time And Work
8. Cubes
10. Time And Distance
9. Problem Solving
11. Permutations And Combinations
10. Syllogism
12. Probability
11. Logical Venn Diagrams
13. Clocks And Calendar
12. Data Sufficiency
14. Menstruation
13. Data Interpretations
15. Trains
14. Figure Series
16. Boats And Streams
15. Critical Reasoning
17. Pipes And Cisterns
16. Logical Deduction
18. Mixtures And Allegations

DURGA SOFTWARE SOLUTIONS


23/3RT IInd Floor, Opp.Andhra Bank,Near Umesh Chandra Statue,S.R.Nagar,Hyderabad - 500038
DURGA SOFTWARE SOLUTIONS, S.R.NAGAR,HYDERABAD-38, Cell:9246212143, Ph:040-64512786 Page 12
Ph: 040 - 64512786, 09246212143 | www.durgasoft.com

You might also like