i
TVS
Electronics
Work with us
Filter interviews by
I applied via Naukri.com and was interviewed in Feb 2024. There were 3 interview rounds.
My current CTC is $60,000 and I am expecting a 10% increase in my next role.
Current CTC: $60,000
Expecting 10% increase in next role
Expecting CTC: $66,000
Our organization's daily activities include managing IT assets, tracking inventory, conducting audits, and ensuring compliance.
Managing IT assets such as hardware, software, and licenses
Tracking inventory levels and updating records
Conducting regular audits to verify asset information
Ensuring compliance with company policies and industry regulations
Collaborating with other departments to support their IT asset needs
Managing IT assets involves navigating complexities like compliance, budget constraints, and evolving technology landscapes.
Compliance with regulations: Ensuring all assets meet legal and industry standards, such as GDPR or HIPAA.
Budget constraints: Balancing the need for updated technology with limited financial resources, often requiring prioritization.
Rapid technology changes: Keeping up with fast-paced advancements...
I have extensive domain knowledge in IT asset management, including software and hardware inventory, procurement, licensing, and disposal.
Experience in tracking and managing software licenses to ensure compliance
Knowledge of hardware inventory management techniques such as asset tagging and tracking
Understanding of IT procurement processes and vendor management
Familiarity with IT asset disposal and recycling best pract...
Testing your technical problems solving
Top trending discussions
JavaScript is a versatile programming language used for web development, enabling dynamic content and interactive features.
JavaScript is an interpreted language, meaning it runs directly in the browser without needing compilation.
It supports object-oriented, imperative, and functional programming styles.
Variables can be declared using var, let, or const, with let and const providing block scope.
Functions can be defined...
I appeared for an interview in Apr 2025, where I was asked the following questions.
I successfully led a team project that improved operational efficiency by 30%, showcasing my leadership and problem-solving skills.
Led a team of 5 in a project that streamlined processes, resulting in a 30% increase in efficiency.
Implemented a new software tool that reduced data entry time by 50%, allowing the team to focus on strategic tasks.
Received 'Employee of the Month' for outstanding contributions to a high-stak...
I bring a unique blend of skills, experience, and passion that aligns perfectly with your team's goals and values.
Proven track record: In my previous role, I increased sales by 30% through targeted marketing strategies.
Strong teamwork: I successfully led a project team of 5, fostering collaboration that resulted in a 15% reduction in project delivery time.
Adaptability: I thrive in fast-paced environments, quickly learn...
I once missed a project deadline due to poor time management, which taught me valuable lessons about prioritization and communication.
Failed to deliver a project on time due to underestimating the workload.
Realized I didn't communicate effectively with my team about progress.
Learned the importance of setting realistic deadlines and checking in regularly.
Implemented a new project management tool to better track tasks an...
I applied via Campus Placement and was interviewed before Jul 2023. There were 3 interview rounds.
I got selected through my campus. I got behavioural and aptitude questions for 1 hour
C # MCQs are asked in this round
I have been clear elitmus test first.
I applied via Company Website and was interviewed in May 2024. There was 1 interview round.
10 questions descriptive
I applied via Naukri.com and was interviewed before Jul 2020. There were 4 interview rounds.
I appeared for an interview before Jan 2021.
Round duration - 120 Minutes
Round difficulty - Medium
This was an online coding round where we had 3 questions to solve under 120 minutes. The questions were of medium to hard difficulty level.
Determine the minimum time required to travel from a starting point to a destination point in a two-dimensional coordinate system, considering both direct movement and the...
Find the minimum time to travel from a starting point to a destination point using direct movement and wormholes.
Calculate the time taken for direct movement from source to destination.
Consider using each wormhole to see if it reduces the total travel time.
Choose the path with the minimum total time to reach the destination.
Ninja needs help in a battle against the string man. Given two strings, 'S' and 'T', the task is to find the number of substrings in 'S' that differ from some su...
The task is to find the number of substrings in 'S' that differ from some substrings of 'T' by exactly one character.
Iterate through all substrings of 'S' and 'T' and compare them character by character to find the ones that differ by exactly one character.
Use nested loops to generate all possible substrings of 'S' and 'T'.
Count the number of substrings that differ by exactly one character and return the total count.
Determine whether a given integer N
is a power of two. Return true
if it is, otherwise return false
.
An integer 'N' is considered a power of two if it can be e...
Check if a given integer is a power of two or not.
Check if the given integer is greater than 0.
Check if the given integer has only one bit set in its binary representation.
Return true if the above conditions are met, else return false.
Round duration - 60 Minutes
Round difficulty - Medium
This round had 2 questions related to DSA where I was first expected to explain my approaches and then discuss the time and space complexities of my solution. After that , I was asked some core concepts related to OS.
Given a singly linked list of integers, return the head of the reversed linked list.
Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
Reversed link...
Reverse a singly linked list of integers and return the head of the reversed linked list.
Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.
Use three pointers - prev, current, and next to reverse the linked list in O(N) time and O(1) space complexity.
Update the head of the reversed linked list as the last node encountered during reversal.
You are provided with an undirected graph containing 'N' vertices and 'M' edges. The vertices are numbered from 1 to 'N'. Your objective is to determi...
Detect cycles in an undirected graph.
Use Depth First Search (DFS) to detect cycles in the graph.
Maintain a visited array to keep track of visited vertices.
If a visited vertex is encountered again during DFS, a cycle exists.
Check for cycles in each connected component of the graph.
Example: For input N=3, Edges=[[1, 2], [2, 3], [1, 3]], output is Yes.
Mutex is used for exclusive access to a resource by only one thread at a time, while semaphore can allow multiple threads to access a resource simultaneously.
Mutex is binary semaphore with ownership, used for mutual exclusion.
Mutex is typically used to protect critical sections of code.
Semaphore is a signaling mechanism, used for synchronization between multiple threads.
Semaphore can have a count greater than 1, allowi...
Multitasking refers to the ability of an operating system to run multiple tasks concurrently, while multithreading involves executing multiple threads within a single process.
Multitasking allows multiple processes to run simultaneously on a single processor, switching between them quickly to give the illusion of parallel execution.
Multithreading involves breaking a process into multiple threads that can be executed ind...
Round duration - 60 Minutes
Round difficulty - Medium
This round had 2 Algorithmic questions wherein I was supposed to code both the problems after discussing their
approaches and respective time and space complexities . After that , I was grilled on some OOPS concepts related to C++.
You are given a long type array/list ARR
of size N
, representing an elevation map. The value ARR[i]
denotes the elevation of the ith
bar. Your task is to determine th...
Calculate the total amount of rainwater that can be trapped between given elevations in an array.
Iterate through the array and calculate the maximum height on the left and right of each bar.
Calculate the amount of water that can be trapped at each bar by taking the minimum of the maximum heights on the left and right.
Sum up the trapped water at each bar to get the total trapped water for the entire array.
You are provided with an array nums
which contains the first N positive integers. In this array, one integer appears twice, and one integer is missi...
Given an array of first N positive integers with one number repeating and one missing, find the repeating and missing numbers.
Iterate through the array and keep track of the sum of elements and sum of squares to find the missing and repeating numbers.
Use a set to identify the repeating number and calculate the missing number based on the sum of elements.
Example: For nums = [1, 2, 3, 4, 4, 5], the repeating number is 4 ...
Diamond Problem in C++ is a common issue in multiple inheritance where a class inherits from two classes that have a common base class.
Diamond Problem occurs when a class inherits from two classes that have a common base class, leading to ambiguity in accessing members.
It can be resolved in C++ using virtual inheritance, where the common base class is inherited virtually to avoid duplicate copies of base class members.
...
Friend functions in C++ are functions that are not members of a class but have access to its private and protected members.
Friend functions are declared inside a class with the 'friend' keyword.
They can access private and protected members of the class.
They are not member functions of the class, but have the same access rights as member functions.
Friend functions are useful for implementing operators that are not membe...
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 3 Dec 2015
based on 1 interview experience
Difficulty level
Duration
based on 2 reviews
Rating in categories
Service Level Coordinator
64
salaries
| ₹1.6 L/yr - ₹4 L/yr |
Desktop Support Engineer
40
salaries
| ₹1.1 L/yr - ₹4.1 L/yr |
Senior Executive
37
salaries
| ₹3.4 L/yr - ₹7.5 L/yr |
Service Engineer
35
salaries
| ₹1 L/yr - ₹4.5 L/yr |
Technical Support Engineer
34
salaries
| ₹1.4 L/yr - ₹4.5 L/yr |
Samsung
OPPO
LG Electronics
HARMAN