• 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: 15999FirstPrev164165166167168169170171172173NextLast
Advertisements

(#M40165446) AMCAT-PYTHON AND C QUESTION The program accepts an integer N as the input. All the digits in the number must be repeated consecu Keep an EYE Keep an eye puzzle Keep an eye puzzle

The program accepts an integer N as the input. All the digits in the number must be repeated consecutively. If a digit is not repeated consecutively, the program must repeat it for two times. Finally, the program must print the modified integer value.

Boundary Condition(s):
1 <= N <= 10^13

Input Format:
The first line contains the value of N.

Output Format:
The first line contains the modified integer value.

Example Input/Output 1:
Input:
1223

Output:
112233

Explanation:
1 and 3 are not repeated consecutively. So consider 1 and 3 as 11 and 33.
Hence the output is 112233.

Example Input/Output 2:
Input:
998888745551

Output:
998888774455511

Asked In Amcat-python and c hemanthtejadasari (7 years ago)
Unsolved Read Solution (2)
Is this Puzzle helpful?   (6)   (5) Submit Your Solution

(#M40165445) ELITMUS QUESTION prepration Keep an EYE Keep an eye puzzle Keep an eye puzzle

Is Any question repeat or logic from m4maths
How prepare Quent. to get good marks

Asked In Elitmus ajeet kumar pal (7 years ago)
Unsolved Read Solution (1)
Is this Puzzle helpful?   (6)   (10) Submit Your Solution General Knowledge
Advertisements

(#M40165444) CAMPUS QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

a students average test score on 4 tests is 78.what must be the students scoe on 5th test for the students avg score on the 5th test to be 80

Asked In Campus lakshmi s s (7 years ago)
Unsolved Read Solution (1)
Is this Puzzle helpful?   (3)   (0) Submit Your Solution Averages

(#M40165443) JAVA QUESTION Circles and distance Keep an EYE Keep an eye puzzle Keep an eye puzzle

Circles and Distances
Problem Description
Task is to calculate the straight line distance between the two objects moving in a circular path. They may move at different velocities. The distance has to be calculated after N seconds.

The figure and commentary below it, explains the problem in detail.

com.tcs.cv.automata.ei.middleware.DocxToHtmlConverter@491cde5b:image1.png

We have two point objects B and C at rest on a straight line at a distance r1 and r2 units from a point A. At time t=0 seconds, the objects start moving in a circular path with A at the center with velocity v1 and v2 degrees per second.

Given inputs v1, v2, r1 and r2, calculate the distance between the B and C after N seconds.

Distance should be printed up to an accuracy of 2 places after the decimal point. Use Rounding Half-up semantics.

Input Format
First line contains velocity of object B in degrees per second (v1)

Second line contains distance of object B from A (r1)

Third line contains velocity of object C in degrees per second (v2)

Fourth line contains distance of object C from A (r2)

Fifth line contains time in seconds after which the distance between B and C, is to be measured (N)

Output
The distance between B and C, N seconds after they are set in motion

Constraints

v1, v2, r1, r2 > 0 and all are integer values.

r2 > r1

0 < n <= 100

The objects move in anticlockwise direction

v1, v2 <=360

r2 <= 100


Explanation
Example 1

Input

90

5

270

10

1

Output

15.00

Explanation

After 1 second, the object at B would cover 90 degrees and the object at C would cover 270 degrees. Both the objects would be vertically opposite to each other and would lie in a straight line.

So the distance between them would be equal to the sum of their distance from the origin A=5+10= 15

Asked In Java joshika (7 years ago)
Unsolved Read Solution (1)
Is this Puzzle helpful?   (2)   (0) Submit Your Solution

(#M40165442) TECH MAHINDRA QUESTION Time and Work Keep an EYE Keep an eye puzzle Keep an eye puzzle

18 men take 20 days of 8 hrs. each to do a piece of work. How many days of 10 hrs. each would it take for 24 women if 3 women do as much work as 2 men?

Asked In Tech Mahindra Devendra Marghade (7 years ago)
Unsolved Read Solution (2)
Is this Puzzle helpful?   (10)   (0) Submit Your Solution Time and Work

(#M40165441) TECH MAHINDRA QUESTION Letter Series Keep an EYE Keep an eye puzzle Keep an eye puzzle

___, ayw, gec, mki, sqo
(a) awx
(b) usq
(c) prs
(d) lmn

Asked In Tech Mahindra Devendra Marghade (7 years ago)
Unsolved Read Solution (8)
Is this Puzzle helpful?   (18)   (5) Submit Your Solution Letter Series

(#M40165440) TECH MAHINDRA QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

A part of the below mentioned sentence has been underlined. Choose a better word to use, in place of the underlined: Can you open this knot?
a. Break
b. Loose
c. No improvement
d. Untie

Asked In Tech Mahindra Devendra Marghade (7 years ago)
Unsolved Read Solution (5)
Is this Puzzle helpful?   (66)   (15) Submit Your Solution One Word Substitution

(#M40165439) TECH MAHINDRA QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

Palani’s daughter in law is Cauvery.Cauvery’s daughter is Bimala. Anand is uncle of Bimala. Cauvery and Anand are siblings. Therfore Anand is son of Palani.Pointing to a man, Lakshmi says,
“This man’s son’s sister is my mother-in-law”. How is the Lakshmi’s husband related to the man?
a) son
b) son-in-law
c) grandson
d)nephew

Asked In Tech Mahindra Devendra Marghade (7 years ago)
Unsolved Read Solution (4)
Is this Puzzle helpful?   (12)   (3) Submit Your Solution Blood Relations

(#M40165438) TECH MAHINDRA QUESTION Ratio and Proportion Keep an EYE Keep an eye puzzle Keep an eye puzzle

Three cricket players -- Ramesh, Suresh and Ganesh play for three different cricket Teams – Haryana, Delhi and Rajasthan respectively. Ramesh was born in Chennai but brought up in Karnal,Haryana. Suresh was born in Delhi and brought up in Delhi. Ganesh’s fore-fathers were from Madurai but settled in Rajasthan. All the three participated in a cricket tournament. Ramesh’s runs to Suresh’s runs and Suresh’s runs to Ganesh’s runs are in the ratio 5:7. If the total runs scored by all the three players in the tournament is 327, find the total runs scored by Suresh in the tournament?
a) 95
b) 85
c) 65
d) 105

Asked In Tech Mahindra Devendra Marghade (7 years ago)
Unsolved Read Solution (1)
Is this Puzzle helpful?   (3)   (2) Submit Your Solution Ratio and Proportion

(#M40165437) TECH MAHINDRA QUESTION Area and Volume Keep an EYE Keep an eye puzzle Keep an eye puzzle

A cylinder of diameter 14 and height 7 is converted into a cone of radius 6. Now, what could be the percentage height of the new shape ?
a. 308%
b. 32%
c. 2150%
d. 215%

Asked In Tech Mahindra Devendra Marghade (7 years ago)
Unsolved Read Solution (1)
Is this Puzzle helpful?   (5)   (1) Submit Your Solution Area and Volume
Keep an EYE (0)Interview Experience (261)
Solved Question (6040) UnSolved Question (153944)
Pages: 15999FirstPrev164165166167168169170171172173NextLast
  • Login
  • Register

Resend

Sponsored Links

Advertisements

Challenger of the Day

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

Maths Quotes

If u consizder ur self as zero. ...... Don't worry u r d whole mathematics. ..

pkg

MATHEMATICS IS A "LANGUAGE OF UNIVERSE"

RAJESH

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