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:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
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 (181)

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: In quantitative aptitude i dont remember the questing exactly but alsomost all questings are similer to the questions in RS Agarwaal.. In reasoning and analytical section they will ask puzzles and if u read shakuntala devi and jimmers puzzle book it is more than sufficient.. In verbal section they have given around 2 passages and 5 questions for each passage dont waste more time in this section because it is time consuming.. they have given some fill in the blanks questions where we have to search for synonyms and antonyms No technical section was there
Total Questions: 75

Round: Technical Interview
Experience: Basically i am from Mechanical back ground they dint asked any questions related to software.... They asked questions like how do you update your self regarding your technical knowledge... have you thought of any innovative ideas recent past..

Round: HR Interview
Experience: In HR they asked 2 situation reaction tests. 1)she asked my hobbies and replied playing cricket... she posed a question to me that if i was appointed as cricket team captain for M-Tech mech team how i select my team.... i answered purely by performance no partiality like that.. but she asked to think more then she answered for the questions as... I alone cannot select the team because in M-Tech there may be more that 500 students so i have to take help from some of my friends and this shows attitude towards team work.... 2) She asked one more question like if i am a boss and there are 5 peoples working under me.. my boss given me one work that has to be completed in with in a month... now it is the last day of month and still 25% of work is remaining how i handle that situation... I answered that I will answer to the boss that from next time i will finish 1 months work in 20 days itself so that we will not be facing this kind of problems next time.. then she told ok....

General Tips: Infosys recruitment wont concentrate too much on technical side... they concentrate on logical and analytical thinking and situation reactions etc... so go through puzzles from shankuntala devi and jimmers... and some analytical and logical sections from RS agarwaal
Dont concentrate on technical questions because they wont ask any technical questions... you must prepare well for the written test and Interview will depend on your logical and analytical thinking and situation reactions.. all the best.. hope i will see you in Infosys next year....
College Name: NIT WARANGAL

Interview Questions & Answers

TCS user image Anonymous

posted on 7 Jan 2015

Interview Questionnaire 

3 Questions

  • Q1. Where did you do the internship ?
  • Ans. 

    I did my internship at XYZ Corporation.

    • Interned at XYZ Corporation

    • Worked in the marketing department

    • Assisted in creating social media campaigns

    • Conducted market research

    • Attended meetings with clients

  • Answered by AI
  • Q2. What did you learn from your mistakes ?
  • Ans. 

    I learned to take responsibility for my actions and to use my mistakes as opportunities for growth.

    • I learned to admit my mistakes and apologize when necessary

    • I learned to reflect on my mistakes and identify areas for improvement

    • I learned to seek feedback from others and use it to make positive changes

    • I learned to not be afraid of failure and to view it as a learning experience

    • For example, when I made a mistake at work ...

  • Answered by AI
  • Q3. Why should we recruit you ?
  • Ans. 

    I have the skills, experience, and passion to contribute to the success of your company.

    • I have a proven track record of achieving targets and exceeding expectations.

    • I possess strong communication and interpersonal skills, which enable me to work effectively with colleagues and clients.

    • I am a quick learner and adaptable to new environments and technologies.

    • I am passionate about the industry and eager to contribute to th...

  • Answered by AI

Interview Preparation Tips

Round: knowledge assessment
Experience: The first round was an online assessment of your knowledge in any of the three languages (C , C++, Java ).
Tips: Although they specify the syllabus but don't just rely on that.

Round: Interview
Experience: Second round was a HR + Technical interview.
The HR was combined with Technical interview in which they asked about the basic HR questions. The technical interview included a few basic questions on C or C++ programming and a few questions relating to the technicalities of the projects we did in our internships and Hobbies club..
Tips: Be well prepared for HR questions. Listen to the PPT carefully .

Round: IQ test
Experience: The third round was a simple IQ test. Be well versed with the language of your choice.

General Tips: The online test can be tackled if you study the first year alloted assigned book for the language you prefer. Having chosen C++ I was asked many questions related to templates and data structures.
College Name: IIT Roorkee

Interview Questions & Answers

Cognizant user image Anonymous

posted on 20 Jan 2015

Interview Questionnaire 

1 Question

  • Q1. Why should we select you?
  • Ans. 

    I have the necessary skills, experience, and passion to excel in this role.

    • I have relevant experience in the field

    • I possess the required skills and qualifications

    • I am a quick learner and adaptable to new situations

    • I am passionate about the industry and eager to contribute

    • I am a team player and work well with others

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Very basic(class 7 level) english, quant and DI from CAT preparation will do. I was asked to estimate the number of newspapers I would buy if I am a supplier for the campus. Then slightly complicated the problem four or five times.
Tips: Try to answer as many questions as possible--the test is the one major criterion for selection.
Total Questions: 65

Round: Guesstimate Interview
Experience: One-on-one interview.Basic guess estimation and details about your projects. Try to show you have some knowledge in mathematics.

Round: HR Interview
Experience: HR interview--A panel of 4 or 5 people(who have taken the individual interviews in round I).
Tips: Be confident and try not to tell something which you can’t defend.

General Tips: As is the case for most companies, CAT preparation will definitely help. I don’t think much focus was was given on the essay but the other sections of the test are really important.
Skill Tips: A decent CGPA(mine was exactly 8) will help. HR interview--A panel of 4 or 5 people(who have taken the individual interviews in round I). Should be able to speak about your own projects and internships.
College Name: IIT KHARAGPUR

Project Engineer Interview Questions & Answers

Wipro user image PRIYANKA CHOUDHURY

posted on 12 Jan 2015

Interview Preparation Tips

Round: Test
Experience: There were two parts : Aptitude and English.
The Aptitude part consisted of questions related to Maths which were quite easy.
The English section consisted of reading comprehensions.
Tips: Read the questions carefully because some of them might be lengthy.
Apply quick formulas so that you save time on each question.
Duration: 90 minutes

Round: Group Activity
Experience: We were asked to write an essay on a topic.
My topic was "Global Warming".
This was not an elimination round.
Tips: Writing essay requires a good fair of English and also thinking capability.
Divide your essay into paragraphs and don't forget to assign a title to your essay.

Round: Interview
Experience: The technical round was quite simple for me as the interviewer asked me few simple questions related to basic programming. I am not well versed with programming but then I managed because I did study the previous day.
I was not nervous since I knew I would be able to crack the interview in one go. After waiting for hours and hours, my turn came and finally I went up to the interviewer.
Tips: Be confident and communicate well.
The interviewers are more interested in how you communicate to them.
Learn the basics and revise a little before you go to the interview .

Round: Interview
Experience: This was the most simple and funniest round for me as the interviewer asked me only a single question .
The question goes like " Which place are you from?"
Tips: When you get selected for the HR round, just relax.
This is not an elimination round .
The HR's won't ask questions related to your subjects or any academics.
They would only ask some basic information regarding your life experiences and or will you be able to work in a corporate environment.

General Tips: 1. You need to be confident.
2. Drink lots of water.
3. Dont discuss anything with your neighbours during the interview process.
4. Dont overthink.
5. Be positive.
Skill Tips: You should well versed with english and try to communicate well with the interviewer.
Skills: COMMUNCATION SKILLS, PROGRAMMING SKILLS, TECHNICAL SKILLS, WRITING SKILLS
College Name: SRM UNIVERSITY
Motivation: A highly-motivated, productive and customer-focused team player with strong communication, interpersonal,organizational, time management, analytical and problem solving skills. Reliable and dedicated with the ability to grasp and apply new procedures quickly; organize and prioritize tasks to meet deadlines and adapt readily to new challenges.

Interview Questions & Answers

Deloitte user image Anonymous

posted on 20 Jan 2015

Interview Questionnaire 

2 Questions

  • Q1. Why IT consultancy?
  • Q2. What would be the advantages of chemical background?

Interview Preparation Tips

Round: Test
Experience: CAT type questions were asked in English and DI.
Tips: Accuracy will matter and preparations for CAT will help.
Duration: 30 minutes
Total Questions: 40

Round: Technical Interview
Experience: Questions were based on Data Abstraction. Internship was the main topic around which the rest of the interview went on.
Tips: Coding skills should be good.

Round: HR Interview
Tips: Work on communication skills.

College Name: IIT KANPUR

Interview Questions & Answers

HCLTech user image Anonymous

posted on 11 Apr 2015

Interview Questionnaire 

6 Questions

  • Q1. Which is your favorite subject
  • Q2. Difference between C and C++
  • Q3. What are the advantages of C++ over C
  • Q4. What is polymorphism and how do we achieve it using C++ programming
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. In C++, it is achieved through function overloading and virtual functions.

    • Polymorphism allows objects of different classes to be treated as objects of a common base class.

    • Function overloading enables multiple functions with the same name but different parameters.

    • Virtual functions allow derived classes to override base class functions.

  • Answered by AI
  • Q5. What will you do if you have a clash with your colleague
  • Q6. If you are given extra work in the office and your girl friend is waiting for you outside, then what will you do

Interview Preparation Tips

Round: Test
Experience: One written test. It contains four sections. Each section contains 25 questions and is of 30 minutes duration.
Tips: Prepare well for technical and aptitude.
Duration: 120 minutes
Total Questions: 100

Round: Technical Interview
Experience: Questions were asked based on my favorite subject.
Tips: Choose your favorite subject as the one you know well.

Round: HR Interview
Experience: He gave me situations to see how I would handle them.
Tips: You must justify yourself with your answers.

General Tips: Brush up all the basics of your core subjects.
Skills: Good technical skills., Good communication skills.
College Name: NA

Skills evaluated in this interview

Interview Questionnaire 

7 Questions

  • Q1. Tell me about yourself
  • 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
  • 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!

SDE-2 Interview Questions & Answers

Amazon user image Anonymous

posted on 2 Apr 2015

Interview Questionnaire 

10 Questions

  • Q1. Find sum of all numbers that are formed from root to leaf path (code) expected time complexity O(n)
  • Ans. 

    Find sum of all numbers formed from root to leaf path in a binary tree

    • Traverse the binary tree using DFS

    • At each leaf node, add the number formed from root to leaf path to a sum variable

    • Return the sum variable

    • Time complexity: O(n)

    • Example: For a binary tree with root value 1, left child 2 and right child 3, the sum would be 12 + 13 = 25

  • Answered by AI
  • Q2. Given a string you need to print all possible strings that can be made by placing spaces (zero or one) in between them. For example : ABC -> A BC, AB C, ABC, A B C
  • Ans. 

    Given a string, print all possible strings that can be made by placing spaces (zero or one) in between them.

    • Use recursion to generate all possible combinations of spaces

    • For each recursive call, either add a space or don't add a space between the current character and the next character

    • Base case is when there are no more characters left to add spaces between

    • Time complexity is O(2^n) where n is the length of the string

  • Answered by AI
  • Q3. Preorder traversal without using recursion
  • Ans. 

    Preorder traversal without recursion

    • Use a stack to keep track of nodes

    • Push right child first and then left child onto stack

    • Pop top of stack and print value

    • Repeat until stack is empty

  • Answered by AI
  • Q4. There is a 12 km road and a contractor who is in-charge of repairing it. Contractor updates you about the work which is done in patches. Like “Road between 3.2 km to 7.9 km repaired ”, “Road between 1.21 k...
  • Ans. 

    Find longest continuous patch on a 12 km road with updates in patches

    • Maintain a variable to keep track of current patch length

    • Update the variable whenever a new patch is added

    • Maintain a variable to keep track of longest patch so far

    • Compare current patch length with longest patch length and update if necessary

    • Use a sorted data structure like a binary search tree to store the patches for efficient search

    • Time complexity: ...

  • Answered by AI
  • Q5. Several Questions were asked from my project
  • Q6. Find median of an unsorted array. (code
  • Ans. 

    Find median of an unsorted array.

    • Sort the array and find the middle element

    • Use quickselect algorithm to find the median in O(n) time

    • If the array is small, use brute force to find the median

  • Answered by AI
  • Q7. General discussion on heaps
  • Q8. A stream of characters is coming, at any moment you have to tell ‘k’ elements closest to a given number (code)
  • Ans. 

    Find 'k' elements closest to a given number from a stream of characters.

    • Use a priority queue to keep track of closest elements.

    • Update the queue as new characters come in.

    • Return the 'k' closest elements from the queue.

  • Answered by AI
  • Q9. Design data structure that supports insert(), remove(), find-max(), delete-max() operations. All operations should run in O(1) time. Lots of discussion was there, discussed many approaches.
  • Ans. 

    Design a data structure with O(1) insert, remove, find-max, and delete-max operations.

    • Use a doubly linked list to maintain the elements in sorted order.

    • Use a hash table to store the pointers to the nodes in the linked list.

    • Maintain a pointer to the maximum element in the hash table.

    • Update the pointers in the hash table when inserting or removing elements.

    • Update the maximum pointer when deleting or inserting the maximum

  • Answered by AI
  • Q10. Check whether given link list represents palindrome
  • Ans. 

    Check if a given linked list is a palindrome.

    • Traverse the linked list and store the values in an array.

    • Compare the first and last elements of the array, then move towards the center.

    • If all elements match, the linked list is a palindrome.

    • Alternatively, use two pointers to find the middle of the linked list and reverse the second half.

    • Compare the first half with the reversed second half to check for a palindrome.

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Recently I attended Amazon Bangalore interview for SDE 2 position. All f2f and no phone/written screening as I had attended one before and cleared those. Total 4 rounds wer der. The first techh round dey asked mi questions listed above.
Tips: NA

Round: Technical Interview
Experience: ROUND 2 dey asked mi above questions
Tips: NA

Round: Technical Interview
Experience: Round 3 Above questions wer asked.

Round: Technical Interview
Experience: This was the last round. thy asked mi above questions

College Name: NA

Skills evaluated in this interview

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.4k 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.8
 • 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.7/5

Rating in categories

3.0

Skill development

2.7

Work-life balance

1.8

Salary

2.3

Job security

1.8

Company culture

2.3

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.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview