Operations Executive
100+ Operations Executive Interview Questions and Answers for Freshers

Asked in Flipkart

Q. What is the electric current? How is works ?
Electric current is the flow of electric charge through a conductor.
Electric current is measured in amperes (A).
It is caused by the movement of electrons.
The direction of current flow is from positive to negative.
Current can be either direct current (DC) or alternating current (AC).
Examples of conductors include copper wires and water with dissolved ions.

Asked in Torrent Power

Q. Why is high voltage preferred for the transmission of electrical power?
High voltage is preferred for transmission of electrical power due to lower energy losses and reduced cost.
High voltage reduces energy losses during transmission
Reduced current flow at high voltage reduces the cost of transmission lines
High voltage allows for longer transmission distances
Step-up transformers increase voltage for transmission and step-down transformers decrease voltage for distribution
Examples of high voltage transmission systems include the 765 kV AC line in ...read more

Asked in AmbitionBox

Q. If a company asks to take down a review, claiming it was not posted by an employee, but you verify that the review was written by a genuine employee, will you delete the review? If so, what explanation would yo...
read moreYes, I would delete the review and provide an explanation to the company.
I would delete the review as per the company's request, even though it was written by a genuine employee.
In the email to the company, I would explain that upon verification, it was confirmed that the review was indeed written by an employee.
I would assure the company that their concerns have been addressed and the review has been removed as requested.
It is important to maintain transparency and professio...read more

Asked in Flipkart

Q. What is ms office? What is vlookup?
MS Office is a suite of productivity software. VLOOKUP is a function in Excel used to search for data in a table.
MS Office includes programs like Word, Excel, PowerPoint, and Outlook.
VLOOKUP stands for 'vertical lookup' and is used to find specific data in a table.
It is commonly used in Excel for tasks like matching data from different sheets or tables.
The function requires four arguments: the value to look up, the table to search, the column to return data from, and whether ...read more

Asked in John Deere

Q. What are the differences between 2-stroke and 4-stroke engines? Please explain.
2 stroke and 4 stroke engines are types of internal combustion engines with different cycles.
2 stroke engine completes a power cycle in 2 strokes of the piston, while a 4 stroke engine completes it in 4 strokes.
In a 2 stroke engine, the intake, compression, power, and exhaust strokes occur in just 2 strokes of the piston.
In a 4 stroke engine, the intake, compression, power, and exhaust strokes occur in 4 separate strokes of the piston.
2 stroke engines are simpler and lighter,...read more

Asked in AmbitionBox

Q. What is the benefit of company reviews posted on Ambition Box to job seekers?
Company reviews on Ambition Box help job seekers make informed decisions about potential employers.
Reviews provide insights into company culture, work-life balance, and growth opportunities.
Job seekers can learn about the experiences of current and former employees.
Reviews can help job seekers avoid companies with negative reputations.
Positive reviews can attract top talent to a company.
Reviews can also help job seekers prepare for interviews by providing information about th...read more
Operations Executive Jobs




Asked in Infosys

Q. Does Java use call by value or call by reference?
Java uses call by value.
Java passes a copy of the value of a variable to a method, not the actual variable itself.
Changes made to the parameter inside the method have no effect on the original variable.
However, if the parameter is an object reference, the reference is passed by value, so changes to the object itself will be reflected outside the method.

Asked in Infosys

Q. Why is the Java language platform-independent?
Java is platform-independent due to its bytecode and virtual machine architecture.
Java code is compiled into bytecode, which can run on any platform with a Java Virtual Machine (JVM).
JVM acts as an interpreter, translating bytecode into machine code specific to the platform it is running on.
This allows Java programs to be written once and run on any platform with a JVM installed.
For example, a Java program written on a Windows machine can run on a Linux machine without any mo...read more
Share interview questions and help millions of jobseekers 🌟

Asked in Ekart Logistics

Q. What is the difference between logistics and supply chain management?
Logistics focuses on the movement and storage of goods, while supply chain management encompasses the entire process from sourcing to delivery.
Logistics deals with the physical flow of goods, including transportation, warehousing, and distribution.
Supply chain management involves the coordination and integration of various activities, including procurement, production, and logistics, to ensure the smooth flow of goods and services.
Logistics is a subset of supply chain managem...read more

Asked in AmbitionBox

Q. What are the benefits of company reviews posted on Ambition Box for companies?
Company reviews on Ambition Box provide valuable insights and feedback to companies.
Helps companies understand their strengths and weaknesses
Allows companies to make improvements based on feedback
Helps companies attract and retain top talent
Provides transparency and credibility to companies
Enables companies to benchmark themselves against competitors

Asked in Flipkart

Q. What is excel ? How it is work ?
Excel is a spreadsheet program used for data analysis and organization.
Excel is a software application developed by Microsoft.
It is used for creating, editing, and analyzing data in a tabular format.
Excel uses cells, rows, and columns to organize and manipulate data.
It supports various mathematical and statistical functions for data analysis.
Excel can create charts, graphs, and pivot tables for visualizing data.
Formulas and functions can be used to perform calculations on dat...read more

Asked in Infosys

Q. Can instances of an abstract class be created?
No, instances of abstract class cannot be created.
Abstract classes are incomplete and cannot be instantiated.
They are meant to be extended by subclasses that provide concrete implementations.
Abstract classes can have abstract methods that must be implemented by the subclass.
Example: abstract class Animal cannot be instantiated, but subclasses like Dog and Cat can be.

Asked in Star Health & Allied Insurance

Q. If the customer have a drinked then they addition in hospital after dead ???.then claim has been approved or not ????
The claim may not be approved as the customer's death could be attributed to the drink.
The customer's death may be considered as a result of their own actions, drinking excessively.
If the customer's death is directly linked to the drink, the claim may not be approved.
The insurance company may investigate the circumstances surrounding the customer's death before approving the claim.
Asked in Ford Smart Mobility

Q. You are asked to choose team-building sessions. Which types of team-building tasks would you prefer to avoid?
I prefer to avoid team-building tasks that create unnecessary competition or discomfort among team members.
Avoid overly competitive activities that can lead to resentment, like sports tournaments.
Steer clear of trust falls or similar exercises that may make participants uncomfortable.
Refrain from tasks that require extreme physical exertion, which could alienate some team members.
Do not include activities that involve public speaking or performance, as they may intimidate int...read more

Asked in Star Health & Allied Insurance

Q. If rs.1,00,000 is total amount of hospital but approved is 88000 . 12000 is diducted for wt?????
The approved amount for the hospital is Rs. 88,000, with Rs. 12,000 deducted for an unknown reason.
Total amount of the hospital: Rs. 1,00,000
Approved amount: Rs. 88,000
Deducted amount: Rs. 12,000
Reason for deduction is unknown

Asked in Infosys

Q. What are the different ways to swap two numbers?
Swapping numbers can be done using a temporary variable, arithmetic operations, or XOR bitwise operator.
Using a temporary variable: temp = a; a = b; b = temp;
Using arithmetic operations: a = a + b; b = a - b; a = a - b;
Using XOR bitwise operator: a = a ^ b; b = a ^ b; a = a ^ b;

Asked in Infosys

Q. What is Overloading and Overriding?
Overloading is using the same method name with different parameters. Overriding is replacing a method in a subclass.
Overloading is used to have multiple methods with the same name but different parameters.
Overriding is used to replace a method in a subclass with a new implementation.
Overloading is resolved at compile-time while overriding is resolved at runtime.
Example of overloading: public void print(int num) and public void print(String str)
Example of overriding: public cl...read more

Asked in Torrent Power

Q. Why is humming noise generated during magnetostriction?
Humming noise is generated due to the vibration of magnetic domains in a magnetic material.
Magnetostriction is the property of magnetic materials to change their shape or dimensions when subjected to a magnetic field.
This change in shape causes the magnetic domains to vibrate, which in turn generates a humming noise.
The frequency of the humming noise is directly proportional to the frequency of the magnetic field.
Magnetostriction is used in various applications such as in tra...read more

Asked in Startek

Q. What do you understand by customer support executive?
A customer support executive is a professional who provides assistance and guidance to customers regarding products or services.
Customer support executives are responsible for resolving customer queries and complaints.
They must possess excellent communication and problem-solving skills.
They should be able to handle difficult customers and provide satisfactory solutions.
They may work in various industries such as retail, hospitality, healthcare, etc.
Examples of customer suppor...read more

Asked in IBM

Q. What are inheritance and polymorphism?
Inheritance is a mechanism where a new class is derived from an existing class. Polymorphism is the ability of an object to take on many forms.
Inheritance allows for code reuse and promotes a hierarchical organization of code.
Polymorphism allows for flexibility in code design and enables objects to be used in multiple contexts.
Example of inheritance: A class 'Car' can be inherited by a class 'SUV' which adds additional features specific to SUVs.
Example of polymorphism: A clas...read more

