• 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: 604FirstPrev405406407408409410411412413414NextLast
Advertisements

(#M40030866) TECH MAHINDRA QUESTION series Keep an EYE Keep an eye puzzle Keep an eye puzzle

Q. What is the next number of the following sequence
2, 1, 4, 3, 6, 6, 8, 10, 10, ?, ?

Asked In Tech Mahindra sivaji ragala (11 years ago)
Solved RAKESH Read Solution (29)
Is this Puzzle helpful?   (25)   (8) Submit Your Solution Sequence and Series

(#M40151319) AMCAT QUESTION simplification Keep an EYE Keep an eye puzzle Keep an eye puzzle

1/2x + 1/3y = 2
3x + 3y = 3
find x & y

Asked In AMCAT soumya (10 years ago)
Solved mohan Read Solution (10)
Is this Puzzle helpful?   (14)   (8) Submit Your Solution Algebra
Advertisements

(#M40033574) AMCAT QUESTION programming Keep an EYE Keep an eye puzzle Keep an eye puzzle

Q1. A 8-bit signed integer has the following range:
a. 0 to 255
b. -128 to 127
c. -255 to 254
d. 0 to 509


Q2. What will be the output of the following code statements?
integer x = 34. 54, y = 20, z =
print ( y > 50 AND z > 10 or x > 30 )
a. 0
b. 1
c. -1
d. 10


Q3. Pankaj makes a program to print the product of cubes of the first 10 whole numbers
She writes the following program:
integer x = 0 // statement 1
integer sum = 0 // statement 2
while ( x < 10 ) // statement 3
{
sum = x*x*x // statement 4
x = x + 1 // statement 5
}
print sum // statement 6

Is her program correct? If not, which statement will you modify to correct it?

a. No error, the program is correct
b. Statement 1
c. Statement 4
d. statement 6


Q4. I have a problem to solve which takes as input a number n
property that given the solution for (n
programming technique will I use to solve such a problem?

a. Iteration
b. Decision-making
c. Object Oriented Programming
d. Recursion


Q5. Given:
integer x = 40, y = 35, z = 20, w = 10
Comment about the output of the following two statements:
print x * y / z - w
print x * y / (z - w)

a. Differ by 80
b. Same
c. Differ by 50
d. Differ by 160


Q6. Data and function in which area of a class are directly accessible
outside the class?

a. Public
b. Private
c. Protected
d. None of these

Q7. Here is an infix notation: ((A+B)*C-(D-E))^(F+G) Choose the correct postfix notation
of the above from the given options

a. AB+CD*E--FG+^
b. AB+C*DE--FG+^
c. AB+C*DE-FG-+^
d. A+BC*DE-FG-+^


Q8. If the depth of a tree is 3 levels, then what is the size of the Tree?

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

Q9. One of the following options is a form of access used to add and remove nodes from a
queue.

a. LIFO
b. FIFO
c. Both LIFO and FIFO
d. None of these


Q10. What is the time complexity of adding three matrices of size NXN cell-by-cell?

a. O(N)
b. O(N^2)
c. O(N^3)
d. None of these

Asked In AMCAT (11 years ago)
Solved nirmala Read Solution (35)
Is this Puzzle helpful?   (103)   (23) Submit Your Solution Technical

(#M40010391) BANK EXAM QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

Q. The height of a cone and its base diameter are equal. If the base radius is 'r' what is its slant height?

Asked In Bank Exam PARAG KAMRA (13 years ago)
Solved Garima Read Solution (1)
Is this Puzzle helpful?   (4)   (1) Submit Your Solution

(#M40003744) CSC QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

3, 5, 11, 14, 17, 21

A. 21 B. 17
C. 14 D. 3

Asked In CSC (14 years ago)
Solved kushal jain Read Solution (11)
Is this Puzzle helpful?   (7)   (4) Submit Your Solution Number Series

(#M40032972) TECH MAHINDRA QUESTION find d number Keep an EYE Keep an eye puzzle Keep an eye puzzle

if 1 = 2
2 = 10
3 = 30
4 = 68
5 = ?

Asked In Tech Mahindra yonesh (11 years ago)
Solved Akanksha Mishra Read Solution (17)
Is this Puzzle helpful?   (16)   (2) Submit Your Solution Sequence and Series

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

What is the next number of the following sequence
79,64,26,15,?
OPTIONS:
a) 9
b) 6
c) 10
d) 8

Asked In AMCAT Smita Mishra (11 years ago)
Solved RAKESH Read Solution (7)
Is this Puzzle helpful?   (66)   (27) Submit Your Solution Number Series

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

A boy asked a girl her name she replied your name is behind
your scooty Behind the scooty is written 7.3 3.3 9.3 2.3
What is her name

Asked In Miscellaneous Company Exam prashanthi (13 years ago)
Solved nitu kumari Read Solution (6)
Is this Puzzle helpful?   (34)   (11) Submit Your Solution

(#M40002320) TCS QUESTION TCS Fresher Job Placement Paper : 14 Aug 2011 Keep an EYE Keep an eye puzzle Keep an eye puzzle

There are two boxes, one containing 24 red balls and the other containing 38 green balls. You are allowed to move the balls between the boxes so that when you choose a box at random and a ball at random from the chosen box the probability of getting a red ball is maximized. This maximum probability is
.50
.39
.69
.19

Asked In TCS Aashu (14 years ago)
Solved lakshita Read Solution (3)
Is this Puzzle helpful?   (10)   (1) Submit Your Solution

(#M40155524) SSC QUESTION mensuration Keep an EYE Keep an eye puzzle Keep an eye puzzle

The radius of the biggest ball that can fit inside a 5 cm tall cylinder with a volume of 45 cm^3 is

Asked In SSC DEBARSHI DALAI (9 years ago)
Solved Devendra Marghade Read Solution (2)
Is this Puzzle helpful?   (1)   (1) Submit Your Solution Area and Volume
Keep an EYE (0)Interview Experience (261)
Solved Question (6040) UnSolved Question (153944)
Pages: 604FirstPrev405406407408409410411412413414NextLast
  • Login
  • Register

Resend

Sponsored Links

Advertisements

Challenger of the Day

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

Maths Quotes

Mathematicians are not born,they are made

A M ANKIT KALLURAYA

In mathematics the art of proposing a question must be held of higher value than solving it.

Georg Cantor

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