Add office photos
Engaged Employer

Ansys Software Private Limited

3.9
based on 113 Reviews
Filter interviews by

20+ Porus Drugs & Intermediates Interview Questions and Answers

Updated 4 Oct 2024

Q1. 0/1 Knapsack Problem Statement

A thief is planning to rob a store and can carry a maximum weight of 'W' in his knapsack. The store contains 'N' items where the ith item has a weight of 'wi' and a value of 'vi'....read more

Add your answer

Q2. Binary Tree Right View Problem Statement

Given a binary tree of integers, your task is to print the right view of it. The right view represents a set of nodes visible when the tree is viewed from the right side...read more

Add your answer

Q3. 1) imagine their is a electricity bulb, upon reaching equilibrium with surrounding, write steady dtate equation.....

Ans.

The steady state equation for an electricity bulb reaching equilibrium with its surroundings.

  • The steady state equation describes the balance between the power input and the power output of the bulb.

  • It can be represented as: Power input = Power output

  • In the case of an electricity bulb, the power input is the electrical power supplied to the bulb, and the power output is the light and heat energy emitted by the bulb.

  • The equation ensures that the bulb operates at a stable state ...read more

View 1 answer
Q4. ...read more

Maximum Path Sum Problem Statement

You are given an n-ary tree consisting of 'N' nodes. Your task is to determine the maximum sum of the path from the root to any leaf node.

Example:

Input:
For the given tree:
Add your answer
Discover Porus Drugs & Intermediates interview dos and don'ts from real experiences

Q5. Given a set of pixels forming a closed loop, aka a triangle in paint, write a program which would colour the region (fill colour) based on the location of click on the screen. If clicked outside will colour eve...

read more
Ans.

Program to fill a closed loop (triangle) with color based on click location.

  • Use a flood fill algorithm to color the region inside the triangle.

  • Check if the click location is inside or outside the triangle using point-in-polygon algorithm.

  • If clicked outside, color everything outside the triangle using a different color.

  • Use the getcolor() and setcolor() APIs to interact with the pixel colors.

  • Handle edge cases like overlapping triangles or concave polygons.

View 1 answer
Q6. Explain how indexing in a database works using B+ trees.
Add your answer
Are these interview questions helpful?
Q7. How can you find the size of an array in C or C++ without using sizeof or any standard function?
Add your answer

Q8. 2) for a spring write down energy equation

Ans.

The energy equation for a spring relates the potential energy stored in the spring to its displacement and spring constant.

  • The energy equation is given by U = 1/2 kx^2

  • U is the potential energy stored in the spring

  • k is the spring constant

  • x is the displacement of the spring from its equilibrium position

  • The equation can be used to calculate the potential energy stored in a spring at a given displacement

  • The equation can also be used to calculate the displacement of a spring given...read more

Add your answer
Share interview questions and help millions of jobseekers 🌟

Q9. 5) NX use of layering and how ?

Ans.

NX uses layering to organize and manage different components of a design.

  • Layering in NX allows for better organization and management of design components.

  • Layers can be used to group related objects together, making it easier to select and manipulate them.

  • Each layer can have its own properties, such as color, line style, and visibility.

  • Layers can be turned on or off, allowing for better control over the display of different design elements.

  • Layers can also be used to control t...read more

View 1 answer

Q10. Proof of Regions of operations of Mosfets in CMOS inverter.

Ans.

The regions of operation of MOSFETs in a CMOS inverter are cutoff, triode, and saturation.

  • MOSFET operates in cutoff region when Vgs < Vth

  • MOSFET operates in triode region when Vgs > Vth and Vds < Vgs - Vth

  • MOSFET operates in saturation region when Vgs > Vth and Vds > Vgs - Vth

  • CMOS inverter uses both NMOS and PMOS transistors to achieve high noise immunity and low power consumption

Add your answer

Q11. Explain the power leakage and dynamic power in CMOS circuits.

Ans.

Power leakage is the power dissipated in CMOS circuits when transistors are in off state, while dynamic power is the power dissipated during switching.

  • Power leakage occurs due to subthreshold leakage currents in transistors when they are in off state

  • Dynamic power is the power dissipated during charging and discharging of capacitive loads in CMOS circuits

  • Power leakage increases with decreasing transistor size, while dynamic power increases with increasing clock frequency

  • Techni...read more

Add your answer

Q12. What is Acceleration?

Ans.

Acceleration is the rate of change of velocity of an object with respect to time.

  • Acceleration is a vector quantity, meaning it has both magnitude and direction.

  • It is measured in meters per second squared (m/s^2).

  • Acceleration can be positive (speeding up), negative (slowing down), or zero (constant speed).

  • Examples of acceleration include a car accelerating from a stop sign, a roller coaster going down a hill, and a rocket launching into space.

Add your answer

Q13. What is your expectation regarding compensation?

Ans.

