AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Engaged Employer

i

This company page is being actively managed by Synopsys Team. If you also belong to the team, you can get access from here

Synopsys Verified Tick

Compare button icon Compare button icon Compare
3.9

based on 389 Reviews

Play video Play video Video summary
  • About
  • Reviews
    389
  • Salaries
    3k
  • Interviews
    96
  • Jobs
    365
  • Benefits
    46
  • Photos
    13

Filter interviews by

Synopsys Interview Questions and Answers

Updated 4 Jul 2025
Popular Designations

85 Interview questions

A Research Assistant was asked 1w ago
Q. Tell me about your previous work experience.
Ans. 

I have diverse research experience in data analysis, literature review, and laboratory techniques across various projects.

  • Conducted data analysis for a psychology study, utilizing SPSS to interpret results.

  • Assisted in a literature review for a biomedical research project, summarizing key findings.

  • Gained hands-on experience in laboratory techniques, including PCR and gel electrophoresis.

  • Collaborated with a team on ...

View all Research Assistant interview questions
A VLSI Design and Verification Engineer was asked 2w ago
Q. What are the differences between analog and digital signals?
Ans. 

Analog signals are continuous, while digital signals are discrete, representing data in binary form.

  • Analog signals vary continuously and can take any value within a range (e.g., sound waves).

  • Digital signals represent data in binary (0s and 1s), making them more robust against noise (e.g., computer data).

  • Analog signals are used in applications like audio and video transmission, while digital signals are used in com...

View all VLSI Design and Verification Engineer interview questions
An Asic Design Verification Engineer was asked 2mo ago
Q. Explain the FIFO design and provide Verilog code.
Ans. 

FIFO (First In First Out) is a buffer design used in digital circuits for data storage and transfer.

  • A FIFO can be implemented using a circular buffer to efficiently manage memory.

  • Verilog code for a simple FIFO might include a write pointer and a read pointer.

  • Example: A 4-depth FIFO can be defined with an array of 4 registers.

  • Control signals like 'full' and 'empty' are crucial for FIFO operation.

  • Synchronous FIFO us...

View all Asic Design Verification Engineer interview questions
A Verification Intern was asked 2mo ago
Q. What are the advantages of UVM?
Ans. 

UVM (Universal Verification Methodology) enhances verification processes through reusability, scalability, and improved collaboration.

  • Reusability: UVM promotes the creation of reusable verification components, reducing development time. For example, a testbench can be reused across multiple projects.

  • Scalability: UVM supports large-scale verification environments, making it suitable for complex designs. This is cru...

View all Verification Intern interview questions
An Intern was asked 3mo ago
Q. How does Cyber Security play a major role?
Ans. 

Cybersecurity is essential for protecting sensitive data and maintaining trust in digital systems across various sectors.

  • Protects sensitive information: Cybersecurity safeguards personal and financial data from breaches, like the Equifax data breach in 2017.

  • Ensures business continuity: Effective cybersecurity measures prevent downtime caused by cyberattacks, such as ransomware incidents.

  • Builds customer trust: Comp...

View all Intern interview questions
A Technical Engineer was asked 3mo ago
Q. What is a memory leak in C++?
Ans. 

A memory leak in C++ occurs when allocated memory is not properly deallocated, leading to wasted resources.

  • Memory leaks happen when 'new' is used without a corresponding 'delete'. Example: 'int* arr = new int[10]; // forgot to delete arr;'

  • Using smart pointers (like std::unique_ptr) can help manage memory automatically and prevent leaks.

  • Circular references in smart pointers can also lead to memory leaks. Example: '...

View all Technical Engineer interview questions
A Software Engineer was asked 3mo ago
Q. Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use ...
Ans. 

Find two numbers in an array that add up to a specific target sum.

  • Use a hash map to store numbers and their indices for quick lookup.

  • Iterate through the array, calculating the complement for each number.

  • Example: For array [2, 7, 11, 15] and target 9, return indices [0, 1].

  • If no such pair exists, return an empty result.

View all Software Engineer interview questions
Are these interview questions helpful?
A Hardware Engineer was asked 7mo ago
Q. What are flip-flops and latches?
Ans. 

Flip flops and latches are sequential logic circuits used in digital electronics to store and transfer data.

  • Flip flops are clocked circuits that store one bit of data, while latches are level-sensitive circuits that store data as long as the enable signal is active.

  • Flip flops are edge-triggered, meaning they change state on a clock edge, while latches are level-triggered, changing state as long as the enable signa...

View all Hardware Engineer interview questions
🔥 Asked by recruiter 2 times
A Design Engineer was asked 7mo ago
Q. What is the difference between a latch and a flip-flop?
Ans. 

