Filter interviews by
I applied via Referral and was interviewed in Aug 2023. There was 1 interview round.
I have a Bachelor's degree in Business Administration with a focus on finance and accounting.
Bachelor's degree in Business Administration
Focus on finance and accounting
I applied via Referral and was interviewed before May 2023. There were 2 interview rounds.
SNMP tool is a protocol used to monitor and manage network devices remotely.
SNMP stands for Simple Network Management Protocol
It allows network administrators to manage network performance, find and solve network problems, and plan for network growth
SNMP tools can be used to monitor network devices such as routers, switches, servers, printers, and more
Examples of SNMP tools include SolarWinds, Nagios, and PRTG
I applied via Shine and was interviewed in Sep 2022. There were 3 interview rounds.
I have 5 years of experience in the network field.
I have worked with various network devices such as routers, switches, firewalls, and load balancers.
I have experience in designing and implementing network solutions for small to large-scale organizations.
I have knowledge of network protocols such as TCP/IP, OSPF, BGP, and VLANs.
I have experience in troubleshooting network issues and providing solutions to ensure networ...
I am open to relocation for the right opportunity.
I am willing to consider opportunities in various locations
I am open to discussing relocation packages
My priority is finding the right fit for my skills and career goals
I use various tools for monitoring such as Nagios, Zabbix, PRTG, SolarWinds, and Wireshark.
Nagios for network, server, and application monitoring
Zabbix for real-time monitoring and alerting
PRTG for network monitoring and bandwidth analysis
SolarWinds for network performance monitoring and troubleshooting
Wireshark for network protocol analysis
Subnetting is the process of dividing a network into smaller subnetworks.
It helps in efficient utilization of IP addresses
It improves network performance and security
It allows for better management and organization of network resources
Example: A company with multiple departments can use subnetting to create separate networks for each department
OSPF is a link-state routing protocol used to exchange routing information within a single autonomous system.
OSPF uses Dijkstra's algorithm to calculate the shortest path to a destination network.
It supports VLSM and CIDR.
It uses multicast address 224.0.0.5 to send updates to all OSPF routers.
It has a hierarchical design with backbone area (Area 0) and other areas connected to it.
It uses cost as a metric to determine t
I applied via Walk-in and was interviewed in Mar 2022. There were 2 interview rounds.
The question is asking about the routers that are being configured.
The question is asking for specific router configurations.
Provide details about the routers that have been configured.
Examples: Cisco ISR 4000 series, Juniper MX series, etc.
Thrabshoot accessories are tools and equipment used in the field of network engineering.
Thrabshoot accessories include cable testers, crimping tools, punch down tools, and cable management solutions.
These accessories are used for troubleshooting network connectivity issues, installing and terminating cables, and organizing cable infrastructure.
Examples of Thrabshoot accessories are cable testers like Fluke Networks Cab...
Intech Online interview questions for popular designations
Top trending discussions
PreOrder traversal without recursion is done using a stack to simulate the function call stack.
Create an empty stack and push the root node onto it.
While the stack is not empty, pop a node from the stack and process it.
Push the right child of the popped node onto the stack if it exists.
Push the left child of the popped node onto the stack if it exists.
Yes
Create an empty binary search tree (BST)
Loop over the unsorted array
For each element, insert it into the BST using the appropriate insertion logic
Repeat until all elements are inserted
The resulting BST will be built from the unsorted array
The question asks to find two elements in an array whose sum is equal to a given number.
Iterate through the array and for each element, check if the difference between the given number and the current element exists in the array.
Use a hash set to store the elements as you iterate through the array for efficient lookup.
Return the pair of elements if found, otherwise return a message indicating no such pair exists.
There are two types of triggers: DML triggers and DDL triggers.
DML triggers are fired in response to DML (Data Manipulation Language) statements like INSERT, UPDATE, DELETE.
DDL triggers are fired in response to DDL (Data Definition Language) statements like CREATE, ALTER, DROP.
Examples: A DML trigger can be used to log changes made to a table, while a DDL trigger can be used to enforce certain rules when a table is alt
Yes, triggers can be used with select statements in SQL.
Triggers are database objects that are automatically executed in response to certain events, such as insert, update, or delete operations.
While triggers are commonly used with insert, update, and delete statements, they can also be used with select statements.
Using triggers with select statements allows you to perform additional actions or validations before or af...
Indexing in MySQL improves query performance. There are several types of indexing in MySQL.
Indexes are used to quickly locate data without scanning the entire table.
Types of indexing in MySQL include B-tree, hash, full-text, and spatial indexes.
B-tree indexes are the most common and suitable for most use cases.
Hash indexes are used for exact match lookups.
Full-text indexes are used for searching text-based data efficie...
Engines in MySQL are the underlying software components that handle storage, indexing, and querying of data.
MySQL supports multiple storage engines, each with its own strengths and features.
Some commonly used engines in MySQL are InnoDB, MyISAM, and Memory.
InnoDB is the default engine in MySQL and provides support for transactions and foreign keys.
MyISAM is known for its simplicity and speed but lacks transaction suppo...
Yes, a constructor can be private.
A private constructor can only be accessed within the class itself.
It is often used in singleton design pattern to restrict object creation.
Private constructors are also useful for utility classes that only contain static methods.
I am a Senior Associate in the field of finance, specializing in investment management.
I have expertise in analyzing financial data and making investment recommendations.
I work closely with clients to understand their financial goals and risk tolerance.
I monitor market trends and economic indicators to make informed investment decisions.
I have experience in portfolio management and asset allocation.
I may hold certifica...
My ambition is to become a respected leader in my field, making a positive impact through innovative solutions and mentorship.
To continuously learn and grow in my role
To lead and inspire a team towards success
To contribute to the advancement of the organization and industry
To mentor and guide junior colleagues in their professional development
I appeared for an interview before Dec 2020.
Round duration - 60 Minutes
Round difficulty - Medium
This round was purely based on Data Structures and Algorithms . One has to be fairly comfortable in solving Algorithmic problems to pass this round . Both the questions asked were quite common and luckily I had already prepared them from CodeStudio and LeetCode.
Given a Binary Tree with 'N' nodes, where each node holds an integer value, your task is to compute the In-Order, Pre-Order, and Post-Order traversals of the binar...
Compute the In-Order, Pre-Order, and Post-Order traversals of a Binary Tree given in level-order format.
Implement functions to perform In-Order, Pre-Order, and Post-Order traversals of a Binary Tree.
Use level-order input to construct the Binary Tree.
Traverse the Binary Tree recursively to generate the required traversals.
Ensure proper handling of null nodes represented by -1 in the input.
Return the three traversals as
Given a Singly Linked List of integers, your task is to reverse the Linked List by altering the links between the nodes.
The first line of input is an intege...
Reverse a singly linked list by altering the links between nodes.
Iterate through the linked list and reverse the links between nodes
Use three pointers to keep track of the current, previous, and next nodes
Update the links between nodes to reverse the list
Return the head of the reversed linked list
Round duration - 45 Minutes
Round difficulty - Medium
This round basically tested some concepts from Data Structures and File Manipulation .
Given two arrays A
and B
with sizes N
and M
respectively, both sorted in non-decreasing order, determine their intersection.
The intersection of two arrays in...
The problem involves finding the intersection of two sorted arrays efficiently.
Use two pointers to iterate through both arrays simultaneously.
Compare elements at the pointers and move the pointers accordingly.
Handle cases where elements are equal and update the intersection array.
Return the intersection array as the result.
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.
I applied via Referral and was interviewed before May 2020. There was 1 interview round.
To understand the supply of restaurants in a particular area of a city, we can use various methods.
Collect data from online directories like Yelp, Zomato, etc.
Conduct surveys to gather information about the number of restaurants in the area.
Analyze the population density and demographics of the area to estimate the demand for restaurants.
Check the number of restaurant permits issued by the local government.
Use GIS mapp...
I applied via Referral and was interviewed in Oct 2019. There was 1 interview round.
I have 5 years of experience managing warehouse operations, including inventory control, shipping/receiving, and staff supervision.
Implemented efficient inventory management system to reduce errors and improve accuracy
Led team in achieving 99% on-time shipping rate by optimizing workflow processes
Trained staff on safety protocols and equipment operation to ensure compliance with OSHA regulations
based on 3 interviews
Interview experience
based on 49 reviews
Rating in categories
Network Engineer
30
salaries
| ₹1.5 L/yr - ₹4.2 L/yr |
Technical Support Engineer
22
salaries
| ₹1.1 L/yr - ₹3.6 L/yr |
NOC Engineer
16
salaries
| ₹1.4 L/yr - ₹5.7 L/yr |
Executive Accountant
11
salaries
| ₹1.5 L/yr - ₹2.2 L/yr |
Technical Support Executive
10
salaries
| ₹1 L/yr - ₹2.5 L/yr |
Swiggy
BigBasket
Udaan
CARS24