Upload Button Icon Add office photos

Filter interviews by

Perfect Interview Questions, Process, and Tips

Updated 26 Feb 2023

Top Perfect Interview Questions and Answers

View all 12 questions

Perfect Interview Experiences

Popular Designations

2 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jan 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Require good basics knowledge Vibration analysis basics
  • Q2. Design and tools knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Good for initial growth as a fresher mechanical engineer. Job is hectic but learning is valuable

Field Service Engineer Interview Questions asked at other Companies

Q1. 1) what is the check points of high engine oil consumption?
View answer (7)

I applied via Referral and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(3 Questions)

  • Q1. Database connectivity and php, javascript relationship
  • Q2. Detailed view of my done projects mentioned in my resume and scope of the work done in the project
  • Q3. Php array and its definition and its functionality
  • Ans. 

    Php array is a data structure that stores multiple values under a single variable name.

    • Arrays can hold values of different data types

    • Values in an array are accessed using their index number

    • Arrays can be created using the array() function or shorthand []

    • Arrays have various built-in functions for manipulation

  • Answered by AI
Round 3 - Technical 

(12 Questions)

  • Q1. What Is PHP and how it is helpful in website development?
  • Ans. 

    PHP is a server-side scripting language used for web development.

    • PHP stands for Hypertext Preprocessor.

    • It is an open-source language and can be embedded in HTML.

    • PHP is used for creating dynamic web pages and web applications.

    • It can interact with databases and handle forms and cookies.

    • Popular websites like Facebook, Wikipedia, and WordPress are built using PHP.

  • Answered by AI
  • Q2. Tell me about HTML and how PHP related to HTML?
  • Ans. 

    HTML is a markup language used for creating web pages, while PHP is a server-side scripting language used for dynamic web development.

    • HTML stands for HyperText Markup Language and is used to create the structure of web pages.

    • PHP stands for Hypertext Preprocessor and is used for server-side scripting to generate dynamic content on web pages.

    • HTML is static, while PHP allows for dynamic content generation based on user in...

  • Answered by AI
  • Q3. What is Javascript and how it is helpful in Core PHP to develop your website?
  • Ans. 

    Javascript is a scripting language used for web development. It can be used with Core PHP to add interactivity to websites.

    • Javascript is a client-side scripting language that runs in the browser

    • It can be used to add interactivity to websites, such as form validation and dynamic content

    • Core PHP is a server-side scripting language used to generate HTML pages

    • Javascript can be used with Core PHP to create dynamic web pages

    • ...

  • Answered by AI
  • Q4. What is MySQL Database Connectivity to PHP?
  • Ans. 

    MySQL Database Connectivity to PHP is a way to connect PHP scripts to MySQL databases.

    • MySQLi and PDO are two PHP extensions used for database connectivity.

    • MySQLi is an object-oriented extension while PDO is a data access abstraction layer.

    • Both extensions provide methods to connect to MySQL databases, execute queries, and fetch results.

    • Example: $conn = new mysqli($servername, $username, $password, $dbname);

    • Example: $con...

  • Answered by AI
  • Q5. How do you create a simple form in PHP using HTML and display in Web Browser?
  • Ans. 

    To create a simple form in PHP using HTML and display in a web browser, you need to write HTML code for the form and embed PHP code to handle form submission.

    • Create an HTML form with input fields for user input

    • Use PHP code to process form data and display results

    • Save the file with a .php extension to enable PHP code execution

  • Answered by AI
  • Q6. What are PHP Variables and how many types of Variables in PHP?
  • Ans. 

    PHP variables are containers for storing data values. There are 4 types of variables in PHP.

    • PHP variables start with a $ sign followed by the variable name

    • PHP has 4 types of variables: string, integer, float, and boolean

    • Variables can be assigned values using the assignment operator (=)

    • Variables can be used in expressions and can be concatenated with strings

    • Example: $name = 'John'; $age = 25; $salary = 2500.50; $isEmplo

  • Answered by AI
  • Q7. What is OOPS concept in PHP and how it is effective in your coding?
  • Ans. 

    OOPS in PHP is a programming paradigm that uses objects to represent real-world entities and their interactions.

    • OOPS stands for Object-Oriented Programming System

    • It allows for encapsulation, inheritance, and polymorphism

    • Classes and objects are used to represent real-world entities and their interactions

    • Example: A class 'Car' can have properties like 'model', 'color', and 'price', and methods like 'start', 'stop', and '...

  • Answered by AI
  • Q8. What is Constructor and Destructor and what is Class and How it is related with Object?
  • Ans. 

    Constructor and Destructor are special methods in a class that are used to create and destroy objects respectively.

    • Constructor is a method that is called when an object of a class is created.

    • Destructor is a method that is called when an object is destroyed.

    • Class is a blueprint or template for creating objects.

    • Object is an instance of a class.

    • Constructor and Destructor are related to Class and Object as they are used to

  • Answered by AI
  • Q9. What is Call by Value and Call by Reference and how it works in your coding?
  • Ans. 

    Call by Value passes a copy of the value, while Call by Reference passes a reference to the value.

    • Call by Value passes a copy of the value to the function, so any changes made to the value inside the function do not affect the original value outside the function.

    • Call by Reference passes a reference to the value to the function, so any changes made to the value inside the function affect the original value outside the f...

  • Answered by AI
  • Q10. What is difference between get and post and how you used get and post in your work?
  • Q11. What is array and how many types of data types in PHP?
  • Ans. 

    An array is a data structure that stores multiple values in a single variable. PHP has several data types including string, integer, float, boolean, and more.

    • PHP arrays can hold values of different data types.

    • There are indexed arrays, associative arrays, and multidimensional arrays in PHP.

    • Indexed arrays use numeric keys to access values.

    • Associative arrays use named keys to access values.

    • Multidimensional arrays are arra

  • Answered by AI
  • Q12. What is trigger and it is useful in PHP?
  • Ans. 

    A trigger is a piece of code that automatically executes when an event occurs in a database.

    • Triggers are useful for enforcing business rules and data integrity.

    • They can be used to audit changes to data in a database.

    • In PHP, triggers can be created using the mysqli extension or PDO.

    • Examples of trigger events include INSERT, UPDATE, and DELETE operations on a table.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Perfect Software Engineer interview:
  • W3myscool. Com
