• Result
  • Today's Puzzle
    • Previous Puzzles
    • Prize & Rules
  • Discussion Board
    • Suggestion Board
    • Trending Articles
  • Maths Tricks
  • Placement Papers
    • Placement Questions
    • Interview Experience
    • Placed user Comment
    • Group Discussion
  • English APP
  • login
  • Result
  • Today's Puzzle
    • Previous Puzzles
    • Prize & Rules
  • Discussion Board
    • Suggestion Board
    • Trending Articles
  • Maths Tricks
  • Placement Papers
    • Placement Questions
    • Interview Experience
    • Placed user Comment
    • Group Discussion
  • Walkins
    • Corporate Job Exam
    • Government Job Exam
    • Entrance Exam
  • Training
    • Internship
  • Placement Questions

Frequently Asked Interview Questions and Answers

Company

  • 3i-Infotech 345
  • Accenture 548
  • ADITI 81
  • Athenahealth 72
  • CADENCE 37
  • Capgemini 519
  • CMC 49
  • Cognizant 29
  • CSC 480
  • CTS 1340
  • Dell 49
  • Elitmus 44
  • GENPACT 516
  • Google 55
  • HCL 217
  • Hexaware 92
  • Huawei 81
  • IBM 1714
  • IGate 169
  • Infosys 2050
  • L&T 299
  • Microsoft 61
  • Miscellaneous 204
  • Oracle 74
  • Other 95
  • Patni 199
  • Sapient 44
  • Sasken 31
  • Self 38
  • Syntel 530
  • TCS 9109
  • Tech Mahindra 500
  • Wipro 1182

Exam

  • ACIO 119
  • AIEEE 334
  • AMCAT 2636
  • Assessment 108
  • Bank 22
  • CAT 988
  • CMAT 82
  • Cocubes 39
  • Elitmus 2952
  • Exam 39
  • Gate 846
  • GMAT 107
  • Gmate 29
  • GRE 469
  • IIT-JEE 471
  • ITC 28
  • Maths Olympiad 205
  • MBA 3481
  • MCA 32
  • Other 159
  • Others 25
  • R-SAT 111
  • Self 68

Government Jobs Exams

  • Bank Exam 478
  • CDS 57
  • CTET 21
  • IBPS 1258
  • IES EC 44
  • KVPY 364
  • NDA 481
  • NTSE 36
  • REVENUE OFFICE 53
  • RRB 1029
  • SSC 1294
  • UPSC 441

Interview

  • HR Interview 426
  • HR Round 41

Maths Puzzle

  • A website 299
  • Book 23779
  • Campus 250
  • CMAT 49
  • Exam 86152
  • General 399
  • Interview 141
  • M4maths 295
  • Maths 226
  • Orkut 27
  • Other 72
  • Others 1356
  • Reasoning 101
  • Self 3157

Programming and Technical

  • Android 118
  • ASP.NET 60
  • C 459
  • C++ 448
  • DATA STRUCTURE 66
  • DBMS 77
  • ELECTRONICS 39
  • Java 261
  • OOPs Concepts 117
  • Operating Syst 103
  • RDBMS 109
  • UNIX 70
Keep an EYE (0)Interview Experience (261)
Solved Question (6040) UnSolved Question (153944)
Pages: 15395FirstPrev167168169170171172173174175176NextLast
Advertisements

(#M40002916) TCS QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

There are 10 coins. 6 coins showing head. And 4 showing tail. Each coin was randomly flipped (not tossed) seven times successively.after flipping the coins are 5 heads 4 tails one is hided the hided coin will have what.

Asked In TCS Akash (14 years ago)
Unsolved Read Solution (3)
Is this Puzzle helpful?   (30)   (14) Submit Your Solution Blood Relations

(#M40006464) WIPRO QUESTION Time and work problems Keep an EYE Keep an eye puzzle Keep an eye puzzle

A and B working separately can do a piece of work in 20 and 24 days. They work on alternate days starting with B on the first day. In how many days will the work be completed?

Asked In Wipro (13 years ago)
Unsolved Read Solution (9)
Is this Puzzle helpful?   (64)   (31) Submit Your Solution Time and Work
Advertisements

(#M40116147) AMCAT QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

50) Akshit has a large list of fixed length numbers. He needs to sort this list using an efficient technique. Which of the following techniques can he use?
(a)Selection Sort (b)Radix Sort (c)Shell Sort (d)Quick Sort

51) A characteristic of data that binary search uses but linear search ignores is ANS:(A)
(a)order of the list (b)length of the list (c)maximum value of the list (d)None of these
52) Passage: integer MyVar1=5 function main()
{
integer MyVar1=9 print MyVar1
print //missing code
}
Assuming that main() is the starting point of execution of program, which of the following options should replace the
//missing code so as to print the value of global MyVar1 (value = ANS:(C) 5)?
(a)MyVar1.MyVar1 (b)MyVar1[0] (c) ::MyVar1 (d)No local variable should have the same name as the global variable
53) Which of the following options refers to the best case complexity of a Binary Search algorithm while searching a list of n elements?
(a) O(n*n) (b) O(log n) (c) O(n) (d)O (1)
54) Passage:
function Fibonacci(num)
1.if ( num equals 0 )
2.then return 1
3.else if ( n equals 1 )
4.then return 1
5.else return Fibonacci(n-1) + Fibonacci(n-2)
Maya wrote the given algorithm to calculate Fibonacci series.
What is the complexity of this algorithm?
(a) O(n ) (b) O(n ) (c) O(n) (d) O(2 )
55) CPoansssiadgeer :the following pseudo-code class entity
{
private: integer a, b public: integer c
function entity( ) { a = 0; b=0} function compare ( )
{ if (a>b) return 1; return 0
}
}
function main ( )

{
entity black
int value, value2 = 5
value = black.compare( ) // Statement 1 black.c = value2 //Statement 2
print black.a //Statement 3
}
Choose the correct answer. A pseudo-code which is similar to that of C++ and self-explanatory. An accessible member function or data member for an object are accessed by the statement objectname.functionname or objectname.datamembername respectively.
(a)Statement 1 (b)Statement 2 (c)Statement 3 (d)None of these
56) What will be the input to the second pass, if the list before starting the Radix Sort is: 729, 150, 123, 931, 348, 517?
(a)150, 123, 348, 517, 729, 931 (b)150, 931, 123, 517, 348, 729 (c)517, 729, 123, 931, 348, 150 (d)123, 150, 348, 517, 729, 931
56) In the following sorting procedures, which one will be the slowest for any given array? (a)Quick sort (b)Heap sort (c)Merge Sort (d)Bubble sort

Asked In AMCAT Aakash Verma (10 years ago)
Unsolved Read Solution (12)
Is this Puzzle helpful?   (27)   (15) Submit Your Solution Database

(#M40009770) MISCELLANEOUS COMPAN QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

In the given series find the number which is wrong.

4,8,11,22,18,36,24,50

Asked In Miscellaneous Company Exam Arun Selva Kumar (13 years ago)
Unsolved Read Solution (8)
Is this Puzzle helpful?   (19)   (3) Submit Your Solution Interview

(#M40023458) IBPS QUESTION LOGICAL REASONING Keep an EYE Keep an eye puzzle Keep an eye puzzle

The only true education comes through the stimulation of the child's powers by the demands of the social situations in which he finds himself. Through these demands he is stimulated to act as a member of a unity, to emerge from his original narrowness of action and feeling, and to conceive himself from the standpoint of the welfare of the group to which he belongs.

The passage best supports the statement that real education -

A. will take place if the children imbibe action and feeling.
B. will take place if the children are physically strong.
C. is not provided in our schools today.
D. comes through the interaction with social situations.
E. comes from the self-centred approach of the students.

Asked In IBPS MAN (12 years ago)
Unsolved
Is this Puzzle helpful?   (2)   (1) Submit Your Solution Decision Making and Problem Solving

(#M40165908) GRE QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

Machines A and B always operate independently and at their respective constant rates. When working alone, Machine A can fill a production lot in 3 hours, and Machine B can fill the same lot in x hours. If A and B worked alternatively, while each work for 1 hour at a time, the total work gets completed in 4 hours. What is the value of x? A)8 B)9 C)6 D)5 E)7

