Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by MosChip Institute of Silicon Systems Team. If you also belong to the team, you can get access from here

MosChip Institute of Silicon Systems Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

MosChip Institute of Silicon Systems Interview Questions, Process, and Tips

Updated 12 Dec 2024

Top MosChip Institute of Silicon Systems Interview Questions and Answers

View all 6 questions

MosChip Institute of Silicon Systems Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Can you explain Place and route flow
  • Ans. 

    Place and route flow is a process in physical design where the placement and routing of logic gates on a chip is determined.

    • Place and route flow involves determining the optimal placement of logic gates on a chip to meet timing and area constraints.

    • It also includes routing interconnections between the placed logic gates to ensure proper functionality.

    • Tools like Cadence Innovus and Synopsys ICC are commonly used for pla...

  • Answered by AI
  • Q2. Explain the delay optimisation techniques and power optimisation techniques
  • Ans. 

    Delay optimisation techniques focus on reducing the time taken for signal propagation, while power optimisation techniques aim to reduce power consumption.

    • Delay optimisation techniques include pipeline insertion, clock gating, and buffer insertion.

    • Power optimisation techniques include voltage scaling, power gating, and clock gating.

    • Both delay and power optimisation techniques involve trade-offs between performance and ...

  • Answered by AI
  • Q3. Can you explain the synthesis flow
  • Ans. 

    Synthesis flow is the process of converting RTL design into gate-level netlist.

    • RTL design is analyzed and optimized for timing, area, and power constraints

    • High-level synthesis tools may be used to convert C/C++ code to RTL

    • Logic synthesis tools map RTL to gates and optimize for area and timing

    • Constraints such as clock tree synthesis and power optimization are applied

    • Final gate-level netlist is generated for physical des

  • Answered by AI
  • Q4. Can you explain power supply in standard cells
  • Ans. 

    Power supply in standard cells refers to the distribution of power to the logic gates within the cell.

    • Power supply in standard cells is typically provided through metal layers in the layout.

    • Different power domains may be used to supply different parts of the cell.

    • Power distribution networks are designed to ensure proper voltage levels and minimize voltage drop.

    • Examples of power supply structures in standard cells inclu

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Why choose the semiconductor field
  • Ans. 

    I chose the semiconductor field due to its innovative nature, potential for growth, and impact on various industries.

    • Fascination with cutting-edge technology and innovation in the field

    • Opportunity for continuous learning and growth in a dynamic industry

    • Desire to contribute to advancements in electronics and technology

    • Impact of semiconductors on various industries such as automotive, healthcare, and telecommunications

  • Answered by AI
  • Q2. How much salary did you expect
  • Ans. 

    I expect a competitive salary based on industry standards and my qualifications.

    • Research industry standards for entry-level Physical Design Engineer salaries

    • Consider my qualifications, education, and relevant experience

    • Factor in cost of living in the area where the job is located

    • Be prepared to negotiate based on the company's offer and benefits package

  • Answered by AI

Skills evaluated in this interview

Top MosChip Institute of Silicon Systems Physical Design Engineer Trainee Interview Questions and Answers

Q1. Can you explain power supply in standard cells
View answer (1)

Physical Design Engineer Trainee Interview Questions asked at other Companies

Q1. What are Kirchhoff's Voltage Law (KVL) and Kirchhoff's Current Law (KCL)?
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain about the PNR flow in detail
  • Ans. 

    PNR flow is the process of placing and routing components on a chip during physical design.

    • PNR stands for Place and Route, which is a crucial step in physical design of integrated circuits.

    • During PNR flow, components are placed on the chip according to the floorplan and then connected through routing.

    • The process involves optimization of timing, power, and area constraints to meet design specifications.

    • Tools like Cadenc...

  • Answered by AI

Top MosChip Institute of Silicon Systems Physical Design Engineer Trainee Interview Questions and Answers

Q1. Can you explain power supply in standard cells
View answer (1)

Physical Design Engineer Trainee Interview Questions asked at other Companies

Q1. What are Kirchhoff's Voltage Law (KVL) and Kirchhoff's Current Law (KCL)?
View answer (1)
MosChip Institute of Silicon Systems Interview Questions and Answers for Freshers
illustration image

Interview questions from similar companies

Analyst Interview Questions & Answers

eClerx user image Vikas Malik

posted on 15 May 2017

I was interviewed in Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. What will you do if set of box suddenly switched off?
  • Ans. 

    I would check if it's a power outage or a technical issue and troubleshoot accordingly.

    • Check if other devices are also affected by the power outage

    • If it's a technical issue, check the power source and connections

    • Try turning the box back on and see if it works

    • If the issue persists, seek technical assistance

  • Answered by AI

Interview Preparation Tips

Round: Technical + HR Interview
Experience: i said i cant check the power button and remove insert the vcard again.he replied both are ok.i said i can check weather it is clear or not.he replied it is also good sunny weather.tell me more details to verify the solution.

Skills: Communication
College Name: University Institute Of Engineering & Technology, Kurukshetra