Latches are level-sensitive devices, while flip-flops are edge-sensitive, used for storing binary data in digital circuits.

  • Latches are transparent when enabled, allowing data to pass through.

  • Flip-flops change state only on specific clock edges (rising or falling).

  • Example of a latch: SR latch, which can hold a state based on Set and Reset inputs.

  • Example of a flip-flop: D flip-flop, which captures the input value on...

View all Design Engineer interview questions
A Design Engineer was asked 7mo ago
Q. Write code for a frequency divider.
Ans. 

A frequency divider reduces the frequency of an input signal by a specified factor, often used in digital circuits.

  • A frequency divider can be implemented using flip-flops.

  • For example, a divide-by-2 circuit can be made with a D flip-flop.

  • The output frequency is half of the input frequency.

  • Frequency dividers are commonly used in clock generation.

  • They can be cascaded to achieve higher division factors.

View all Design Engineer interview questions
1 2 3 4 5 6 7

Synopsys Interview Experiences

96 interviews found

Design & Verification Engineer Interview Questions & Answers

user image Anonymous

posted on 2 Oct 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude-10 question,digital moderate -Question,analog moderate -10 question,verilog and system verilog -10 question

Round 2 - One-on-one 

(3 Questions)

  • Q1. Latches and flip flop all characteristics equation and proof of the characteristics equation in flip flop.applications of flip flop
  • Add your answer
  • Q2. OOPS,INHERITANCE,VERILOG,BLOCKING - NON BLOCKING ASSIGNMENT OPERATOR and all the basic operations of verilog .
  • Add your answer
  • Q3. Discussion on work experience.
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bonafide with your fundamentals core of digital circuits and design .
Anonymous

VLSI Design and Verification Engineer Interview Questions & Answers

user image Anonymous

posted on 2 Jul 2025

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

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. What influenced your decision to choose this option?
  • Ans. 

    My decision to pursue VLSI Design and Verification stems from my passion for technology and its impact on modern electronics.

    • Interest in semiconductor technology: I have always been fascinated by how tiny chips power our devices.

    • Problem-solving skills: VLSI design involves complex challenges that require innovative solutions, which I enjoy tackling.

    • Career opportunities: The demand for VLSI engineers is growing, providi...

  • Answered by AI
    Add your answer
  • Q2. What are the differences between analog and digital signals?
  • Ans. 

    Analog signals are continuous, while digital signals are discrete, representing data in binary form.

    • Analog signals vary continuously and can take any value within a range (e.g., sound waves).

    • Digital signals represent data in binary (0s and 1s), making them more robust against noise (e.g., computer data).

    • Analog signals are used in applications like audio and video transmission, while digital signals are used in computer...

  • Answered by AI
    Add your answer
Anonymous

Technical Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Cocubes online aptitude test with some questions on electronics

Round 2 - Technical 

(1 Question)

  • Q1. Given a number write it in words
  • Ans. 

    Convert a number into words

    • Break the number into groups of three digits

    • Convert each group into words using a lookup table

    • Combine the words with appropriate magnitude (thousand, million, billion, etc.)

  • Answered by AI
    Add your answer
Round 3 - Behavioral 

(1 Question)

  • Q1. Views on AI and overall discussion on that
  • Add your answer
Anonymous

Applications Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Oct 2024

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

I applied via Referral and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Focus on Basics of Digital electronics,verilog SV and UVM will be an advantage.Reasoning questions also plays a crucial role.Realizations of gates using and NAND and NOR gate,Realization of gates using mu...
  • Add your answer
  • Q2. Don't forget look your projects mentioned in your resume,They will directky ask you to write code,Ask lot of questions on projects,Communication skills willbe added advantage.
  • Add your answer
  • Q3. Reasonig questions:-9 ball's weight checking,horses question,a pond of flowers on which day they full if half fill in 10 days,3L 5L required water 4L,4 pin OTP generation probability with unique numbers,go...
  • Add your answer
  • Q4. Don't forget take a look on ypur projects whatever you mentioned in your resume everything matters,Basics of digital electronics,sv and UVM,More focus on practising coding,outputs for snippets plays a cruc...
  • Add your answer
  • Q5. One personal advantage for MNC's refferals matters alot,better to ask anyone in linkdin to reffer you.
  • Add your answer
Anonymous

Design Engineer Interview Questions & Answers

user image anmol agarwal

posted on 3 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Write code of frequency divider
  • Ans. 

    A frequency divider reduces the frequency of an input signal by a specified factor, often used in digital circuits.

    • A frequency divider can be implemented using flip-flops.

    • For example, a divide-by-2 circuit can be made with a D flip-flop.

    • The output frequency is half of the input frequency.

    • Frequency dividers are commonly used in clock generation.

    • They can be cascaded to achieve higher division factors.

  • Answered by AI
    Add your answer
  • Q2. Difference between latch & flip flop
  • Ans. 

    Latches are level-sensitive devices, while flip-flops are edge-sensitive, used for storing binary data in digital circuits.

    • Latches are transparent when enabled, allowing data to pass through.

    • Flip-flops change state only on specific clock edges (rising or falling).

    • Example of a latch: SR latch, which can hold a state based on Set and Reset inputs.

    • Example of a flip-flop: D flip-flop, which captures the input value on the ...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 5 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General aptitude questions

Round 2 - Coding Test 

Problem solving, solved 2 out of 3 questions

Round 3 - Group Discussion 

General topics were given in gd

Round 4 - Technical 

(2 Questions)

  • Q1. Programming concepts
  • Add your answer
  • Q2. Projects and coding round questions solved
  • Add your answer
Anonymous

Physical Design Engineer Interview Questions & Answers

user image Anonymous

posted on 21 Sep 2024

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aotitude,core que on all subjects in ece

Round 2 - Technical 

(2 Questions)

  • Q1. INTERNSHIP EXPERIENCE
  • Ans. 

    I completed a 6-month internship at XYZ Company where I gained hands-on experience in physical design tools and methodologies.

    • Worked on floorplanning, placement, and routing of digital designs

    • Utilized tools such as Cadence Innovus and Synopsys ICC

    • Collaborated with cross-functional teams to optimize design performance

  • Answered by AI
    Add your answer
  • Q2. ON DSD,VLSI,ANALOG ELECTRONICS
  • Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. APTITUDE,MATH,VLSI,DSD
  • Add your answer
  • Q2. VLSI (HARD QUESTION BASED ON INDUSTRY LEVEL LIKE ON CIRCUIT HE GIVES ONE SCENARIO U HAVE TO ANSWER IT)
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - LEARN BASICS WELL
Anonymous

Senior Research and Development Engineer 2 Interview Questions & Answers

user image Anonymous

posted on 17 Aug 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Asked about projects and previous company's work
  • Add your answer
  • Q2. Tree traversal with vertical order
  • Ans. 

    Tree traversal with vertical order involves traversing a binary tree in a top-to-bottom order for each vertical column.

    • Use a hashmap to store nodes at each vertical level

    • Perform a level order traversal and update the hashmap with nodes at each vertical level

    • Sort the keys of the hashmap to get the nodes in vertical order

  • Answered by AI
    Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Design a phonebook app
  • Ans. 

    Phonebook app for storing and organizing contacts

    • Allow users to add, edit, and delete contacts

    • Include search functionality for easy access to contacts

    • Implement sorting options by name, phone number, etc.

    • Provide option to categorize contacts into groups or favorites

  • Answered by AI
    Add your answer
  • Q2. Ant puzzle, Flipping coin puzzle
  • Add your answer

Skills evaluated in this interview

Anonymous

Senior Software Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Jun 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Java language understanding
  • Add your answer
  • Q2. Deep testing concept
  • Add your answer
Anonymous

Asic Design Verification Engineer Interview Questions & Answers

user image Harshvardhan Singh

posted on 13 May 2025

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Tell me about yourself
  • Add your answer
  • Q2. Discuss the projects that you have done
  • Ans. 

    I have worked on various ASIC design verification projects, focusing on functional verification and performance optimization.

    • Led a project for a high-speed data converter, utilizing SystemVerilog and UVM for comprehensive testbench development.

    • Developed a verification environment for a low-power microcontroller, implementing assertions and coverage metrics to ensure design robustness.

    • Collaborated with cross-functional ...

  • Answered by AI
    Add your answer
  • Q3. Fifo design and verilog code
  • Ans. 

    FIFO (First In First Out) is a buffer design used in digital circuits for data storage and transfer.

    • A FIFO can be implemented using a circular buffer to efficiently manage memory.

    • Verilog code for a simple FIFO might include a write pointer and a read pointer.

    • Example: A 4-depth FIFO can be defined with an array of 4 registers.

    • Control signals like 'full' and 'empty' are crucial for FIFO operation.

    • Synchronous FIFO uses a ...

  • Answered by AI
    Add your answer
  • Q4. Puzzels on 1000 bottle and 8 queens chess board.
  • Add your answer
Anonymous

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Synopsys?
Ask anonymously on communities.
More about working at Synopsys
  • HQ - Sunnyvale, California
  • Semiconductors
  • 1k-5k Employees (India)
  • Public
  • Design
  • Internet
  • IT Services & Consulting

Synopsys Interview FAQs

How many rounds are there in Synopsys interview?
Synopsys interview process usually has 2-3 rounds. The most common rounds in the Synopsys interview process are Technical, Aptitude Test and Resume Shortlist.
How to prepare for Synopsys 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 Synopsys. The most common topics and skills that interviewers at Synopsys expect are Python, Perl, Chip Design, Debugging and Digital Design.
What are the top questions asked in Synopsys interview?

Some of the top questions asked at the Synopsys interview -

  1. 1. What is Cryptography? Cryptography is the practice and study of techniques ...read more
  2. you will be given dimensions of a bigger rectangle and smaller rectangle,derive...read more
  3. A random number will be given as input to system,write a program to detect its ...read more
What are the most common questions asked in Synopsys HR round?

The most common HR questions asked in Synopsys interview are -

  1. Where do you see yourself in 5 yea...read more
  2. What are your salary expectatio...read more
  3. What are your strengths and weakness...read more
How long is the Synopsys interview process?

The duration of Synopsys interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Synopsys Interviews By Designations

  • Synopsys R&D Engineer Interview Questions
  • Synopsys Applications Engineer Interview Questions
  • Synopsys Software Engineer Interview Questions
  • Synopsys Security Consultant Interview Questions
  • Synopsys VLSI Design and Verification Engineer Interview Questions
  • Synopsys Intern Interview Questions
  • Synopsys Technical Engineer Interview Questions
  • Synopsys Physical Design Engineer Interview Questions
  • Show more
  • Synopsys Technical Intern Interview Questions
  • Synopsys Asic Design Verification Engineer Interview Questions

Interview Questions for Popular Designations

  • R&D Engineer Interview Questions
  • Applications Engineer Interview Questions
  • Software Engineer Interview Questions
  • Executive Interview Questions
  • Senior Executive Interview Questions
  • Team Lead Interview Questions
  • Senior Engineer Interview Questions
  • Consultant Interview Questions
  • Show more
  • Java Developer Interview Questions
  • Senior Software Engineer Interview Questions

Overall Interview Experience Rating

4.2/5

based on 73 interview experiences

Difficulty level

Easy 14%
Moderate 70%
Hard 16%

Duration

Less than 2 weeks 63%
2-4 weeks 34%
More than 8 weeks 2%
View more

Interview Questions from Similar Companies

Intel
Intel Interview Questions
4.2
 • 224 Interviews
Texas Instruments
Texas Instruments Interview Questions
3.9
 • 126 Interviews
Applied Materials
Applied Materials Interview Questions
3.8
 • 82 Interviews
Micron Technology
Micron Technology Interview Questions
3.6
 • 77 Interviews
Cadence Design Systems
Cadence Design Systems Interview Questions
4.0
 • 65 Interviews
Molex
Molex Interview Questions
3.9
 • 58 Interviews
Tessolve
Tessolve Interview Questions
3.5
 • 57 Interviews
Lam Research
Lam Research Interview Questions
3.7
 • 50 Interviews
Advanced Micro Devices
Advanced Micro Devices Interview Questions
3.6
 • 50 Interviews
Apar Industries
Apar Industries Interview Questions
4.1
 • 49 Interviews
View all

Synopsys Reviews and Ratings

based on 389 reviews

3.9/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

3.8

Salary

3.9

Job security

3.8

Company culture

3.3

Promotions

3.6

Work satisfaction

Explore 389 Reviews and Ratings
Jobs at Synopsys
Synopsys
VC-Static Engine Development Apprenticeship

Noida

1-3 Yrs

Not Disclosed

Synopsys
SystemC Modeling Apprenticeship

Noida

1-2 Yrs

Not Disclosed

Synopsys
Staff Verification Engineer

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

Explore more jobs
Synopsys Salaries in India
Staff Engineer
172 salaries
unlock blur

₹25 L/yr - ₹45 L/yr

R&D Engineer
160 salaries
unlock blur

₹14.1 L/yr - ₹23 L/yr

Senior R&D Engineer
94 salaries
unlock blur

₹16.8 L/yr - ₹27.1 L/yr

Software Engineer
80 salaries
unlock blur

₹11.6 L/yr - ₹20.5 L/yr

Security Consultant
74 salaries
unlock blur

₹6.5 L/yr - ₹15.7 L/yr

Explore more salaries
Compare Synopsys with
Apar Industries

Apar Industries

4.1
Compare
Molex

Molex

3.9
Compare
TDK India Private Limited

TDK India Private Limited

3.8
Compare
Exicom

Exicom

4.1
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Synopsys Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter