Upload Button Icon Add office photos

Filter interviews by

PerfectVIPs Interview Questions, Process, and Tips

Updated 23 May 2022

Top PerfectVIPs Interview Questions and Answers

PerfectVIPs Interview Experiences

Popular Designations

5 interviews found

Round 1 - Aptitude Test 

General Aptitude and Digital Electronics

Round 2 - Technical 

(1 Question)

  • Q1. Mostly from Digital Electronics.

Interview Preparation Tips

Interview preparation tips for other job seekers - Having knowledge of Basics will surely make u crack it.

Verification Engineer Interview Questions asked at other Companies

Q1. How do you ensure no data loss happens in HW to SW communication?
View answer (2)

I applied via Approached by company and was interviewed in Dec 2021. 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 - One-on-one 

(4 Questions)

  • Q1. Difference between compile time and run time polymorphism
  • Ans. 

    Compile time polymorphism is achieved through function overloading and templates, while run time polymorphism is achieved through inheritance and virtual functions.

    • Compile time polymorphism is resolved at compile time, while run time polymorphism is resolved at run time.

    • Compile time polymorphism is also known as static polymorphism, while run time polymorphism is also known as dynamic polymorphism.

    • Compile time polymorp...

  • Answered by AI
  • Q2. Difference between trigger and stored procedure
  • Ans. 

    Triggers are automatically executed in response to certain events, while stored procedures are pre-written code that can be executed on demand.

    • Triggers are associated with a specific table and are executed when a certain event occurs, such as an insert or update.

    • Stored procedures are pre-written code that can be executed on demand, often used for complex database operations.

    • Triggers can be used to enforce business rule...

  • Answered by AI
  • Q3. Difference between HTML versions? Why and what new features are added in new versions?
  • Ans. 

    HTML versions differ in features and improvements, with each new version introducing new elements and attributes.

    • HTML4 introduced the concept of framesets and the <iframe> element.

    • HTML5 added new semantic elements like <header>, <footer>, <nav>, <article>, <section>, <aside>, <figure>, <figcaption>.

    • HTML5 introduced new form input types like email, url, tel, date, ra...

  • Answered by AI
  • Q4. What is anonymous class in java and its purpose?
  • Ans. 

    Anonymous class is a class without a name, used for implementing interfaces or extending classes.

    • Used for one-time use of a class

    • Can be used to implement interfaces or extend classes

    • Can be used to override methods of a class

    • Syntax: new () { }

Answered by AI

Interview Preparation Tips

Topics to prepare for PerfectVIPs Software Engineer interview:
  • Core Java
  • SQL
  • PLSQL
  • Microservices
  • front-end
  • Advanced Java
Interview preparation tips for other job seekers - Technical round interview: Questions asked based on Java concepts, SQL, PL/SQL and microservices knowledge, front-end technologies.

Skills evaluated in this interview

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 (199)

I applied via Recruitment Consultant and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Big endian little endian, reverse string, project

Interview Preparation Tips

Interview preparation tips for other job seekers - C basics with depth understanding

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 (199)

I applied via LinkedIn and was interviewed before May 2021. 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 - One-on-one 

(1 Question)

  • Q1. Focus on SV and UVM, and on the resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, never look down and focus on basics.

Verification Engineer Interview Questions asked at other Companies

Q1. How do you ensure no data loss happens in HW to SW communication?
View answer (2)

PerfectVIPs interview questions for popular designations

 Software Engineer

 (2)

 Verification Engineer

 (2)

Interview Questions & Answers

user image Anonymous

posted on 26 Dec 2019

I applied via Walk-in and was interviewed before Dec 2018. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. My interview started with my introduction and whatever I have mentioned in my resume and then have started from basic to advanced questions in Digital elections, Verilog HDL, VHDL, C and Oops in C++
  • Q2.  NPTEL lectures are sufficient.

Interview Preparation Tips

Interview preparation tips for other job seekers - Recruitment process:
1. Written test: Mcqs on Digital elections, Verilog, C, and aptitude (Pen and paper)
2. Three Technical Interviews (Face 2 Face)
3. HR round

Suggestions for the Interview:

1. Programming: C, C++(main focus Oops concepts).
2. Dital Electronic (Both part combination and Sequential circuits), FSM, Counters, (NAND, NOR and MUX ) Based based conversation and digital circuits design.
3. HDL Programming : Verilog HDL or VHDL
4. Static timing analysis and Physical design (Basic Questions)
5. CMOS, BJT, and Diode based Circuits design and working
6. Some tricky puzzle based on digital electronics

Interview questions from similar companies

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

I applied via Company Website and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Self introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - say individual ideas,plans, story's.say different opinions,speek confidentially, correctly answer Yes or no questions, correctly say interested and confidential job,

I applied via Naukri.com and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Duration of the project and team environment

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with latest technologies.

PerfectVIPs Interview FAQs

How many rounds are there in PerfectVIPs interview?
PerfectVIPs interview process usually has 2 rounds. The most common rounds in the PerfectVIPs interview process are Resume Shortlist, One-on-one Round and Aptitude Test.
How to prepare for PerfectVIPs 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 PerfectVIPs. The most common topics and skills that interviewers at PerfectVIPs expect are UVM, Design Verification, Ethernet, PCIE and Verilog.
What are the top questions asked in PerfectVIPs interview?

Some of the top questions asked at the PerfectVIPs interview -

  1. Difference between HTML versions? Why and what new features are added in new ve...read more
  2. Difference between compile time and run time polymorph...read more
  3. what is anonymous class in java and its purpo...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
ITC Interview Questions
3.9
 • 546 Interviews
Bajaj Auto Interview Questions
3.9
 • 267 Interviews
Titan Company Interview Questions
4.3
 • 149 Interviews
VIP Industries Interview Questions
3.8
 • 41 Interviews
View all

PerfectVIPs Reviews and Ratings

based on 25 reviews

3.1/5

Rating in categories

2.9

Skill development

3.4

Work-life balance

3.3

Salary

2.5

Job security

3.2

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 25 Reviews and Ratings
Verification Engineer

Noida,

Bhubaneswar

+4

4-9 Yrs

Not Disclosed

Explore more jobs
Asic Verification Engineer
38 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Verification Engineer
32 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Design Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Asic Design Verification Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Verification Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare PerfectVIPs with

VIP Industries

3.8
Compare

Titan Company

4.3
Compare

TCS

3.7
Compare

Reliance Industries

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