I applied via Freshersworld and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Write a program to merge two arrays.
  • Ans. 

    Program to merge two arrays of strings.

    • Create a new array with size equal to sum of sizes of both arrays.

    • Copy elements of first array to new array.

    • Copy elements of second array to new array starting from the end of first array.

    • Return the new array.

  • Answered by AI
  • Q2. What have you done in your final year project explain in details also asked to write query how to connect to database and some database query.
  • Q3. What is constructor and different types.
  • Ans. 

    Constructor is a special method used to initialize objects. There are default, parameterized and copy constructors.

    • Default constructor is used to create an object with default values.

    • Parameterized constructor is used to create an object with user-defined values.

    • Copy constructor is used to create a new object as a copy of an existing object.

    • Constructors can be overloaded to have multiple constructors with different para...

  • Answered by AI
  • Q4. Explain inheritance, polymorphism with example
  • Ans. 

    Inheritance is a way to create a new class from an existing class. Polymorphism allows objects of different classes to be treated as if they were of the same class.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • Polymorphism allows objects of different classes to be treated as if they were of the same class.

    • Example of inheritance: class Car extends Vehicle. Car inherits properties and ...

  • Answered by AI
  • Q5. Typecasting and downcasting in java.
  • Ans. 

    Typecasting is converting one data type to another. Downcasting is casting a superclass to a subclass.

    • Typecasting is done using (datatype) variable syntax.

    • Downcasting requires explicit casting using subclass type.

    • Typecasting can result in loss of data or precision.

    • Downcasting can result in ClassCastException if the object is not an instance of the subclass.

  • Answered by AI
  • Q6. Sql,view, database query, some definitions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall the interview was good. I have faced two technical rounds followed by HR. HR was very good and very helpful.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Questions related to VC++ and MFC

I applied via Naukri.com and was interviewed before Mar 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Technical and aptitude questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Technical questions and discussions
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions and interview
Round 4 - HR 

(4 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Where do you see yourself in 5 years?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - just be confident and attend all round of interviews

Interview Questionnaire 

2 Questions

  • Q1. Salary discussion and notice period
  • Q2. Core java, collections and coding

Interview Preparation Tips

Round: Manager Round
Experience: About project and previous company experience , daily activity

Interview Questionnaire 

2 Questions

  • Q1. About what we worked in previous company project
  • Q2. General C programming questions and previous company project questions

Interview Preparation Tips

Round: Test
Experience: Approx. 30.questions in 50 min
Tips: Try solving each que in less than a minute ,don't waste time on difficult questions, complete easier once first
Duration: 50 minutes
Total Questions: 30

College Name: Pimpri chinchwad college of engineering

Analyst Interview Questions & Answers

eClerx user image amish mirani

posted on 2 Sep 2017

I was interviewed before Sep 2016.

Interview Questionnaire 

1 Question

  • Q1. Manager asked logical questions

Interview Preparation Tips

Round: Resume Shortlist
Experience: They told me to wait in the waiting area
Tips: Keep your cool

Round: HR Interview
Experience: I was shout with objective questions and suggestions
Tips: Always give genuine answers don't bluff

Round: Test
Experience: Hurry up to complete the questionnaire
Tips: At least complete your questionnaire
Duration: 15 minutes
Total Questions: 30

Round: Technical Interview
Experience: That was the last round I was eager to the decision of the manager

Skills: Activeness Of Candidate, Confidence
Contribute & help others!
anonymous
You can choose to be anonymous

MosChip Institute of Silicon Systems Interview FAQs

How many rounds are there in MosChip Institute of Silicon Systems interview?
MosChip Institute of Silicon Systems interview process usually has 1-2 rounds. The most common rounds in the MosChip Institute of Silicon Systems interview process are Technical and HR.
What are the top questions asked in MosChip Institute of Silicon Systems interview?

Some of the top questions asked at the MosChip Institute of Silicon Systems interview -

  1. Can you explain power supply in standard ce...read more
  2. Explain the delay optimisation techniques and power optimisation techniq...read more
  3. Can you explain Place and route f...read more

Recently Viewed

PHOTOS

Medanta the Medicity

4 office photos

SALARIES

Birla Cellulose

No Salaries

DESIGNATION

COMPANY BENEFITS

Samunnati Financial Intermediation and Services

No Benefits

REVIEWS

Aditya Birla Group

No Reviews

LIST OF COMPANIES

MosChip Technologies

Locations

LIST OF COMPANIES

Aditya Birla Group

Locations

LIST OF COMPANIES

Vastu Housing Finance

Locations

REVIEWS

Birla Cellulose

No Reviews

SALARIES

Jaipuria Institute of Management

Tell us how to improve this page.

MosChip Institute of Silicon Systems Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

eClerx Interview Questions
3.3
 • 514 Interviews
KPIT Technologies Interview Questions
3.4
 • 294 Interviews
Sasken Interview Questions
3.8
 • 79 Interviews
K L University Interview Questions
3.8
 • 39 Interviews
Mindteck Interview Questions
3.3
 • 21 Interviews
Careers360 Interview Questions
3.2
 • 17 Interviews
Moser Baer Interview Questions
4.2
 • 7 Interviews
View all

MosChip Institute of Silicon Systems Reviews and Ratings

based on 85 reviews

4.5/5

Rating in categories

4.7

Skill development

4.2

Work-life balance

4.1

Salary

4.5

Job security

4.5

Company culture

4.2

Promotions

4.4

Work satisfaction

Explore 85 Reviews and Ratings
Physical Design Trainee
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Trainee
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Physical Design Engineer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analog Layout Trainee
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare MosChip Institute of Silicon Systems with

Moser Baer

4.2
Compare

Sasken

3.8
Compare

KPIT Technologies

3.4
Compare

eClerx

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