I expect a fair and competitive compensation package based on my experience and qualifications.

  • I am looking for a salary that is commensurate with my skills and experience

  • I am open to discussing benefits such as health insurance, retirement plans, and vacation time

  • I am willing to negotiate based on the overall compensation package offered

  • I am looking for a long-term commitment from the company

Add your answer

Q14. 4)shape of tetra hedral elements

Ans.

Tetrahedral elements have a pyramid-like shape with four triangular faces.

  • Tetrahedral elements are commonly used in finite element analysis.

  • They are often used to discretize 3D domains in engineering simulations.

  • The shape of tetrahedral elements allows for efficient mesh generation and analysis.

  • Examples of tetrahedral elements include the regular tetrahedron and the truncated tetrahedron.

View 1 answer

Q15. How to get left view right view top view of binary tree

Ans.

To get left view, right view, and top view of a binary tree, perform level order traversal and keep track of the first node encountered at each level.

  • Perform level order traversal of the binary tree

  • Keep track of the first node encountered at each level for left view

  • Keep track of the last node encountered at each level for right view

  • For top view, use a map to store horizontal distance and node pairs

Add your answer

Q16. Rate of change of velocity.

Ans.

Rate of change of velocity is known as acceleration.

  • Acceleration is the derivative of velocity with respect to time.

  • It is measured in meters per second squared (m/s^2).

  • Positive acceleration means speeding up, negative acceleration means slowing down.

  • Examples of acceleration include a car accelerating from a stop sign or a roller coaster going down a hill.

Add your answer

Q17. Difference between biot number and nusselt number

Ans.

Biot number represents the ratio of internal resistance to external resistance in heat transfer, while Nusselt number represents the ratio of convective to conductive heat transfer.

  • Biot number is used to determine the relative importance of internal resistance to heat transfer compared to external resistance.

  • Nusselt number is used to determine the relative importance of convective heat transfer compared to conductive heat transfer.

  • Biot number = h*Lc/k, where h is the convecti...read more

Add your answer

Q18. Cpp pointers explain smart pointers

Ans.

Smart pointers in C++ provide automatic memory management and help prevent memory leaks.

  • Smart pointers are objects that manage the memory of a pointer automatically.

  • They ensure that memory is deallocated when it is no longer needed.

  • Examples include unique_ptr, shared_ptr, and weak_ptr.

Add your answer

Q19. Explain the complete asic design flow process

Ans.

ASIC design flow process involves steps like specification, design, verification, synthesis, and testing.

  • Specification: Define requirements and constraints for the ASIC design.

  • Design: Create a high-level design based on the specifications.

  • Verification: Verify the design using simulations and tests.

  • Synthesis: Convert the design into a netlist of gates and connections.

  • Testing: Test the fabricated ASIC to ensure functionality and performance.

  • Example: Designing a custom processor...read more

Add your answer

Q20. Asic vs fpga difference

Ans.

ASICs are custom-designed for specific applications, while FPGAs are reprogrammable and more flexible.

  • ASICs are Application-Specific Integrated Circuits designed for a specific purpose or application.

  • FPGAs are Field-Programmable Gate Arrays that can be reconfigured for different tasks.

  • ASICs are more efficient and faster than FPGAs for specific tasks.

  • FPGAs are more flexible and can be reprogrammed for different functions.

  • ASICs are more expensive to design and manufacture compa...read more

Add your answer

Q21. Write down the recursion tree for this code:

Ans.

Recursion tree for a given code

  • Identify the base case of the recursion

  • Draw a tree structure with each recursive call as a node

  • Label each node with the input parameters and return values

Add your answer

Q22. find leaf node of binary tree

Ans.

To find leaf node of binary tree, traverse the tree and check if node has no children.

  • Traverse the binary tree using depth-first search or breadth-first search

  • Check if a node has no left or right child, then it is a leaf node

  • Repeat the process for all nodes until all leaf nodes are found

Add your answer

Q23. Power reduction techniques in CMOS

Ans.

Power reduction techniques in CMOS involve various methods to minimize power consumption in CMOS circuits.

  • Use of power gating to selectively turn off power to unused circuit blocks

  • Implementing clock gating to disable clock signals to unused circuitry

  • Utilizing voltage scaling to reduce power consumption at lower voltages

  • Applying dynamic voltage and frequency scaling to adjust voltage and frequency based on workload

  • Using sleep modes to reduce power consumption during idle perio...read more

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Porus Drugs & Intermediates

based on 17 interviews
Interview experience
4.4
Good
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

3.7
 • 417 Interview Questions
4.2
 • 218 Interview Questions
4.1
 • 206 Interview Questions
3.5
 • 174 Interview Questions
4.0
 • 158 Interview Questions
4.1
 • 139 Interview Questions
View all
Top Ansys Software Private Limited Interview Questions And Answers
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

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

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter