• 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

Placement Papers with Solutions

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: 15999FirstPrev12879128801288112882128831288412885128861288712888NextLast
Advertisements

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

Que: Choose the correct answer
Vijay wants to print the following pattern on the screen:
2
2 4
2 4 6
2 4 6 8

He writes the following program:

integer i = 1, j=2 // statement 1
while ( i <= 4 ) // statement 2
{
j = 2;
while ( j <= ? ) // Statement 3
{
print j
print blank space
j = j + 2
}
print end-of-line takes the cursor to the next line
i = i + 1
}

What is the value of ? in statement 3 ::

Option 1 : 8
Option 2 : i
Option 3 : 2*i
Option 4 : 4

Asked In AMCAT (11 years ago)
Unsolved Read Solution (6)
Is this Puzzle helpful?   (1)   (1) Submit Your Solution

(#M40032007) SELF QUESTION crypto math Keep an EYE Keep an eye puzzle Keep an eye puzzle

if DAYS + TWO = SHORT
then S+H+O+R+T=?

Samit Karmakar (11 years ago)
Unsolved Read Solution (2)
Is this Puzzle helpful?   (1)   (0) Submit Your Solution
Advertisements

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

Que: Choose the correct answer
Bhavya wants to make a program to print the sum of all perfect squares, where the value of the squares go from 0 to 50. She writes the following program:

integer i = 1, a // statement 1
integer sum = 0
while ( a < 50 ) // statement 2
{
sum = sum + a // statement 3
i = i + 1
a = ( i * i ); // statement 4
}
print sum

Does this program have an error? If yes, which one statement will you modify to correct the program?

Option 1 : Statement 1
Option 2 : Statement 2
Option 3 : Statement 3
Option 4 : Statement 4
Option 5 : No error

Asked In AMCAT Aashu (11 years ago)
Unsolved Read Solution (9)
Is this Puzzle helpful?   (15)   (3) Submit Your Solution Program

(#M40032005) IBM QUESTION IBM Engish assessment test Keep an EYE Keep an eye puzzle Keep an eye puzzle

Q. Which of the following will you choose for a short notice to change the lunch hours?
Option
1)Specific details
2)Context and problem
3)Regarding lunch
4)hours All the above

Asked In IBM Aparna A (11 years ago)
Unsolved Read Solution (15)
Is this Puzzle helpful?   (22)   (20) Submit Your Solution Synonyms

(#M40032004) SELF QUESTION series Keep an EYE Keep an eye puzzle Keep an eye puzzle

please give formula for sum of any fibonacci series??

saranya sankar (11 years ago)
Unsolved
Is this Puzzle helpful?   (0)   (0) Submit Your Solution Sequence and Series

(#M40032003) SELF QUESTION Fibo nacci series Keep an EYE Keep an eye puzzle Keep an eye puzzle

Given a Fibonacci function

f1=1;f2=1

fn=f(n-1)+f(n-2) which of the following is t is true?

1. Every Second element is even

2. Every third element is odd

3. The series increases monotonally

4. For n>2, fn=ceiling(1.6 * f(n-1))

5. None

saranya sankar (11 years ago)
Unsolved Read Solution (1)
Is this Puzzle helpful?   (6)   (1) Submit Your Solution Sequence and Series

(#M40032002) DATA STRUCTURE QUESTION C and Data structures Keep an EYE Keep an eye puzzle Keep an eye puzzle

In binary search tree , n=nodes, h=height of tree.

What's complexity?

1. o(h)

2. o(n*h)

3. o(nLogn)

4. o(n*n)

5. None

Asked In DATA STRUCTURE saranya sankar (11 years ago)
Unsolved Read Solution (9)
Is this Puzzle helpful?   (16)   (1) Submit Your Solution Technical

(#M40032001) SELF QUESTION Loical Number series Keep an EYE Keep an eye puzzle Keep an eye puzzle

Q. Find the next term:
375,864,753,648,.......

Avishek Pattanaik (11 years ago)
Unsolved Read Solution (3)
Is this Puzzle helpful?   (1)   (0) Submit Your Solution Sequence and Series

(#M40032000) UPSC QUESTION mental ability Keep an EYE Keep an eye puzzle Keep an eye puzzle

If in coded language
audio = 85
video = 80
Then
radio = ?

Asked In upsc Nimbagallu Prasanna kumar (11 years ago)
Unsolved Read Solution (4)
Is this Puzzle helpful?   (16)   (5) Submit Your Solution Spotting Errors

(#M40031999) UPSC QUESTION laogical Keep an EYE Keep an eye puzzle Keep an eye puzzle

Q. If in coded language
audio = 85
video = 80
Then
radio = ?

Asked In upsc Pawan Bandgar (11 years ago)
Unsolved Read Solution (7)
Is this Puzzle helpful?   (37)   (13) Submit Your Solution Coding Decoding
Keep an EYE (0)Interview Experience (261)
Solved Question (6040) UnSolved Question (153944)
Pages: 15999FirstPrev12879128801288112882128831288412885128861288712888NextLast
  • Login
  • Register

Resend

Sponsored Links

Advertisements

Challenger of the Day

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

Maths Quotes

"IF YOU DON'T KNOW MATHS , IT MEAN YOU ARE FAR AWAY FROM LIFE."

Ayush

Mathematics is the QUEEN of all subject

Rupam

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