Interview preparation tips for other job seekers - Always focus on basics and be prepared for technical aspects of coding and remember be confident😎

Skills evaluated in this interview

Top Perfect Software Engineer Interview Questions and Answers

Q1. What is array and how many types of data types in PHP?
View answer (2)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (205)

Interview questions from similar companies

I appeared for an interview before Sep 2016.

Interview Questionnaire 

1 Question

  • Q1. It was an online technical test. Questions were related to ME outlook, mobile device management , Networking and many more

Interview Preparation Tips

Round: Grammar Round
Experience: It was a written English grammar test to analyse how grammatically sound you are.
Tips: Just revise your basic English grammar like prepositions verbs nd essay/paragraph writing

Round: COMMUNICATION SKILLS Round
Experience: In this round they ask you to speak something on the given topic or sometimes group discussion . Basically they test your vocabulary, your thought process, pronunciation, accent and above all confidence.
Tips: Be confident in whatever you speak. Remember if you get nervous you will need with your words .

Round: Technical Interview
Experience: This was an online test and it had 50 questions all objective types.
Tips: Be technically sound. You cannot Google them as these search engines are blocked

College Name: Babu Banarasi Das National Institute Of Technology And Management (BBDNITM)

I applied via Recruitment Consultant and was interviewed before Sep 2018. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1.  overloading ,inheritance concepts,structures,pointers

Interview Preparation Tips

Interview preparation tips for other job seekers - have good understanding of basics and have expertise on any specific area.

Interview Questionnaire 

2 Questions

  • Q1. Basic Programming Questions, Data structures, SQL queries
  • Q2. This was the most simple one, they simply asked introduce yourself and fine with night shifts.

