Filter interviews by
The process for preparing a stock statement involves gathering information on current inventory levels, valuing the stock, and documenting it in a report.
Gather information on current inventory levels of all items in stock.
Assign a value to each item based on its cost or market price.
Calculate the total value of the stock by summing up the values of all items.
Document the stock levels and values in a stock statement re...
A store procedure is a set of SQL statements that can be stored in the database and executed as a single unit.
Store procedures can be used to perform complex operations on the database.
They can improve performance by reducing network traffic and increasing security.
Store procedures can be reused and shared among multiple applications.
Examples include procedures for updating inventory levels, calculating sales totals, o
There are 5 members in my team including myself.
There are a total of 5 members in the team
This includes myself as the Store Officer
The team consists of 4 other members who assist in store operations
I applied via Company Website and was interviewed in Mar 2024. There was 1 interview round.
I applied via Walk-in and was interviewed before Aug 2022. There were 2 interview rounds.
Maintenance is the process of ensuring equipment and machinery are kept in good working condition to prevent breakdowns.
Regularly inspecting equipment for signs of wear and tear
Performing routine maintenance tasks such as oil changes or filter replacements
Addressing any issues promptly to prevent further damage
Types of maintenance include preventive, predictive, corrective, and proactive maintenance
Examples: changing t...
An engine is a machine that converts fuel into mechanical energy to produce power for vehicles or machinery.
An engine typically consists of components such as cylinders, pistons, valves, crankshaft, and camshaft.
There are different types of engines including internal combustion engines (gasoline or diesel) and external combustion engines (steam engines).
The engine system includes components like the fuel system, igniti...
Top trending discussions
posted on 10 May 2022
I applied via Approached by Company and was interviewed before May 2021. There were 2 interview rounds.
Piping code and welder qualifications test
Piping code refers to the set of standards and regulations that govern the design, fabrication, and inspection of piping systems.
Welder qualifications test is a process of testing and certifying welders to ensure that they have the necessary skills and knowledge to perform welding tasks safely and effectively.
Both piping code and welder qualifications test are important in ensu...
posted on 26 Jul 2022
I applied via Campus Placement and was interviewed before Jul 2021. There were 2 interview rounds.
Pretty easy test, 100 questions in 180 minutes. After that a GD round, then Technical round then HR round.
Kind of essay writing
I applied via Recruitment Consulltant and was interviewed before Jul 2021. There were 2 interview rounds.
English communication Versant test
I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.
posted on 21 Mar 2022
I appeared for an interview before Mar 2021.
Round duration - 60 minutes
Round difficulty - Easy
Technical Interview round with questions on DSA, OS.
You are given a Singly Linked List of integers. Your task is to reverse the Linked List by changing the links between nodes.
The first line of input contai...
Reverse a given singly linked list by changing the links between nodes.
Iterate through the linked list and reverse the links between nodes.
Keep track of the previous, current, and next nodes while reversing the links.
Update the head of the linked list to point to the last node after reversal.
Develop a program to compute the factorial of a given integer 'n'.
The factorial of a non-negative integer 'n', denoted as n!
, is the product of all positive integ...
Program to compute factorial of a given integer 'n', with error handling for negative values.
Create a function to calculate factorial using a loop or recursion
Check if input is negative and return 'Error'
Handle edge cases like 0 and 1 separately
Use long data type to handle large factorials
Example: For input 5, output should be 120
A page is a fixed-size block of memory managed by the operating system, while a frame is a fixed-size block of memory managed by the hardware.
Pages are managed by the operating system, while frames are managed by the hardware.
Pages are virtual memory blocks used by the operating system to manage memory, while frames are physical memory blocks used by the hardware.
Pages are typically smaller in size compared to frames, ...
Round duration - 45 minutes
Round difficulty - Easy
Technical Interview round with questions on OOPS, OS.
Given a binary tree of integers, return its level order traversal.
The first line contains an integer 'T' which represents the number of test cases. For each ...
Perform level order traversal on a binary tree and return the nodes in the order they are visited.
Use a queue to keep track of nodes at each level while traversing the tree.
Start with the root node, enqueue it, then dequeue and print its value, enqueue its children, and continue until the queue is empty.
Repeat the process for each level of the tree until all nodes are visited.
Example: For the input 1 2 3 4 -1 5 6 -1 7 ...
Mutex is used for exclusive access to a resource, while semaphore is used for controlling access to a resource by multiple threads.
Mutex is binary and allows only one thread to access the resource at a time.
Semaphore can have a count greater than one, allowing multiple threads to access the resource simultaneously.
Mutex is used for protecting critical sections of code, while semaphore is used for synchronization betwee...
The sizeof operator in C/C++ is used to determine the size of a data type or variable in bytes.
sizeof operator returns the size of a data type or variable in bytes.
It can be used with any data type, including primitive types, user-defined types, and arrays.
Example: sizeof(int) returns the size of an integer in bytes.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
posted on 21 Mar 2022
I appeared for an interview before Mar 2021.
Round duration - 60 minutes
Round difficulty - Easy
This was a technical round with questions on DSA, OS , OOPS and DBMS. He first asked me to introduce myself. He asked me are you comfortable with networks, I said no. So he moved on to DBMS. He said have you used any tables in DBMS. I mentioned him about my project so he asked me which tables I used there and what all attributes were there. He was asking questions from my project. He asked me that any other project I have done, besides websites.
Declaration refers to introducing a variable or function to the compiler, while definition provides the actual implementation.
Declaration tells the compiler about the type and name of a variable or function, without allocating memory or defining its implementation.
Definition allocates memory for a variable or function, and provides the actual implementation.
Example: int x; // Declaration, int x = 5; // Definition
Given an integer array ARR
of size 'N' containing only the values 0, 1, and 2, the task is to sort this array.
The goal is to achieve the sorting in a...
Sort an array of 0's, 1's, and 2's in a single pass.
Use three pointers to keep track of 0's, 1's, and 2's positions while iterating through the array.
Swap elements based on the current element's value and the pointers.
Achieve sorting in a single pass by moving the pointers accordingly.
Given a singly linked list of integers, determine whether it contains a cycle. A cycle exists if any node in the list can be traversed more than once, forming a loop.
Detect cycle in a singly linked list by using Floyd's Tortoise and Hare algorithm.
Use two pointers, slow and fast, to traverse the linked list.
If there is a cycle, the fast pointer will eventually meet the slow pointer.
Time complexity: O(N), Space complexity: O(1).
Non-deterministic automata are theoretical models of computation where the next state is not uniquely determined by the current state and input.
Examples include non-deterministic finite automata (NFA) and non-deterministic pushdown automata (NPDA).
NFA can have multiple possible transitions for a given input symbol and state.
NPDA can have multiple possible transitions based on the current state, input symbol, and stack
Round duration - 30 minutes
Round difficulty - Easy
HR round with typical behavioral problems.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
posted on 21 Mar 2022
I appeared for an interview before Mar 2021.
Round duration - 60 minutes
Round difficulty - Easy
Technical Interview round with questions on Programming and OOPS.
Given a string STR
, the goal is to remove all spaces from the string and convert it to Pascal case. In Pascal case, there are no spaces between words, and each word begins...
Convert a string to Pascal case by removing spaces and capitalizing each word.
Remove spaces from the input string
Capitalize the first letter of each word
Combine the words to form the Pascal case string
Given a string str
and a character 'X', write a function to remove all occurrences of 'X' from the given string.
If the character 'X' doesn't exist in ...
Create a function to remove all occurrences of a given character from a string.
Iterate through the string character by character and build a new string excluding the specified character.
Use a StringBuilder or similar data structure for efficient string manipulation.
Handle the case where the specified character does not exist in the input string.
Return the updated string after removing all occurrences of the specified c
Types of polymorphism in OOP include compile-time polymorphism (method overloading) and runtime polymorphism (method overriding).
Compile-time polymorphism is achieved through method overloading, where multiple methods have the same name but different parameters.
Runtime polymorphism is achieved through method overriding, where a subclass provides a specific implementation of a method that is already defined in its super...
A virtual function is a function in a base class that is declared using the keyword 'virtual' and can be overridden by a function in a derived class.
Virtual functions allow for dynamic polymorphism in C++
They are used in inheritance to achieve runtime polymorphism
Example: virtual void display() = 0; // pure virtual function
Data abstraction is the process of hiding the implementation details of data and only showing the necessary information to the user.
It allows users to interact with data without needing to know the underlying complexities.
Helps in reducing complexity and improving code readability.
Examples include classes in object-oriented programming where private data members are hidden from outside access.
Round duration - 60 minutes
Round difficulty - Easy
Technical Interview round with questions on OS, Networking and OOPS.
Paging in operating systems is a memory management scheme that allows the operating system to store and retrieve data from secondary storage when the physical memory (RAM) is full.
Paging divides the physical memory into fixed-size blocks called pages.
When a process is loaded into memory, it is divided into equal-sized blocks called pages as well.
The operating system keeps track of the pages in memory using a page table...
Mutual exclusion is a concept in computer science where only one process can access a resource at a time.
Prevents multiple processes from accessing a shared resource simultaneously
Achieved through the use of locks, semaphores, or other synchronization mechanisms
Ensures data consistency and prevents race conditions
Example: Using a mutex to protect a critical section of code in a multi-threaded application
The OSI (Open Systems Interconnection) model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven distinct layers.
Physical Layer: Deals with physical connections and transmission of raw data. Example: Ethernet cables.
Data Link Layer: Manages data transfer between devices on the same network. Example: MAC addresses.
Network Layer: Handles routing and forwarding o...
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
based on 4 interviews
Interview experience
based on 31 reviews
Rating in categories
Assistant Quantity Surveyor
5
salaries
| ₹3.5 L/yr - ₹5.5 L/yr |
HR Manager
4
salaries
| ₹3.5 L/yr - ₹9 L/yr |
Site Engineer
4
salaries
| ₹2.4 L/yr - ₹3 L/yr |
Bridge Engineer
4
salaries
| ₹5.8 L/yr - ₹11 L/yr |
Deputy Project Manager
4
salaries
| ₹8.4 L/yr - ₹15 L/yr |
Tech Mahindra
Larsen & Toubro Limited
Reliance Industries
UltraTech Cement