Asked In GRE Devendra Marghade (6 years ago)
Unsolved Read Solution (1)
Is this Puzzle helpful?   (6)   (5) Submit Your Solution Time and Work

(#M40036651) IGATE QUESTION apti Keep an EYE Keep an eye puzzle Keep an eye puzzle

. What must be added to the two numbers, which are in ratio 5 : 12, so that the new ratio
becomes 3:4?
(a) 5 (b) 8 (c) 1 2 (d) 1 6

Asked In iGate penchala sridhar (11 years ago)
Unsolved Read Solution (11)
Is this Puzzle helpful?   (11)   (11) Submit Your Solution Seating Arrangement

(#M40010669) TCS QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

3 white chips, 7 blue chips, 16 green chips, 2 chips drawn from the box in succession what is the probability that one is blue and other is white?
a) 7/50 b) 8/30 c) 7/25 d) 20/26

Asked In TCS krishnamurthy (13 years ago)
Unsolved Read Solution (10)
Is this Puzzle helpful?   (69)   (18) Submit Your Solution Seating Arrangement

(#M40066426) INFOSYS QUESTION Numerical Keep an EYE Keep an eye puzzle Keep an eye puzzle

When a train travels at a speed of 60kmph,it reaches the destination on time.when the same train travels at a speed of 50kmph,it reaches its destination 15min late.what is the length of journey?
a,75km
b,50km
c,60km
d,85km

Asked In Infosys Harmitha (10 years ago)
Unsolved Read Solution (14)
Is this Puzzle helpful?   (35)   (16) Submit Your Solution Time Distance and Speed

(#M40023496) IBPS QUESTION LOGICAL REASONING Keep an EYE Keep an eye puzzle Keep an eye puzzle

Which word does NOT belong with the others?

A. dodge
B. flee
C. duck
D. avoid

Asked In IBPS MAN (12 years ago)
Unsolved Read Solution (1)
Is this Puzzle helpful?   (16)   (5) Submit Your Solution General Mental Ability
Keep an EYE (0)Interview Experience (261)
Solved Question (6040) UnSolved Question (153944)
Pages: 15395FirstPrev167168169170171172173174175176NextLast
  • Login
  • Register

Resend

Sponsored Links

Advertisements

Challenger of the Day

no image
Dimple
India
Punjab
Time: 00:01:33
Points
19

Maths Quotes

It is impossible to be a mathematician without being a poet in soul.

Sofia Kovalevskaya

Technical development can be done through integration and not by differentiation

TMA

Placed User Comments

M4Math helped me a lot.

Vipul Chavan 5 years ago

Thanks m4 maths for helping to get placed in several companies.
I must recommend this website for placement preparations.

yash mittal 5 years ago

Now enjoy Offline Access of latest Question.

Get M4maths app to avail expert's solution and latest selected questions.

Download m4maths app now

  • 2533K+Registerd user
  • 1774K+Engineers
  • 759K+MBA Asprirant
  • 3K+Enginnering College
  • 250+Company Exam
  • 150K+Interview Questions
  • Site Links
  • Home
  • Result
  • Today's Puzzle
  • Discussion Board
  • Maths Tricks
  • Advertise with us
  • Contact Us
  • Useful Info
  • Maths Quotes
  • Previous Puzzles
  • Prize
  • Privacy Policy
  • Disclaimer and Copyright
  • Terms and Conditions
  • Sitemap
  • Placement papers
  • TCS Placement Paper
  • HCL Placement Paper
  • INFOSYS Placement Paper
  • IBM Placement Paper
  • SYNTEL Placement Paper
  • TECHNICAL Interview
  • HR Interview
All rights are reserved to @m4maths.com