Interview Preparation Tips

General Tips: I joined HCL as a fresher and got Intervie

Interview Questionnaire 

1 Question

  • Q1. What I know and what I don't know

Interview Preparation Tips

Round: Test
Experience: Aptitude, reasoning, logical, etc. 2 hours

Interview Questionnaire 

2 Questions

  • Q1. C and C++ - technically related stuffs
  • Q2. Communicate and fluency

Analyst Interview Questions & Answers

HCLTech user image Raj Hrithik

posted on 2 Sep 2017

I appeared for an interview in Jul 2017.

Interview Questionnaire 

1 Question

  • Q1. Experience summary and the roles

Interview Preparation Tips

Round: Test
Experience: I was allowed to write a test for 2hrs in that each headings seems to be different and also there is a section heading marks
Duration: 2 hours
Total Questions: 70

Round: Technical Interview
Experience: After finishing i was advised to attend 2nd round in that they ask about the detailed experience of my previous company and finally technical terms question also flows

Skills: Logical And Structured Thinking, Communication And Confidence, Attitude, Psychometric Test, Project Management

Interview Questionnaire 

7 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a software engineer with experience in developing and maintaining software applications.

    • I have a strong background in programming languages such as Java, C++, and Python.

    • I have worked on various projects, including developing web applications and implementing software solutions.

    • I am skilled in problem-solving and debugging, ensuring efficient and effective software development.

    • I have experience in collaborating wi...

  • Answered by AI
  • Q2. What are your objectives
  • Q3. What are you going to do for companies betterment
  • Q4. What is your final year project all about
  • Q5. What you learned from your summer intenship
  • Ans. 

    I learned valuable teamwork and problem-solving skills during my summer internship.

    • Developed strong collaboration skills by working with a team of software engineers to complete projects

    • Gained experience in troubleshooting and debugging software issues

    • Learned to effectively communicate and present technical concepts to both technical and non-technical stakeholders

    • Improved problem-solving abilities by identifying and re...

  • Answered by AI
  • Q6. What you learned from your winter intenship
  • Q7. Do you have any question

Interview Preparation Tips

Round: Test
Experience: Verbal section was a easy section,It comprised of Comprehension,Spotting errors,Synonyms,Antonyms,Relationship between two given words,Rearranging the sentences.Logical reasoning the second section in which problems on data interpretation,blood relations,syllogism,where there with little bit difficulty.third section was of quant we usual  think it's easy but this was a tough one! with standard problems,percentage,profit loss,speed distance time.....etc.
Tips: While,attempting verbal part always give most appropriate answers.Options may be more confusing and closer one but you have to select the correct one!!!!! Always check for sectional cutoff and if its there then try to attempt each section properly if not then concentrate on section in which you are strong....refer to sites such as IndiaBIX, M4maths, freshersworld for aptitude questions
Duration: 60 minutes
Total Questions: 75

Round: Group Discussion
Experience: GD was not a round included for Capgemini placement test,Pearson versant english test was there once you clear your apti but due to technical faults GD was the round taken.There was a group of 10 people and we were given topic and 5 mins for preparation then GD was started.I was the second one to speak on the topic,I was in the favour of MNC because I really feel that for freshers Indian IT company is not very great start.Rather if one starts with MNC then it gets a brand name associated with them and also global exposure for one.And also Indian IT sectors are largely collaborating with the MNCs so for fresher MNC is a good start than Indian IT company.
Tips: I will suggest you to understand the topic well,jot down the points you want to say and then always initiate for the GD do not argue,just humbly disagree to the topic,do not get personal in it...as soon as you start the supervisor judges you so do not hesitate and just put your points confidently only your English is judged by this...
Duration: 20 minutes

Round: HR Interview
Experience: As I entered they  checked me from top to bottom means how formally you are dressed and shoes,then asked for my resume and started to see and verify each and everything written in it is true and genuine.And both TR and HR interview was taken simultaneously.My interview was the quicker one they just started with name then all above mentioned questions....
Tips: Go properly dressed with shoes polished,do not panic or try to recollect what you  have prepared just be genuine.Write resume neatly and study it well they scan it and ask most questions from it...

