Add office photos
Engaged Employer

Secure Meters

4.1
based on 794 Reviews
Filter interviews by

40+ Interview Questions and Answers

Updated 22 Oct 2024

Q1. How many result cases are possible when to find maximum of three numbers. This is tricky question

Ans.

There are 4 possible result cases when finding the maximum of three numbers.

  • The maximum number is the same as the first number.

  • The maximum number is the same as the second number.

  • The maximum number is the same as the third number.

  • The maximum number is different from all three numbers.

View 2 more answers

Q2. Array short without using another array, with minimum parameters

Ans.

Short an array without using another array, with minimum parameters

  • Use a sorting algorithm like bubble sort or insertion sort

  • Iterate through the array and compare adjacent elements, swapping them if necessary

  • Repeat the process until the array is sorted

View 1 answer

Q3. What do you understand by Information Architecture?

Ans.

Information Architecture is the process of organizing, structuring, and labeling content in an effective and efficient way.

  • It involves creating a clear and logical hierarchy of information

  • It helps users find what they are looking for quickly and easily

  • It considers user needs and behaviors

  • It includes designing navigation and search systems

  • Example: A website with a well-organized menu and clear categories

  • Example: A mobile app with intuitive navigation and easy-to-find features

Add your answer

Q4. Do you have any knowledge about contextual design?

Ans.

Yes, contextual design is a user-centered design approach that focuses on understanding the context in which a product will be used.

  • Contextual design involves observing and interviewing users in their natural environment to gain insights into their needs and behaviors.

  • These insights are then used to inform the design of the product, ensuring that it meets the specific needs of the users in their context.

  • Contextual design also involves creating personas and scenarios to help d...read more

Add your answer
Discover null interview dos and don'ts from real experiences

Q5. What kind of energy meters used in utilities , how to reading is taken , meter specification

Ans.

Energy meters used in utilities measure the amount of electricity consumed by a household or business.

  • Types of energy meters include electromechanical meters, electronic meters, and smart meters

  • Reading is taken by recording the numbers displayed on the meter, usually in kilowatt-hours

  • Meter specifications include accuracy class, voltage range, current range, and communication protocols

  • Examples of energy meter manufacturers are Landis+Gyr, Siemens, and Schneider Electric

Add your answer

Q6. What is energy Auditing, functions envoled in Auditing?

Ans.

Energy auditing is the process of assessing energy usage in a building or facility to identify opportunities for energy efficiency improvements.

  • Identifying energy consumption patterns

  • Assessing energy efficiency of equipment and systems

  • Recommendations for energy saving measures

  • Cost-benefit analysis of proposed improvements

Add your answer
Are these interview questions helpful?

Q7. Can function overloading done on the basis of return type

Ans.

No, function overloading cannot be done on the basis of return type.

  • Function overloading is based on the number and type of parameters in the function signature, not the return type.

  • Having two functions with the same name but different return types would result in a compilation error.

  • Example: int add(int a, int b) and float add(int a, int b) would not be allowed.

Add your answer

Q8. Write a code for bit set or reset.

Ans.

Code for bit set or reset

  • To set a bit, use bitwise OR operator with 1 shifted left by the bit position

  • To reset a bit, use bitwise AND operator with the complement of 1 shifted left by the bit position

  • Use unsigned integer data type for bit manipulation

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

Q9. 2) Projects & tell me about measurements

Ans.

Answering a question about projects and measurements for a Graduate Engineer Trainee (Get) interview.

  • Projects involve planning, executing, and monitoring tasks to achieve specific goals.

  • Measurements are used to quantify and evaluate the progress and success of a project.

  • Common measurements include time, cost, quality, and scope.

  • Tools such as Gantt charts, critical path analysis, and earned value management can aid in project measurement.

  • Accurate and timely measurements are cr...read more

Add your answer

Q10. What are different member of a steel structure?

Ans.

Different members of a steel structure include beams, columns, trusses, and braces.

  • Beams: horizontal members that support loads

  • Columns: vertical members that support loads

  • Trusses: triangular structures that support loads over a span

  • Braces: diagonal members that provide stability and support

  • Examples: roof trusses, bridge girders, building frames

Add your answer

Q11. How do you do authentication and authorisation in your java spring boot app

Ans.

Authentication and authorization in a Java Spring Boot app involves using Spring Security for managing user access.

  • Use Spring Security to handle authentication and authorization

  • Configure security settings in the application.properties file

  • Implement custom authentication providers if needed

  • Use annotations like @PreAuthorize and @Secured for method-level security

Add your answer

Q12. Show me your current design process.

Ans.

My design process involves research, ideation, prototyping, testing, and iteration.

  • I start by researching the problem and target audience.

  • Then I ideate and sketch out possible solutions.

  • Next, I create low-fidelity wireframes and prototypes.

  • I test these prototypes with users and gather feedback.

  • Finally, I iterate on the design based on user feedback and continue testing until the design is finalized.

Add your answer

Q13. Draw single line diagram, explain various elements use in power system

Ans.

A single line diagram shows the electrical connections and components of a power system.

  • A single line diagram is a simplified representation of a power system that shows the electrical connections and components in a single line.

  • The diagram includes elements such as generators, transformers, circuit breakers, switches, and loads.

  • Each element is represented by a symbol that indicates its function and characteristics.

  • The diagram also shows the direction of power flow and the vo...read more

Add your answer

Q14. What about machine what will work capacity and heating system

Ans.

The work capacity and heating system of a machine are important factors to consider in mechanical engineering.

  • The work capacity of a machine refers to the amount of work it can perform in a given time period.

  • The heating system of a machine is important to prevent overheating and ensure optimal performance.

  • Factors that affect work capacity and heating system include the type of machine, its size, and the materials used in its construction.

  • Examples of machines with high work ca...read more

Add your answer

Q15. To writer logic for converting hexadecimal to decimal

Ans.

To convert hexadecimal to decimal, multiply each digit by 16 raised to the power of its position.

  • Iterate through each digit of the hexadecimal number

  • Convert each digit to its decimal equivalent (0-9 or A-F)

  • Multiply the decimal value by 16 raised to the power of its position

  • Sum up all the values to get the decimal equivalent

Add your answer

Q16. Optimisation in c

Ans.

Optimization in C involves improving the efficiency and performance of code.

  • Use efficient algorithms and data structures

  • Minimize memory usage

  • Avoid unnecessary function calls

  • Optimize loops and conditionals

  • Use compiler optimizations

  • Profile and analyze code for bottlenecks

View 1 answer

Q17. How can we make lst stay for a longer time period

Ans.

To make lst stay for a longer time period, consider optimizing memory usage, implementing caching mechanisms, and reducing unnecessary data retrieval.

  • Optimize memory usage by minimizing unnecessary data stored in memory

  • Implement caching mechanisms to store frequently accessed data for quicker retrieval

  • Reduce unnecessary data retrieval by optimizing database queries and only fetching required information

Add your answer

Q18. To write logic for counting characters in a line.

Ans.

Count characters in a line of text

  • Iterate through each character in the line

  • Use a counter variable to keep track of the number of characters

  • Exclude spaces or other non-alphabetic characters from the count

Add your answer

Q19. MOSFET working , how it works etc

Ans.

MOSFET is a type of transistor that uses an electric field to control the flow of current.

  • MOSFET stands for Metal-Oxide-Semiconductor Field-Effect Transistor.

  • It has three terminals: gate, source, and drain.

  • The gate terminal controls the flow of current between the source and drain.

  • MOSFETs are commonly used in amplifiers, switches, and digital circuits.

  • They are known for their high input impedance and fast switching speeds.

Add your answer

Q20. What is energy

Ans.

Energy is the capacity to do work or cause change. It exists in various forms and can be transferred or converted.

  • Energy is the ability to do work or produce an effect.

  • It can exist in different forms such as kinetic energy, potential energy, thermal energy, etc.

  • Energy can be transferred from one object to another or converted from one form to another.

  • Examples of energy include the energy of a moving car, the potential energy of a stretched spring, and the thermal energy of a ...read more

Add your answer

Q21. Explain new tools worked by you

Ans.

Implemented new project management software to streamline operations and improve efficiency.

  • Utilized Asana for task assignment and tracking

  • Integrated Slack for real-time communication among team members

  • Implemented Trello for visual project management

  • Utilized Microsoft Teams for virtual meetings and collaboration

Add your answer

Q22. Explain new tools worked by team

