• 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
  • /
  • Programming

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 (95) UnSolved Question (1888)
Pages: 199FirstPrev84858687888990919293NextLast
Advertisements

(#M40152619) TCS QUESTION tcs Keep an EYE Keep an eye puzzle Keep an eye puzzle

The power of compounding

Manish has realized the power of compounding. Since the days he started earning, he has diligently set aside a small corpus which he saves from his monthly salary and deposits in his bank account. Bank pays him interest every month. Manish is also a determined investor and refrains from withdrawing anything from this account because he now believes in power of compounding. Given investment corpus, fixed annual rate of interest and maturity period calculate the amount the Manish will end up saving at the end of his tenure.

Input Format:

First line contains investment corpus P
Second line contains rate of interest per annum R
Third line contains tenure T (in months)

Output Format:

Print the maturity amount after specified tenure in the format "Final_Amount "

Constraints:

P > 0 ; it can be float value

R >=0 ; it can be float value

T >0 ; it can be integer only

Calculation should be done upto 11-digit precision

Maturity amount should be printed, rounded off to its nearest integer value

Asked In TCS aswinbalamurali (10 years ago)
Unsolved Read Solution (4)
Is this Puzzle helpful?   (23)   (15) Submit Your Solution Program

(#M40152618) TCS QUESTION tcs Keep an EYE Keep an eye puzzle Keep an eye puzzle

Between Devil and Deep Sea

A band of pirates have made loot. By their misfortune though, instant Karma is delivered. While they are travelling a treacherous route in the high and the deep seas they are also haunted by a devil, perhaps a spirit who suffered at their hands previously. The pirates now have to make tricky decisions. They run forward to save themselves from the Devil, but the deep seas force them backwards. There is a danger of falling in a whirlpool if they move forward rashly and there is a danger of being caught by the Devil if they move too much back. But move they must.

First they recede backwards B meters and then advance forward F meters, in a straight line. They cover 1 meter in T units of time. This backward and forward movement is performed repeatedly by the Pirates because they have panicked.

Your task is to find out if they will perish at the hands of the Devil or they will get sucked into the whirlpool of the Deep Sea and in how much time. It is also possible that by good fortune they might survive. Write a program to calculate the outcome

Asked In TCS aswinbalamurali (10 years ago)
Unsolved
Is this Puzzle helpful?   (1)   (8) Submit Your Solution Program
Advertisements

(#M40152614) C QUESTION strings Keep an EYE Keep an eye puzzle Keep an eye puzzle

is string is different from arrays

Asked In C Anusha Mukka (10 years ago)
Unsolved Read Solution (6)
Is this Puzzle helpful?   (1)   (1) Submit Your Solution Output

(#M40152596) WIPRO QUESTION coding Keep an EYE Keep an eye puzzle Keep an eye puzzle

Write a program in java by receiving a matrix 3x3 matrix. that first element is s=1, and the matrix elements increase by 1,like
1 2 3
4 5 6
7 8 9
hence here s=4;generate a matrix and find its transpose, and find the multiplication of original matrix with its transpose.

print all the matrix.

Asked In Wipro Pragnyananda Mishra (10 years ago)
Unsolved Read Solution (5)
Is this Puzzle helpful?   (11)   (7) Submit Your Solution Technical

(#M40152555) MOCK TEST QUESTION Social Networking Keep an EYE Keep an eye puzzle Keep an eye puzzle

In a social network, online communities refer to the group of people with an interest towards the same topic.
People connect with each other in a social network. A connection between Person I and Person J is represented as C I J. When two persons belonging to different communities connect, the net effect is merger of both communities which I and J belonged to.
We are only interested in finding out the communities with the member count being an even number. Your task is to find out those communities.

Asked In Mock test Dhadke sachin Bhagwan (10 years ago)
Unsolved
Is this Puzzle helpful?   (0)   (2) Submit Your Solution Database

(#M40152554) MOCK TEST QUESTION Trace The Rats Keep an EYE Keep an eye puzzle Keep an eye puzzle

Given a square maze (A) of dimension N, every entry (Aij) in the maze is either an open cell 'O' or a wall 'X'. A rat can travel to its adjacent locations (left, right, top and bottom), but to reach a cell, it must be open. Given the locations of R rats, can you find out whether all the rats can reach others or not.

Asked In Mock test Dhadke sachin Bhagwan (10 years ago)
Unsolved
Is this Puzzle helpful?   (0)   (2) Submit Your Solution

(#M40152553) MOCK TEST QUESTION Zombie World Keep an EYE Keep an eye puzzle Keep an eye puzzle

Zoya has developed a new game called Zombie World. The objective of the game is to kill all zombies in given amount of time. More formally,
· N represents the total number of zombies in the current level

· T represents the maximum time allowed for the current level

· P represents the initial energy level a player starts with

· Ei defines the energy of the i-th zombie

· D defines the minimum energy the player needs, to advance to the next level

In order to defeat a zombie, player energy must be at least equal to the i-th zombie's energy. If the player succeeded in defeating the zombie, then he will be awarded with an additional energy equal to the difference between current zombie energy and the player energy.
One unit of time will be taken to complete the fight with a single zombie.

Rules of the game:-
· At any given time, a player can fight with only one zombie

· Player is allowed to choose any one zombie to fight with.

Your task is to determine whether the player will advance to the next level or not, if he plays optimally.

Asked In Mock test Dhadke sachin Bhagwan (10 years ago)
Unsolved Read Solution (1)
Is this Puzzle helpful?   (4)   (5) Submit Your Solution

(#M40152552) AMCAT QUESTION ASKED IN AMCAT Keep an EYE Keep an eye puzzle Keep an eye puzzle

Module Name
ScorePercentile
English
490 56
Computer Programming
625 97.4
Logical Ability
580 87.3
Quantitative Ability
680 99.4
Electronics & Semiconductor Engineering
612 99.9

Can i expect calls

Asked In AMCAT RAKESH G.N (10 years ago)
Unsolved Read Solution (2)
Is this Puzzle helpful?   (0)   (0) Submit Your Solution

(#M40152549) C QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

sort the elements of an array without using any another array how to make this program

Asked In C shalini tiwari (10 years ago)
Unsolved Read Solution (2)
Is this Puzzle helpful?   (1)   (0) Submit Your Solution Output

(#M40152548) WIPRO QUESTION Pattern Programming Keep an EYE Keep an eye puzzle Keep an eye puzzle

1*2*3*4*17*18*19*20
--5*6*7*14*15*16
----8*9*12*13
------10*11

Asked In Wipro Devendra Kumar (10 years ago)
Unsolved Read Solution (13)
Is this Puzzle helpful?   (53)   (33) Submit Your Solution Program
Keep an EYE (0)Interview Experience (261)
Solved Question (95) UnSolved Question (1888)
Pages: 199FirstPrev84858687888990919293NextLast
  • Login
  • Register

Resend

Sponsored Links

Advertisements

Challenger of the Day

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

Maths Quotes

Language is remarkable, except under the extreme constraints of mathematics and logic, it never can talk only about what it's supposed to talk about but is always spreading around.

Raju Sharma

An expert is a man who has made all the mistakes, which can be made, in a very narrow field.

Niels Bohr

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