i
Addverb
Technologies
Filter interviews by
VMC (Vertical Machining Center) is a type of CNC machine designed for vertical milling operations.
VMC is specifically designed for vertical milling, while CNC machines can control various types of machinery.
CNC (Computer Numerical Control) refers to the automation of machine tools through computer programming.
VMCs typically have a vertical spindle orientation, which is ideal for certain types of machining tasks.
CN...
Metals can be categorized into ferrous, non-ferrous, and precious metals, each with unique properties and applications.
Ferrous metals contain iron; examples include steel and cast iron.
Non-ferrous metals do not contain iron; examples include aluminum, copper, and zinc.
Precious metals are rare and valuable; examples include gold, silver, and platinum.
Metals can also be categorized by their properties, such as condu...
GD&T ensures precise communication of design intent and functional requirements in engineering drawings.
Defines allowable variations in part dimensions, ensuring parts fit and function correctly.
Facilitates clear communication between design, manufacturing, and quality assurance teams.
Examples include using 'flatness' to ensure a surface is within a specified tolerance range.
Helps in reducing manufacturing cos...
Machinery and geometry codes in VMC programming control tool paths and operations for precision machining.
G-code: The primary programming language for CNC machines, e.g., G00 for rapid positioning.
M-code: Used for machine control functions, e.g., M03 for spindle on (clockwise).
Tool geometry codes: Define tool parameters like diameter and length.
Coordinate system codes: G54, G55, etc., for work offsets.
Feed rate co...
The least count of a Vernier caliper is 0.02 mm, while a micrometer typically has a least count of 0.01 mm.
Vernier caliper least count: 0.02 mm (or 0.001 inches).
Micrometer least count: 0.01 mm (or 0.0005 inches).
Example: A Vernier caliper can measure internal and external dimensions.
Example: A micrometer is often used for precise measurements of small objects.
VMC machines are CNC machines that use vertical spindles for precision machining of various materials.
VMC stands for Vertical Machining Center, a type of CNC machine.
They are primarily used for milling operations, allowing for high precision and efficiency.
VMCs can handle a variety of materials, including metals, plastics, and composites.
Common applications include aerospace components, automotive parts, and intri...
Yes, I can convert measurements from millimeters to microns, as they are both metric units of length.
1 millimeter (mm) equals 1000 microns (µm).
To convert mm to µm, multiply the value in mm by 1000.
Example: 2 mm = 2 x 1000 = 2000 µm.
Example: 0.5 mm = 0.5 x 1000 = 500 µm.
Engineering drawings utilize various views to represent objects accurately, aiding in visualization and manufacturing.
1. Orthographic View: Shows multiple views (front, top, side) of an object in 2D.
2. Isometric View: A 3D representation where the three axes are equally foreshortened.
3. Perspective View: Depicts objects as they appear to the eye, with depth and distance.
4. Section View: Illustrates internal featur...
Removing offset in a VMC involves adjusting tool and work offsets for precise machining.
1. Identify the workpiece: Ensure the part is securely clamped in the VMC.
2. Set the work offset: Use the machine's control panel to input the correct work offset values.
3. Use a reference tool: Measure the distance from the tool tip to the part's reference point.
4. Adjust tool offsets: Modify the tool offsets based on the meas...
Safety keys are mechanisms that ensure safe operation of machinery and equipment, preventing unauthorized access or operation.
Mechanical Safety Keys: Physical keys that must be inserted to operate machinery, e.g., ignition keys in vehicles.
Electronic Safety Keys: Digital keys or codes used in electronic systems, e.g., RFID tags for access control.
Interlock Safety Keys: Keys that prevent operation unless certain co...
I appeared for an interview in May 2025, where I was asked the following questions.
Calculating the average of array elements involves summing the elements and dividing by their count.
To find the average, sum all elements in the array. Example: [2, 4, 6] -> 2 + 4 + 6 = 12.
Count the number of elements in the array. Example: [2, 4, 6] has 3 elements.
Divide the total sum by the count of elements. Example: 12 (sum) / 3 (count) = 4 (average).
Ensure to handle edge cases, like an empty array, which should...
I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.
I appeared for an interview in May 2025, where I was asked the following questions.
Developed autonomous robots for navigation and obstacle avoidance in dynamic environments using advanced algorithms.
Designed a mobile robot using ROS (Robot Operating System) for real-time navigation.
Implemented SLAM (Simultaneous Localization and Mapping) to allow the robot to map unknown environments.
Utilized LIDAR sensors for obstacle detection and avoidance, enhancing the robot's safety.
Conducted experiments in var...
I appeared for an interview in May 2024.
Polymorphism in C++ allows objects of different classes to be treated as objects of a common superclass.
Polymorphism is achieved through virtual functions and function overriding.
It allows for more flexibility and extensibility in code.
Example: A base class 'Shape' with virtual function 'draw', and derived classes 'Circle' and 'Square' that override 'draw'.
Different motions in a drone are achieved through varying the speed and direction of the propellers.
Changing the speed of the propellers controls the altitude of the drone.
Varying the speed of propellers on different sides of the drone allows it to move forward, backward, left, or right.
Adjusting the speed of the propellers diagonally creates rotational motion for turning.
Combining these motions enables the drone to pe...
PID controller is a control loop feedback mechanism used in systems to control process variables.
PID stands for Proportional, Integral, Derivative.
Proportional term responds to the current error.
Integral term corrects the accumulated error over time.
Derivative term predicts future error based on current rate of change.
Tuning involves adjusting the three parameters (P, I, D) to achieve desired system response.
Example: I...
PLC stands for Programmable Logic Controller, used in industrial automation to control machinery and processes.
PLC is a digital computer used for automation of electromechanical processes.
It uses a programmable memory to store instructions and specific functions.
PLCs are commonly used in manufacturing plants, assembly lines, and robotic devices.
They can be programmed using ladder logic, function block diagrams, or stru...
Industrial automation involves the use of control systems such as robots and computers to handle different processes and machinery in an industrial setting.
Industrial automation helps improve efficiency and productivity by reducing human intervention in repetitive tasks.
It involves the use of sensors, actuators, and controllers to monitor and control various processes.
Examples of industrial automation include automated...
I appeared for an interview in Dec 2024, where I was asked the following questions.
Python offers a variety of tools for development, data analysis, web development, and more, enhancing productivity and functionality.
IDEs: PyCharm, Visual Studio Code for efficient coding and debugging.
Libraries: NumPy for numerical computations, Pandas for data manipulation.
Web Frameworks: Django and Flask for building web applications.
Testing Tools: PyTest and Unittest for automated testing.
Data Visualization: Matplo...
Common database commands include CRUD operations: Create, Read, Update, and Delete, essential for data manipulation.
CREATE: Used to add new records. Example: 'INSERT INTO users (name, age) VALUES ('Alice', 30);'
READ: Retrieves data from the database. Example: 'SELECT * FROM users;'
UPDATE: Modifies existing records. Example: 'UPDATE users SET age = 31 WHERE name = 'Alice';'
DELETE: Removes records from the database. Exam...
Connecting a database to a Python script involves using libraries to establish a connection and execute queries.
Use libraries like SQLite, MySQL Connector, or SQLAlchemy for database connections.
Example with SQLite: import sqlite3; conn = sqlite3.connect('example.db')
For MySQL: import mysql.connector; conn = mysql.connector.connect(user='user', password='password', host='localhost', database='dbname')
Always close the c...
I applied via Approached by Company and was interviewed before Jan 2024. There was 1 interview round.
Virtual functions are functions in a base class that are overridden in derived classes, allowing for polymorphic behavior.
Virtual functions are declared in a base class with the 'virtual' keyword.
They are intended to be overridden in derived classes to provide specific implementations.
When a virtual function is called through a base class pointer or reference, the derived class's implementation is executed.
Virtual func...
Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.
Inheritance allows a class to reuse code from another class, promoting code reusability and reducing redundancy.
The class that is being inherited from is called the parent class or superclass, while the class that inherits from it is called the child class or subclass.
Child classes can access the p...
I applied via Referral and was interviewed in Dec 2023. There was 1 interview round.
Top trending discussions
Some of the top questions asked at the Addverb Technologies interview for freshers -
The duration of Addverb Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 11 interview experiences
Difficulty level
Duration
based on 404 reviews
Rating in categories
Junior Engineer
188
salaries
| ₹2.6 L/yr - ₹6 L/yr |
Engineer
111
salaries
| ₹4.5 L/yr - ₹9.2 L/yr |
Manager
63
salaries
| ₹9.4 L/yr - ₹16 L/yr |
Automation Engineer
48
salaries
| ₹3.2 L/yr - ₹7.5 L/yr |
Software Engineer
44
salaries
| ₹5.9 L/yr - ₹17.4 L/yr |
Honeywell Automation
Rockwell Automation
Wipro PARI
GKN