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

(#M40167071) RRB QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

A dealer buys a product at Rs. 1920, he sells it at a discount of 20% but still gets a profit of 20%. what is the selling price

Asked In RRB Aleena Rahim (4 years ago)
Unsolved Read Solution (2)
Is this Puzzle helpful?   (3)   (2) Submit Your Solution Profit and Loss

(#M40167070) DATA STRUCTURE QUESTION Given a positive integer n and you task is find the minimum number of steps that takes n to one . Keep an EYE Keep an eye puzzle Keep an eye puzzle

Problem Statement:

Problem statement is very easy . On a positive integer, you can perform any one of the following 3 steps.

1.) Subtract 1 from it. ( n = n - 1 )

2.) If its divisible by 2, divide by 2. ( if n % 2 == 0 , then n = n / 2 )

3.) If its divisible by 3, divide by 3. ( if n % 3 == 0 , then n = n / 3 )

Given a positive integer n and you task is find the minimum number of steps that takes n to one .

Asked In DATA STRUCTURE SUDHEER BABU PALLANTI (4 years ago)
Unsolved
Is this Puzzle helpful?   (3)   (1) Submit Your Solution
Advertisements

(#M40167069) INTERVIEW QUESTION car Keep an EYE Keep an eye puzzle Keep an eye puzzle

Every 5th car is red and every 4th car is blue. How may number of cars are in the Parking lot?

Asked In Interview kangana (4 years ago)
Unsolved
Is this Puzzle helpful?   (0)   (0) Submit Your Solution General Knowledge

(#M40167068) DATA STRUCTURE QUESTION Move all zeros present in an array to the end Keep an EYE Keep an eye puzzle Keep an eye puzzle

EXAMPLE:
Input=['1','0','1','2','3','0','3','4','0']
Output:
['1', '1', '2', '3', '3', '4', '0', '0', '0']

// Function to move all zeros present in the array to the end
void reorder(int A[], int n)
{
// k stores index of next available position
int k = 0;

// do for each element
for (int i = 0; i < n; i++)
{
// if current element is non-zero, put the element at
// next free position in the array
if (A[i] != 0)
A[k++] = A[i];
}

// move all 0's to the end of the array (remaining indices)
for (int i = k; i < n; i++)
A[i] = 0;
}

// Move all zeros present in the array to the end
int main(void)
{
int A[] = { ..... };
int n = sizeof(A) / sizeof(A[0]);

reorder(A, n);

for (int i = 0; i < n; i++)
printf("%d ", A[i]);

return 0;
}

Asked In DATA STRUCTURE SUDHEER BABU PALLANTI (4 years ago)
Unsolved
Is this Puzzle helpful?   (2)   (0) Submit Your Solution

(#M40167067) HCL QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

R 4 T M 7 W % J 9 5 I # 1 P B 2 T A 3 D

Asked In hcl Bussireddy Abhilash Reddy (4 years ago)
Unsolved
Is this Puzzle helpful?   (4)   (2) Submit Your Solution Coding Decoding

(#M40167066) SSC QUESTION Ratio and Poportion Keep an EYE Keep an eye puzzle Keep an eye puzzle

In a mixture of milk and water ; the ratio milk and water is 3:4 . how much part of the mixture is replaced by water so that the ratio of mixture becomes 1:2 ?

Asked In SSC C.Manohar (4 years ago)
Unsolved
Is this Puzzle helpful?   (8)   (0) Submit Your Solution Averages

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

The 4th and 7th term of an arithmetic progression are 11 and -4 respectively. What is the 15th term ?
A)-44 B)-39 C)-49 D)-34

Asked In TCS Devendra Marghade (4 years ago)
Unsolved Read Solution (22)
Is this Puzzle helpful?   (154)   (30) Submit Your Solution Arithmetic

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

The ratio in which tea costing Rs. 192 per kg is to be mixed with tea costing Rs. 150 per kg, so that the mixed tea when sold for Rs. 194.4 per kg, gives a profit of 20%
A)5:3 B)5:2 C)2:5 D)3:5

Asked In TCS Devendra Marghade (4 years ago)
Unsolved Read Solution (7)
Is this Puzzle helpful?   (63)   (11) Submit Your Solution Alligation or Mixture

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

Which of the following statements are correct about 6 used in the program?
int num[6];
num[6]=21;

A)In the first statement 6 specifies a particular element , whereas in the second statement it specifies a array size. B)In both the statements 6 specifies array size C)In the first statement 6 specifies a array size, whereas in the second statement it specifies a particular element of array. D)In the first statement 6 specifies a particular element, whereas in the second statement it specifies a type.

Asked In TCS Devendra Marghade (4 years ago)
Unsolved Read Solution (12)
Is this Puzzle helpful?   (52)   (5) Submit Your Solution Arrays

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

Select the most appropriate word to fill in the blank.
After the marathon, some of the competitors felt completely _______
A)run out B)cut up C)done out D)done in

Asked In TCS Devendra Marghade (4 years ago)
Unsolved Read Solution (12)
Is this Puzzle helpful?   (36)   (11) Submit Your Solution One Word Substitution
Keep an EYE (0)Interview Experience (261)
Solved Question (6040) UnSolved Question (153944)
Pages: 15999FirstPrev78910111213141516NextLast
  • 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

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