Asked in Infosys

Q. What is the first line in coding?
The first line in coding is typically the declaration of the programming language being used.
The first line is also known as the 'shebang' or 'hashbang' line.
It specifies the interpreter or compiler to be used for the code.
For example, in Python, the first line would be '#!/usr/bin/env python'.

Asked in mPokket

Q. We have rotational shift timings. Are you comfortable with occasional overtime?
I am fully committed to my responsibilities and can manage overtime as needed, regardless of shift timings.
I have experience working in environments with flexible hours, such as during my internship where I often stayed late to meet project deadlines.
I understand the importance of teamwork and am willing to adjust my schedule to support my colleagues and the organization's needs.
In my previous role, I frequently volunteered for overtime during peak seasons, which helped the t...read more

Asked in Infosys

Q. Why doesn't Java support pointers?
Java doesn't support pointers for safety and security reasons.
Java uses references instead of pointers to avoid memory leaks and null pointer exceptions.
Pointers can be used to access memory directly, which can be a security risk.
Java's garbage collector manages memory automatically, making pointers unnecessary.
Java's design philosophy prioritizes safety and security over low-level control.
Pointers can also make code more difficult to read and maintain.

Asked in Torrent Power

Q. How can eddy current losses be reduced in a transformer?
Eddy current losses in transformers can be reduced by using laminated cores, increasing the core resistance, and minimizing the air gap.
Use laminated cores to reduce eddy current losses
Increase the core resistance by using high resistivity materials
Minimize the air gap between the core and windings
Use magnetic materials with low hysteresis losses
Reduce the frequency of the alternating current
Use thicker laminations to reduce eddy current losses
Use interleaved winding to reduc...read more

Asked in AmbitionBox

Q. What would you do if a company asks you to remove a genuine review, claiming defamation?
I would carefully review the review for any potential defamation and consult with legal counsel before taking any action.
Review the review in question to determine if it meets the legal definition of defamation
Consult with legal counsel to understand the potential risks and consequences of removing the review
Consider alternative solutions such as responding to the review or providing evidence to support the company's position
Ensure transparency and communication with all part...read more

Asked in Infosys

Q. Do you have experience with MS Excel and MS PowerPoint?
Yes, I have experience with MS Excel and MS PowerPoint.
Proficient in creating and managing spreadsheets in MS Excel
Skilled in using formulas, functions, and data analysis tools in Excel
Experienced in creating professional presentations in MS PowerPoint
Knowledgeable in using slide layouts, animations, and transitions
Familiar with creating charts, graphs, and visual representations of data

Asked in Infosys

Q. Which programming language are you currently working with?
I am currently working on Python.
I have experience in developing automation scripts using Python.
I have also worked on building web applications using Django framework.
I am familiar with data analysis and visualization using Python libraries like Pandas and Matplotlib.

Asked in AmbitionBox

Q. What is Ambition Box?
Ambition Box is a company review platform that provides insights into company culture, salaries, and interviews.
Ambition Box allows employees to anonymously review their current or former employers
The platform provides information on company culture, salaries, and interview processes
Employers can also use Ambition Box to showcase their company culture and attract potential candidates
Examples of companies with reviews on Ambition Box include Amazon, Google, and Microsoft

Asked in Star Health & Allied Insurance

Q. What percentage of claims are approved in Star Health?
The percentage of claims approved in Star Health is not available.
The percentage of claims approved in Star Health is not disclosed publicly.
The information regarding the percentage of claims approved is not provided by Star Health.
Unfortunately, I don't have access to the specific data on the percentage of claims approved in Star Health.

Asked in Sharekhan

Q. What do you know about the stock market?
The stock market is a platform where shares of publicly traded companies are bought and sold.
Stock market is a place where investors buy and sell shares of publicly traded companies
It provides a platform for companies to raise capital by issuing stocks
Stock prices are influenced by various factors such as company performance, economic conditions, and investor sentiment
Investors can make profits by buying stocks at a lower price and selling them at a higher price
There are diff...read more
Interview Questions of Similar Designations
Interview Experiences of Popular Companies





Top Interview Questions for Operations Executive Related Skills

Calculate your in-hand salary
Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary


Reviews
Interviews
Salaries
Users

