• 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

Frequently Asked Interview Questions and Answers

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: 35FirstPrev6789101112131415NextLast
Advertisements

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

Mr. Sharma is the network administrator of a company. There are in all 20 devices in the company and 2 different networks need to be made with 10 computers each and two different topologies namely - mesh and dual ring need to be followed. In order to connect all computers in a network such that they can transmit data to each other, how many cables will be required in creating both the networks’?

1)40
2)54
3)63
4) 65

Asked In AMCAT dhritiman (10 years ago)
Unsolved Read Solution (2)
Is this Puzzle helpful?   (4)   (7) Submit Your Solution

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


Which of the following is not an application software
1)ms word
2)Mysql
3)DOS
4) vlc MEDIA player

Asked In AMCAT dhritiman (9 years ago)
Unsolved Read Solution (5)
Is this Puzzle helpful?   (11)   (1) Submit Your Solution Technical
Advertisements

(#M40154409) AMCAT QUESTION Data strctures Keep an EYE Keep an eye puzzle Keep an eye puzzle

Which of the following options refers to data-hiding in Object Oriented Programming? -

1) A class does not have functions as private members
2) A class has both data and functions on the data in the class
3) Data in private and protected area of a class is not directly accessible and can only be accessed through member functions in the public area of class
4) A single class can have many objects

Asked In AMCAT dhritiman (9 years ago)
Unsolved Read Solution (1)
Is this Puzzle helpful?   (4)   (7) Submit Your Solution

(#M40154393) AMCAT QUESTION Data strctures Keep an EYE Keep an eye puzzle Keep an eye puzzle

Question 1) Mary is making a database of animals in a zoo and their properties. The possible animals are dog, lion and zebra Each one has as attributes is Herbivorous, colour and isNoctumal. She uses the object oriented programming paradigm for this. How will
she conceptualize the system’
Options are:
1)class Animal. objects: dog. lion and zebra, data members is Herbivorous. colour and isNoctumal
2)class: Animal, objects: is Herbrvorous. colour and is Noctumal, data members dog. hon and zebra
3)classes: dog. lion and zebra, objects Animal, data members is Herbivorous, colour and is Noctumal
4)None of these

Question 2)
What is the minimum number of division checks required to check whether a number is prime or not?
1) (number-1) divisions
2)(number) divisions
3)(integer(number/2)-1) divisions
4) sqrt(number) divisions

Question 3)
What will be the Prefix equivalent for the given notation -
(M+N)-(O+P*Q)R*S
1) -/+MN*+O*PQRS
2) -/+MN*+OPQ*RS
3)-+MN*/+OPQ*RS
4)-+MN*/+O*PQRS

Question 4)

In which area of a class are data and function directly accessible outside the class
Question
O Public
O Private
O Protected
O None of these

Question 5)
Ritika was asked to include concrete objects in her project . Which of the following statements clearly states about the concrete objects?
1)All the objects created as the instance of a class
2)Objects created using the new keyword
3)Variables and obiects that follow the concrete keyword
4)Obiects created under conditional statements

Question 6)

Which of the followng options refers to data-hiding in Object Oriented Programming :
1)A class does not have functions as private members
2)A class has both data and functions on the data in the class
3) Data in private and protected area of a class is not directly accessible and can only be accessed through member functions in the public area of
class
4)A single class can have many objects


Asked In AMCAT dhritiman (9 years ago)
Unsolved Read Solution (2)
Is this Puzzle helpful?   (5)   (3) Submit Your Solution

(#M40154858) TCS QUESTION Apti Keep an EYE Keep an eye puzzle Keep an eye puzzle

.construct the number 101102103104………………………149250 obtained by writing the numbers 101,102,……………..149,150 together what is the remainder when this number is divided by 9 a)0 b)8 c)2 d)3

Asked In TCS dhritiman (9 years ago)
Unsolved Read Solution (6)
Is this Puzzle helpful?   (5)   (0) Submit Your Solution Sequence and Series

(#M40154836) TCS QUESTION Apti Keep an EYE Keep an eye puzzle Keep an eye puzzle

If (3a+6b)/(5a+12b)=12/23 determine the value of 3a2+5b2/ab
a)19/2 b)32/3 c)9 d)31/3

Asked In TCS dhritiman (9 years ago)
Unsolved Read Solution (3)
Is this Puzzle helpful?   (7)   (7) Submit Your Solution Algebra

(#M40154909) TCS QUESTION Apti Keep an EYE Keep an eye puzzle Keep an eye puzzle


Jake is faster than Paul. Jake and Paul each walk 24 km The sum of their speeds is 7 km /h and the sum of times taken by them is 14 hours Then. Jakes speed is equal to:

Asked In TCS dhritiman (9 years ago)
Unsolved Read Solution (4)
Is this Puzzle helpful?   (9)   (2) Submit Your Solution Time Distance and Speed

(#M40154413) AMCAT QUESTION Data strctures Keep an EYE Keep an eye puzzle Keep an eye puzzle

Tricha needs to store a list of binary data Which of the following data types should she use?
1)Integer
2)Float
3)Character
4)Boolean

Asked In AMCAT dhritiman (9 years ago)
Unsolved Read Solution (16)
Is this Puzzle helpful?   (15)   (9) Submit Your Solution

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

Worm is made up of two programs. which are__________ and ____________
1)grappling hook and main program
2) main program and secondary program
3)grappling hook and secondary program

Asked In AMCAT dhritiman (9 years ago)
Unsolved Read Solution (4)
Is this Puzzle helpful?   (13)   (9) Submit Your Solution Technical

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

Which of the following items may or may not have its method implementations?
1)Interface
2)Abstract class
3)Generic Class
4)Anoymous class

Asked In AMCAT dhritiman (9 years ago)
Unsolved Read Solution (2)
Is this Puzzle helpful?   (5)   (1) Submit Your Solution
Keep an EYE (0)Interview Experience (261)
Solved Question (6040) UnSolved Question (153944)
Pages: 35FirstPrev6789101112131415NextLast
  • Login
  • Register

Resend

Sponsored Links

Advertisements

Challenger of the Day

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

Maths Quotes

"The gaming of numbers is called maths.So participate in this wonderful game and explore in it,learn in it and enjoy in it.Then only you can pass in this wonderful game."

Kumar Purnendu

mathematic is the door and key to the science

someone

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