• 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: 10123456789NextLast
Advertisements

(#M40166286) JAVA QUESTION NEAREST PERFECT SQUARE Keep an EYE Keep an eye puzzle Keep an eye puzzle

Find the nearest perfect square of the given number.
Sample input:600
Sample output:576.

Sample input:47011
Sample output:47089

Asked In Java Arun (6 years ago)
Solved divya Read Solution (1)
Is this Puzzle helpful?   (5)   (2) Submit Your Solution Database

(#M40165956) C QUESTION Loop Keep an EYE Keep an eye puzzle Keep an eye puzzle

What will be the output of the C program, if input is 6?

#include
int main()
{
unsigned char i = 0;
for(;i<=0;i++) ;
printf("%dn",i);
return 0;
}

Asked In C Sandip Hazra (6 years ago)
Solved Arka Mondal Read Solution (6)
Is this Puzzle helpful?   (22)   (11) Submit Your Solution Output
Advertisements

(#M40164911) TCS QUESTION C programming Keep an EYE Keep an eye puzzle Keep an eye puzzle

1.Write a c program to convert binary to decimal
using command line arguments?
2.Write a c program to check whether given no. is palindrome or not?
3. C program to find sum of N prime nos.?

Asked In TCS Cs patel (8 years ago)
Solved ashok Read Solution (14)
Is this Puzzle helpful?   (94)   (16) Submit Your Solution Variables

(#M40158055) ANDROID QUESTION Technical Keep an EYE Keep an eye puzzle Keep an eye puzzle

What is a GCM in android?
Options
1) Google Cloud Messaging
2) Google Count Messaging
3) Google Message pack
4) None of the above

Solution
Google Cloud Messaging

Like manish sir answer on facebook.

Asked In Android Ashish (8 years ago)
Solved Read Solution (5)
Is this Puzzle helpful?   (1)   (1) Submit Your Solution Technical

(#M40154993) AMCAT QUESTION Technical (Computer Programming and Computer science) Keep an EYE Keep an eye puzzle Keep an eye puzzle

Can anyone solve this questions. I need help as I don't know the answers.
Question 1)
Let us assume that P is a process and following two statements are true about the process So, what can be concluded about the process P from these statements?
1. P can move from one processor to another in Symmetric Multiprocessor System.
2 P generates I/0 requests Infrequently, using more of Its time doing computations.
Options are:
1)P has soft affinity for the processor and is a CPU-bound process
2) P has soft affinity for the processor and Is a I/0-bound process
3)P has hard affinity for the processor and is a I/0-bound process
4) P has hard affinity for the processor and is a CPU-bound process

Question 2)
Which of the following statements is/are incorrect’
1. A thread can acquire more than one lock(Mute).
2. Deadlock will occur if a non-recursive mutex is locked more than once.
3. Mutex Is a signaling mechanism used to synchronize access to a resource.
1)Only 1
2)OnIy2
3Only3
4)Both 1 and 2

Question 3)
Each step in the evaluation of an Infix expression refers to the encounter of a token. In the evaluation of the fully parenthesized Infix expression -
((1*2)+4-((7*6)/(8-9)))
Which of the followrng options shows the contents of the Stack after 7th step’
1)((*)+-(
2)((1*2)+
3)((2+
4)(2+4


Question 4)
When a process creates a new process, then which of the following options is shared between the parent process and the child process –
1)Stack
2)Heap
3)Shared memory segment
4)Thread stack


Question 5)
Consider the given declarations-
integer (*arr1)[10]
integer *arr2[10]
Which of the following statements is true regarding the above?
1)arr1 is pointer to an array of integers
arr2 is array of integer pointers
2)arr1 and arr2 both are pointers to array of integers
3)arr1 and arr2 both are arrays of integer pointers
4)arr1 is array of integer pointers
arr2 is pointer to an array of integers


Question 6)
Ama wants to write a program to traverse trees but she does not know how to implement Stacks Which of the following methods can she use to bring out the same?
1) Adding another level of dummy leaf nodes
2) Adding parent node for each node of the tree.
3)Representing the given Binary tree as Threaded Binary tree.
Options are:
1)Only1
2)Only 2
3) Only3
4)Both 1 and 2
5)Both 2 and 3


Question 7)
A semaphore S is an integer variable that, apart from initialization, is accessed only through two standard atomic operations What are those operations?
1)test() and set()
2)wait() and signal()
3)lock() and unlock()
4) test() and flag()


Question8)
Consider the given conditions in regards to the circular queue
1) (FRONT = 0) and (REAR =CAPACITY - 1)
2) FRONT = REAR
3)FRONT = CAPACITY-- REAR
Which of the above conditions tests the overflow condition of a circular queue?
1)Only l
2)Only2
3)Onty3
4) Both l and 2
5) Both l and 3


Question 9)
There are 2 groups – group a and group b. Match the following
Group A
A)Selective Set
B)Selective Complement
C)Selective clear
D)Mask
Group B
1)0100
2)0111
3)0001
4)0110
Let’s suppose the value of Register R1= 0101 and Register R2= 0011. After performing the Group A operations on both the registers, what will be the content of register R1 in Group B for each specific operation?
1)A-3, B-1,C-4,D-2
2)A-2,B-4,C-1,D-3
3)A-4, B-2, C-3, D-1
4) A-1,B-3,C-2,D-4


Question 10)
Please solve the numerical
Assume that a pipelining is implemented and the data given are
b=3,Pj=04, Pt=06
where
b = jump penalty(loss of cycles due to jump)
Pj = probablity that the instruction is a jump
Pt = probability that the jump is taken
What will be the execution efficiency?
1)0.58
2)0.52
3)0.66
4)0.5

