Consultant Engineer
30+ Consultant Engineer Interview Questions and Answers
Popular Companies
Q1. Pattern Search in Strings
Given two strings S
and P
consisting of lowercase English alphabets, determine if P
is present in S
as a substring.
Input:
The first line contains an integer T
, the number of test case...read more
The task is to determine if a given substring is present in a given string.
Iterate through the string S and check if each substring of length equal to the length of P matches P.
Use string comparison to check for equality between substrings.
Return 'YES' if a match is found, otherwise return 'NO'.
Q2. Covid Vaccination Distribution Problem
As the Government ramps up vaccination drives to combat the second wave of Covid-19, you are tasked with helping plan an effective vaccination schedule. Your goal is to ma...read more
Maximize vaccines administered on a specific day while following certain rules.
Distribute vaccines evenly over the specified number of days.
Ensure the difference in vaccines between consecutive days is not more than 1.
Maximize the number of vaccines administered on the given day.
Keep track of the total number of vaccines administered each day.
Return the maximum number of vaccines administered on the specified day.
Consultant Engineer Interview Questions and Answers for Freshers
Q3. Minimum Cost Path Problem Statement
Given an N x M
matrix filled with integers, determine the minimum sum obtainable from a path that starts at a specified cell (x, y)
and ends at the top left corner of the mat...read more
The problem involves finding the minimum sum path from a specified cell to the top left corner of a matrix.
Start from the specified cell and calculate the minimum sum path to reach the top left corner of the matrix.
You can move down, right, or diagonally down right from any cell.
Keep track of the minimum sum obtained at each cell to determine the overall minimum sum path.
Example: For the input matrix 4 8 2, 2 5 7, 6 1 9 and starting cell 3 3, the minimum sum path is 9 -> 1 ->...read more
A website sends data to a server through HTTP requests, which include the data in the request body or parameters.
When a user interacts with a website (e.g. submits a form), the website sends an HTTP request to the server.
The data can be sent in the request body (e.g. JSON or XML) or as parameters in the URL.
The server processes the request, retrieves the data, and sends a response back to the website.
Examples of data sent to a server include user input, file uploads, and API ...read more
The topic of the video I submitted for my assignment was the impact of renewable energy on reducing carbon emissions.
Discussed various sources of renewable energy such as solar, wind, and hydro power
Highlighted the benefits of transitioning to renewable energy for the environment and economy
Provided examples of countries successfully implementing renewable energy initiatives
Q6. What are the steps involved in designing a new product ?
Designing a new product involves several steps from ideation to production.
Identify the need or problem the product will solve
Conduct market research to determine demand and competition
Brainstorm and develop concepts
Create detailed designs and prototypes
Test and refine the product
Finalize design and prepare for production
Launch and market the product
Share interview questions and help millions of jobseekers 🌟
Q7. 1 bag of cement gives how much quantities of works, like masonry, plaster( also know for 1kg/lit. Of putty/paint consumption)
The quantity of work that can be done with 1 bag of cement varies depending on the type of work.
1 bag of cement can be used to lay approximately 70-80 standard bricks
1 bag of cement can be used to plaster approximately 10-12 square meters of wall
1 bag of cement can be used to create approximately 3-4 cubic meters of concrete
1 kg of putty/paint can cover approximately 10-12 square meters of wall
Q8. how would u scale the app (database wise) over India ?
To scale the app database over India, consider sharding, replication, and using cloud services.
Implement sharding to distribute data across multiple servers based on geographic location or other criteria.
Set up replication to ensure data consistency and availability in different regions.
Utilize cloud services like AWS or Azure to easily scale resources based on demand.
Optimize queries and indexes to improve database performance.
Consider using a content delivery network (CDN) ...read more
Consultant Engineer Jobs
Q9. what are the 3 basic components of database, and do a RCA for why a DB is down.
The 3 basic components of a database are data, schema, and software. An RCA for a DB being down involves identifying the root cause of the issue.
Data: the actual information stored in the database, such as customer records or product details.
Schema: the structure that defines how the data is organized and related to each other, including tables, fields, and relationships.
Software: the database management system (DBMS) that allows users to interact with the data, such as MySQL...read more
Q10. How to find Eave height of PEB with vertical connection of Column and rafter
The eave height of a pre-engineered building with vertical connection of column and rafter can be found using trigonometry and the dimensions of the building components.
Calculate the vertical distance between the top of the column and the bottom of the rafter using trigonometry
Add this vertical distance to the height of the column to get the eave height
Ensure to consider any additional factors such as roof slope or overhangs in the calculation
Q11. How much voltage between phase to neutral? And neutral to earth?
Phase to neutral voltage is typically 230V in a single-phase system. Neutral to earth voltage should ideally be 0V.
Phase to neutral voltage is usually 230V in a single-phase system
Neutral to earth voltage should ideally be 0V to prevent electrical shocks
Voltage measurements may vary depending on the electrical system and country standards
Q12. How better I understand my last organization IT infrastructure ?
Understanding IT infrastructure involves analyzing network architecture, hardware, software, security measures, and data management.
Reviewing network diagrams and documentation to understand the layout and connections
Analyzing server configurations and virtualization setups
Assessing security protocols and measures in place
Examining software applications and licenses used
Understanding data storage and backup solutions implemented
Q13. What languages do you know ?
I am proficient in English and Spanish.
English
Spanish
Q14. Total vehicle load of class A and 70R loading.
Total vehicle load of class A and 70R loading.
Class A vehicles have a maximum weight of 18,000 pounds
70R loading refers to a tire load rating of 7,000 pounds
Total vehicle load would depend on the number of axles and tires on the vehicle
Calculations can be done using the Federal Bridge Formula
Q15. What is the maximum allowable earthing voltage value?
The maximum allowable earthing voltage value is typically 25 volts.
The maximum allowable earthing voltage value is usually around 25 volts to prevent electric shock.
This value may vary depending on the specific standards and regulations in place.
Exceeding the maximum allowable earthing voltage can pose a safety risk to individuals working with electrical systems.
Q16. Schema design for Multi-Level Parking System?
A multi-level parking system schema design involves creating a database to manage parking spots and their availability.
Create a database to store information about parking spots, levels, and availability
Design a user interface for customers to view available spots and reserve them
Implement a system to track the entry and exit of vehicles
Incorporate sensors or cameras to monitor parking spot availability
Consider integrating payment processing for parking fees
Q17. Architectures for the Microservices you have recently worked on?
We have used a combination of containerization and orchestration tools like Docker and Kubernetes for our microservices architecture.
We have followed the principles of domain-driven design to identify the boundaries of our microservices.
We have used RESTful APIs for communication between microservices.
We have implemented fault tolerance and resilience patterns like circuit breakers and retries.
We have used event-driven architecture for asynchronous communication between micro...read more
Q18. Where to start bath/toilet dedo tiles first
Start tiling from the center of the wall and work your way outwards.
Find the center point of the wall and mark it.
Start tiling from the center point and work your way outwards.
Use a spirit level to ensure the tiles are straight.
Leave space for grouting between tiles.
Cut tiles to fit around fixtures and edges.
Finish with a row of half tiles at the top or bottom.
Q19. 1.What is grep command in Linux?why is it used?
grep is a Linux command used to search for a specific pattern in a file or multiple files.
Used to search for a specific pattern in a file or multiple files
Can be used with regular expressions for more complex searches
Can be used with other commands like find and xargs for more advanced searches
Examples: grep 'hello' file.txt, grep -r 'hello' /path/to/directory
Q20. What are the materials you have handle?
I have handled a variety of materials including steel, concrete, wood, and plastics.
Steel
Concrete
Wood
Plastics
Q21. What to do before tiling at bath/toilets
Before tiling at bath/toilets, it is important to prepare the surface properly to ensure a long-lasting and durable finish.
Ensure the surface is clean and free of any debris or dust.
Check for any cracks or damage and repair them before tiling.
Apply a waterproofing membrane to prevent water damage.
Allow the surface to dry completely before tiling.
Use the appropriate adhesive and grout for the type of tiles being used.
Consider using a tile leveling system to ensure a flat and e...read more
Q22. Governing criteria for substructure design
Governing criteria for substructure design
Soil properties and bearing capacity
Loads and forces acting on the substructure
Environmental factors such as seismic activity and wind loads
Building codes and regulations
Construction materials and techniques
Accessibility and maintenance requirements
Q23. Governing criteria for superstructure design
The governing criteria for superstructure design include safety, durability, functionality, and aesthetics.
Safety considerations include load capacity, wind resistance, and earthquake resistance.
Durability considerations include corrosion resistance and maintenance requirements.
Functionality considerations include the intended use of the structure and the needs of its occupants.
Aesthetics considerations include the visual impact of the structure on its surroundings.
Other fact...read more
Q24. 2.General format of an SQL query?
SQL query format includes SELECT, FROM, WHERE clauses and can include JOIN, GROUP BY, ORDER BY clauses.
Start with SELECT clause to specify columns to retrieve
Followed by FROM clause to specify table(s) to retrieve data from
WHERE clause is used to filter data based on specified conditions
JOIN clause can be used to combine data from multiple tables
GROUP BY clause is used to group data based on specified columns
ORDER BY clause is used to sort data based on specified columns
Q25. what is sharding vs partitioning
Sharding and partitioning are both techniques used in database management to improve performance and scalability by dividing data into smaller chunks.
Sharding involves splitting a database into smaller, independent databases called shards, each responsible for a subset of the data.
Partitioning involves dividing a database into smaller segments called partitions, each containing a subset of the data based on a defined criteria such as range or hash value.
Sharding is typically ...read more
Q26. design schema for movie booking system ?
Design schema for a movie booking system.
Create tables for movies, theaters, users, bookings, and payments.
Use foreign keys to establish relationships between tables.
Include attributes like movie title, showtime, seat number, user details, booking status, payment details, etc.
Consider implementing a booking algorithm to handle seat selection and availability.
Ensure data integrity and normalization for efficient data retrieval and storage.
Q27. Design methodology of superstructure.
Superstructure design methodology involves analyzing loads, selecting materials, and determining structural systems.
Analyze loads and determine design criteria
Select appropriate materials based on strength, durability, and cost
Determine structural systems such as beams, columns, and trusses
Consider factors such as seismic activity, wind loads, and temperature changes
Use computer-aided design software to model and test designs
Ensure compliance with building codes and regulatio...read more
Q28. Calculation of Weight for tapered column
Calculation of weight for a tapered column involves determining the volume of each section and multiplying by the density of the material.
Calculate the volume of each section of the tapered column using appropriate geometric formulas.
Determine the weight of each section by multiplying the volume by the density of the material.
Sum up the weights of all sections to get the total weight of the tapered column.
Q29. What is passive voltage?
Passive voltage refers to the voltage that is present in a circuit without any external power source.
Passive voltage is generated by components such as resistors, capacitors, and inductors in a circuit.
It is not actively produced or controlled by a power source like batteries or generators.
Examples of passive voltage include the voltage drop across a resistor in a simple circuit.
Passive voltage can affect the overall behavior and performance of a circuit.
Q30. Explain layers of OSI model.
The OSI model is a conceptual framework that standardizes the functions of a communication system into seven layers.
The seven layers of the OSI model are: Physical, Data Link, Network, Transport, Session, Presentation, and Application.
Each layer has a specific function and interacts with the layers above and below it.
The Physical layer deals with the physical transmission of data.
The Data Link layer provides error-free transmission over a physical link.
The Network layer handl...read more
Q31. Missing dimensions in cutting diagram
The missing dimensions in a cutting diagram can be calculated using basic geometry principles.
Identify the known dimensions in the cutting diagram
Use geometric formulas to calculate the missing dimensions
Consider angles and proportions in the diagram
Double check calculations to ensure accuracy
Q32. Indexing Strategy?
Indexing strategy is a method of organizing and optimizing data retrieval from a database.
Choose appropriate data structures for indexing
Consider the size and complexity of the database
Regularly analyze and optimize the indexing strategy
Examples: B-tree, hash index, bitmap index
Interview experiences of popular companies
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/Month