Ans.

Our team has recently implemented new project management software to streamline operations and improve communication.

  • Implemented project management software to track tasks and deadlines

  • Utilized communication tools like Slack for real-time collaboration

  • Introduced data analytics tools to monitor team performance and identify areas for improvement

Add your answer

Q23. Draw 3phase/wave form

Ans.

A 3-phase waveform consists of three sinusoidal waveforms that are 120 degrees out of phase with each other.

  • A 3-phase waveform is used in electrical power systems.

  • Each phase of the waveform has a peak, trough, and zero-crossing points.

  • The three phases are typically labeled as A, B, and C.

  • The waveforms are evenly spaced and have a frequency of 50 or 60 Hz.

  • The waveforms can be represented graphically as three sine waves.

  • Here is an example of a 3-phase waveform: [insert waveform...read more

Add your answer

Q24. Moter megar any shout out problems

Ans.

The interviewer is asking about common problems with motor meggers.

  • Common problems with motor meggers include incorrect readings due to dirty or damaged insulation, faulty connections, or incorrect test settings.

  • Ensure proper cleaning and maintenance of the megger to avoid inaccurate readings.

  • Check for loose or damaged connections before testing to ensure accurate results.

  • Verify that the test settings on the megger are appropriate for the motor being tested.

  • Consult the manufa...read more

Add your answer

Q25. What is 7 qc tools and where used

Ans.

The 7 QC tools are a set of basic statistical tools used for quality control and problem-solving in various industries.

  • Check sheet: Used to collect and organize data for analysis.

  • Histogram: Visual representation of data distribution.

  • Pareto chart: Helps identify the most significant factors contributing to a problem.

  • Cause-and-effect diagram (Fishbone diagram): Used to identify and analyze potential causes of a problem.

  • Scatter diagram: Shows the relationship between two variabl...read more

Add your answer

Q26. What is the pump what

Ans.

A pump is a mechanical device used to move fluids from one place to another.

  • Pumps are used in various industries such as agriculture, construction, and manufacturing.

  • There are different types of pumps such as centrifugal pumps, positive displacement pumps, and jet pumps.

  • Examples of pumps include water pumps, fuel pumps, and air pumps.

  • Pumps can be powered by electricity, gasoline, diesel, or manual labor.

  • Pump operators are responsible for maintaining and operating pumps to ens...read more

Add your answer

Q27. Explain methods used with tools

Ans.

Methods used with tools involve selecting the appropriate tool for the task, ensuring proper maintenance, and following safety guidelines.

  • Selecting the right tool for the job based on its functionality and suitability

  • Ensuring tools are properly maintained to prolong their lifespan and effectiveness

  • Following safety guidelines and using tools in the correct manner to prevent accidents

  • Regularly inspecting tools for wear and tear and replacing them when necessary

Add your answer

Q28. Meter knowledge, type of losses in transformer

Ans.

Meter knowledge is essential for monitoring energy consumption and losses in transformers.

  • Meter knowledge involves understanding how to read and interpret energy consumption data.

  • Types of losses in transformers include copper losses (I^2R losses) and iron losses (eddy current and hysteresis losses).

  • Copper losses occur in the windings of the transformer due to resistance, while iron losses occur in the core of the transformer.

  • Monitoring these losses is crucial for ensuring the...read more

Add your answer

Q29. Explain runtime polymorphism used in your project

Ans.

Runtime polymorphism in Java allows a subclass to provide a specific implementation of a method that is already provided by its superclass.

  • Runtime polymorphism is achieved through method overriding, where a subclass provides its own implementation of a method that is already defined in its superclass.

  • The method to be overridden must have the same name, return type, and parameters in both the superclass and subclass.

  • At runtime, the JVM determines which method to call based on ...read more

Add your answer

Q30. Explain on the tools worked

Ans.

I have worked with various tools such as Lean Six Sigma, ERP systems, and project management software to streamline operations.

  • Utilized Lean Six Sigma methodologies to identify and eliminate waste in processes

  • Managed operations using ERP systems like SAP or Oracle for efficient resource planning

  • Implemented project management software such as Asana or Trello to track progress and deadlines

Add your answer

Q31. What is Cmmi

Ans.

Cmmi stands for Capability Maturity Model Integration. It is a process improvement framework that helps organizations improve their processes.

  • Cmmi provides a set of best practices that organizations can use to improve their processes.

  • It is divided into five maturity levels, with each level building on the previous one.

  • Cmmi covers areas such as project management, process management, engineering, and support.

  • It is often used in software development, but can be applied to other...read more

Add your answer

Q32. What is work and maintenance

Ans.

Work is the effort put into achieving a goal while maintenance is the act of preserving or restoring something.

  • Work involves performing tasks to achieve a specific objective or goal.

  • Maintenance involves keeping something in good condition or restoring it to its original state.

  • Work is usually a temporary activity while maintenance is ongoing.

  • Examples of work include building a structure, repairing a machine, or completing a project.

  • Examples of maintenance include cleaning, rep...read more

Add your answer

Q33. What is iso 9001

Ans.

ISO 9001 is a quality management system standard that outlines requirements for organizations to meet customer needs and improve processes.

  • ISO 9001 is a set of standards developed by the International Organization for Standardization (ISO).

  • It outlines requirements for a quality management system that helps organizations consistently meet customer needs and improve processes.

  • ISO 9001 certification is often sought by companies to demonstrate their commitment to quality and cust...read more

Add your answer

Q34. What is safety

Ans.

Safety refers to the state of being protected from harm, danger, or injury.

  • Safety involves identifying and assessing potential hazards

  • Developing and implementing measures to control or eliminate those hazards

  • Ensuring compliance with safety regulations and standards

  • Providing training and education to promote safety awareness

  • Regularly reviewing and updating safety policies and procedures

  • Examples of safety measures include wearing personal protective equipment, installing safety...read more

Add your answer

Q35. What working Transformer

Add your answer

Q36. Explakn tools worked

Ans.

Explakn tools are used to explain complex concepts or processes in a simple and understandable way.

  • Explakn tools use visual aids such as diagrams, charts, and videos to simplify information

  • They break down complicated topics into easy-to-digest chunks

  • Examples include flowcharts, infographics, and animations

Add your answer

Q37. Fire extinguishing method

Ans.

Fire extinguishing methods include water, foam, carbon dioxide, dry chemical, and halon.

  • Water extinguishers are effective on Class A fires, but not on Class B or C fires.

  • Foam extinguishers are effective on Class A and B fires, but not on Class C fires.

  • Carbon dioxide extinguishers are effective on Class B and C fires, but not on Class A fires.

  • Dry chemical extinguishers are effective on Class A, B, and C fires.

  • Halon extinguishers are effective on Class B and C fires, but not on...read more

Add your answer

Q38. What is zero defect

Ans.

Zero defect refers to a quality standard where products or services are produced without any defects or errors.

  • Zero defect is a quality management approach that aims to eliminate defects in products or services.

  • It involves continuous improvement processes to prevent defects from occurring.

  • Zero defect requires a focus on quality control, quality assurance, and process improvement.

  • Examples include manufacturing processes that aim for zero defects in final products, or service i...read more

Add your answer

Q39. What work to Lt line

Add your answer

Q40. Circuit cable load size

Add your answer

Q41. Testing of meter

Ans.

Testing of meter involves ensuring accuracy and functionality.

  • Calibrate meter regularly to ensure accuracy

  • Test meter against known standards

  • Check for any physical damage or wear

  • Verify proper functioning of all features

  • Document test results for record keeping

Add your answer

Q42. give me DB model

Ans.

A DB model is a visual representation of the design of a database, showing tables, relationships, and attributes.

  • DB model helps in organizing data in a structured manner

  • It includes entities, attributes, relationships, and constraints

  • Examples: ER diagram, UML diagram, Relational model

Add your answer

Q43. write a code for BMS

Ans.

BMS code for HR Executive interview

  • Define the structure of the BMS system

  • Implement functions for managing employee data

  • Include features for tracking attendance and performance

  • Ensure data security and access control

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

Interview Process at null

based on 21 interviews in the last 1 year
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

4.1
 • 771 Interview Questions
3.8
 • 208 Interview Questions
4.0
 • 165 Interview Questions
3.9
 • 165 Interview Questions
3.7
 • 133 Interview Questions
3.9
 • 132 Interview Questions
View all
Top Secure Meters 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
Get AmbitionBox app

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