Question 11)
Which of the following statements are true?
1)Transfer of data from Main Memory to Cache Memory is known as mapping process
2) Associative Memory stores both address and data of memory word
3)If the word is not found in the Cache and is in main memory, it is a miss
4) Content Addressable Memory and Associative Memory are same
Options are:
1)Both 1 and 3
2) Both 2 and 3
3)Both 1 and 4
4)1,2 and 3
5)All-1,2, 3 and 4


Question 12)
How many locations can be addressed by a memory chip haying 14 address pins and 4 data pins?
1)2
2)2^10
3) 2^14
4 2^18

Question13)
Friends,Please give the answer-
Shortforms given are
Process> Pro
Arrival Time>A
Priority >Pri
Burst Time in Milliseconds (ms)>B
Friends,Please give the answer after studying process table.
Pro A Pri B(in ms)
P1 0 2 10
P2 0 5 2
P3 2 4 1
P4 2 1 2
P5 3 3 3
There are 5 processess-
Calculate the average waiting time, if the processes are first processed by the first come first serve(FCFS) scheduling (according to their order In the Question) untill all of them arrive . in the system and when all the processes have arrived then they will be scheduled by priority scheduling.
1)7.2
2)8.2
3)9.2
4)10.2


Question 14)
Friends,Please give the answer-
Shortforms given are
Process> Pro
Arrival Time>A
Priority >Pri
Burst Time in Milliseconds (ms)>B
Pro A Pri B(in ms)
P1 0 3 10
P2 0 1 1
P3 2 5 2
P4 2 4 1
P5 3 2 5
There are 5 processes P1, P2. P3, P4 and P5 which are processed by Preemptive Priority scheduling algorithm. In what sequence the processes would be scheduled, if lower number in the priority column in the given table denotes the higher priority?
1)P2-P1-P1-P5-P1-P1-P4-P3
2)P2-P1-P5-P1-P1-P4-P3
3) P2-P1-P1-P5-P4-P1-P3
4) P2-P1-P1-P5-P1-P4-P3



Question 15)
Friends,Please give the answer-
Shortforms given are
Process> Pro
Arrival Time>A
Burst Time in Milliseconds (ms)>B
Pro A B(in ms)
P1 3 3
P2 2 1
P3 0 6
P4 6 5


There are 3 processes P1,P2, and P3 as shown in the process table which are processed by preemptive shortest-job-first(SJP) schedulong algorithm,in what sequence the cpu will be assigned the process-
1)P2-P1-P4-P3
2)P2-P3-P1-P3-P4
3)P3-P1-P4-P2
4)P3-P2-P1-P3-P4

Asked In AMCAT dhritiman (9 years ago)
Solved sai suresh Read Solution (28)
Is this Puzzle helpful?   (22)   (5) Submit Your Solution Arrays

(#M40154740) C QUESTION Basic C Keep an EYE Keep an eye puzzle Keep an eye puzzle

void main()
{
int i=5;

printf("%d%d",i*2,i++);

getch();
}
what will be the output:

Asked In C Mangesh Nakhate (9 years ago)
Solved Syed Ashraf Read Solution (19)
Is this Puzzle helpful?   (30)   (6) Submit Your Solution Basics

(#M40154634) HUAWEI QUESTION C Programming Keep an EYE Keep an eye puzzle Keep an eye puzzle

#include
int main()
{
int a,b;
if(a=1,b=0)
printf("Yes");
else
printf("No");
return 0;
}

Asked In Huawei Kethineni Vinodh (9 years ago)
Solved VINU CHOWDARY Read Solution (5)
Is this Puzzle helpful?   (8)   (3) Submit Your Solution Basics

(#M40154633) HUAWEI QUESTION C Programming Keep an EYE Keep an eye puzzle Keep an eye puzzle

#include
#define mult(x,y) x*y
int main()
{
int a=5,b=5;
printf("%d",mult(a+b,a+b));
return 0;
}

Asked In Huawei Kethineni Vinodh (9 years ago)
Solved VINU CHOWDARY Read Solution (7)
Is this Puzzle helpful?   (7)   (2) Submit Your Solution Technical

(#M40154571) AMCAT QUESTION Computer Science and Computer Programming Keep an EYE Keep an eye puzzle Keep an eye puzzle

1 TB disk storage in a computer is equal to___________
1) 10^5 KB
2) 10^8 KB
3)10^9 kb
4)10^12 kb

Asked In AMCAT dhritiman (9 years ago)
Solved Sindhuri Read Solution (18)
Is this Puzzle helpful?   (40)   (8) Submit Your Solution Variables

(#M40154457) AMCAT QUESTION Computer science Keep an EYE Keep an eye puzzle Keep an eye puzzle

Which of the following statements is true about the logical view of a database?
Options are:
1)It is also known as physical view and there can be one or more logical views of a database
2) It is also known as physical view and there is only one logical view of a database
3)It is also known as conceptual view and there can be one or more logical views of a database
4) It is also known as conceptual view and there is only one logical view of a database

Asked In AMCAT dhritiman (9 years ago)
Solved raviranjan Read Solution (3)
Is this Puzzle helpful?   (20)   (3) Submit Your Solution Basics
Keep an EYE (0)Interview Experience (261)
Solved Question (95) UnSolved Question (1888)
Pages: 10123456789NextLast
  • Login
  • Register

Resend

Sponsored Links

Advertisements

Challenger of the Day

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

Maths Quotes

"Obvious" is the most dangerous word in mathematics.

Eric Temple Bell

" Without Math life is undefined."

Elmor Earl Leonor

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