Round: Pearson versant English test
Experience: This test consist of two sections firstly the telephonic round in which we were provided with one toll free number and  unique test-id then it was for about 20 mins we talked on telephone.The questions asked were on basic english,like  repeat the sentences,correct the jumbled sentences,complete the sentences,answer in yes or no.Second test was a computer based test for 60 mins in which complete the sentences synonyms,copying the passage,email writing ,listen and write,were few of the questions directed.this test is taken mainly to check your english and writing skills.
Tips: Be clear and loud enough in telephonic test,and search placement papers of every company you sit for.

General Tips: "Try try you will succeed" always believe on this saying and keep giving tests if you failed in one!!
College Name: TERNA ENGINEERING COLLEGE
Motivation: Capgemini is one of good MNC its under top 10 best IT companies also its symbol spade which represented free enivronment to work and moto "People matter,results count".motivated me to join it!

Interview Questionnaire 

1 Question

  • Q1. Telephonic/Computer assessment for English proficiency

Interview Preparation Tips

Round: Test
Experience: Aptitude was not too easy or too tough like that of CAT. But if one has prepared for CAT exam even a bit, then he can perform pretty well.
Tips: Practice previous year CAT papers. Question sections and format asked in Capgemini test will be similar to that of CAT exam. Improve reading skills by reading anything that interests you.
Duration: 180 minutes
Total Questions: 120

Round: Other Interview
Experience: You will have to talk with a programmed voice using voice call. You need to follow the instructions of the programmed voice. They will record whatever you speak and judge your speaking skills.
Tips: Try to speak in English with at least few peers.

Round: HR Interview
Experience: You must be well thorough with your CV. Common questions like:*Tell me about yourself?*What are your strength and weakness?*Why consultancy and analyst profile?*What do you know about analyst profile?*What does Capgemini does? Tell us more about Capgemini?
etc can be expected for sure.The HR is not interested in your departmental knowledge, rather he is more interested in the way you are explaining something tin a layman manner. He/She cares how you analyse situations. Some random sitaution may be posed and HR may ask you to analyse the situation.
Tips: #Confidence in yourself.#Well verse with CV.#Able to explain even to layman.#Know basic information about data analytics.

General Tips: Aptitude+Communication fluency+Confidence = Job in  Capgemini
Skill Tips: Practice.
Skills: Aptitude, Communication, Confidence
College Name: I.I.T Guwahati
Motivation: Multi national and reputed.

Perfect Interview FAQs

How many rounds are there in Perfect interview?
Perfect interview process usually has 2-3 rounds. The most common rounds in the Perfect interview process are Resume Shortlist, Technical and One-on-one Round.
How to prepare for Perfect interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Perfect. The most common topics and skills that interviewers at Perfect expect are Electrical Engineering, Electrical Maintenance, Fire Safety, Energy Audit and Safety.
What are the top questions asked in Perfect interview?

Some of the top questions asked at the Perfect interview -

  1. What is array and how many types of data types in P...read more
  2. How do you create a simple form in PHP using HTML and display in Web Brows...read more
  3. What Is PHP and how it is helpful in website developme...read more

Tell us how to improve this page.

Perfect Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all

Perfect Reviews and Ratings

based on 9 reviews

2.6/5

Rating in categories

3.0

Skill development

2.6

Work-life balance

1.7

Salary

2.1

Job security

1.7

Company culture

2.1

Promotions

3.0

Work satisfaction

Explore 9 Reviews and Ratings
Accountant
4 salaries
unlock blur

₹1.5 L/yr - ₹4.3 L/yr

Manager
3 salaries
unlock blur

₹2.7 L/yr - ₹24 L/yr

Computer Operator
3 salaries
unlock blur

₹2 L/yr - ₹3.1 L/yr

Telecalling Executive
3 salaries
unlock blur

₹1.5 L/yr - ₹1.5 L/yr

Explore more salaries
Compare Perfect with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview