Filter interviews by
A router is a networking device that forwards data packets between computer networks.
Routes data packets between different networks
Uses IP addresses to determine where to send data
Acts as a gateway for devices to connect to the internet
RJ45 colour combination refers to the standard color coding used for Ethernet cables.
The standard color coding for RJ45 connectors is: white/orange, orange, white/green, blue, white/blue, green, white/brown, brown.
This color combination is used to ensure consistency and proper connection of Ethernet cables.
For example, a typical RJ45 connector will have the white/orange wire connected to pin 1, the orange wire con...
An IP address is a unique numerical label assigned to each device connected to a computer network.
IP addresses are used to identify and locate devices on a network.
There are two types of IP addresses: IPv4 (e.g. 192.168.1.1) and IPv6 (e.g. 2001:0db8:85a3:0000:0000:8a2e:0370:7334).
IP addresses can be static (manually assigned) or dynamic (assigned by a DHCP server).
Effective communication is crucial for a Help Desk Engineer to resolve issues and assist users efficiently.
Active Listening: I always ensure to listen carefully to users' issues before responding, which helps in understanding their needs better.
Clear Instructions: When guiding users through troubleshooting steps, I use simple language and avoid technical jargon to ensure clarity.
Empathy: I acknowledge users' frust...
Configuration of network involves setting up and managing network devices and services.
Setting up IP addresses for devices
Configuring routers and switches
Implementing firewalls and security protocols
Managing network traffic and bandwidth
Troubleshooting network issues
Effective communication is crucial for a Help Desk Engineer to resolve issues and assist users efficiently.
Active Listening: I always ensure to listen carefully to users' issues before responding, which helps in understanding their needs better.
Clear Instructions: When guiding users through troubleshooting steps, I use simple language and avoid technical jargon to ensure clarity.
Empathy: I acknowledge users' frustratio...
I applied via Company Website and was interviewed in Oct 2023. There were 2 interview rounds.
Configuration of network involves setting up and managing network devices and services.
Setting up IP addresses for devices
Configuring routers and switches
Implementing firewalls and security protocols
Managing network traffic and bandwidth
Troubleshooting network issues
I appeared for an interview before Jul 2024, where I was asked the following questions.
A Local Area Network (LAN) connects computers and devices within a limited area, enabling communication and resource sharing.
Typically covers a small geographic area, like a home, office, or campus.
Uses Ethernet or Wi-Fi technologies for connectivity.
Allows devices to share resources such as printers and files.
Example: A home network connecting computers, smartphones, and smart TVs.
LANs can be wired (using cables) or w...
A VLAN (Virtual Local Area Network) segments a physical network into multiple logical networks for improved management and security.
Improves network performance by reducing broadcast traffic.
Enhances security by isolating sensitive data (e.g., finance department).
Facilitates easier network management and configuration changes.
Allows for better resource allocation and prioritization (e.g., VoIP traffic).
Enables the crea...
A MAC address is a unique identifier assigned to network interfaces for communication on a network.
MAC stands for Media Access Control.
It is a 48-bit address usually represented in hexadecimal format, e.g., 00:1A:2B:3C:4D:5E.
MAC addresses are used in Ethernet and Wi-Fi networks to identify devices.
They are hardcoded into network interface cards (NICs) by manufacturers.
MAC addresses operate at the Data Link Layer (Layer...
I applied via Referral and was interviewed before Oct 2023. There was 1 interview round.
I applied via Campus Placement
I appeared for an interview before May 2024, where I was asked the following questions.
I possess strong network troubleshooting skills and excel in clear communication with guests to resolve their issues effectively.
Proficient in diagnosing network connectivity issues using tools like ping and traceroute.
Experience in configuring routers and switches to optimize network performance.
Ability to explain technical concepts in simple terms to non-technical guests, ensuring they understand the solutions.
Utiliz...
Top trending discussions
posted on 17 Jun 2023
I applied via Naukri.com and was interviewed before Jun 2022. There were 3 interview rounds.
A route reflector in BGP is a device that helps reduce the number of BGP peerings required in a network by reflecting routes to other routers.
Route reflectors help reduce the number of BGP peerings required in a network by allowing a router to reflect routes to other routers without the need for a full mesh of peerings.
They are necessary in large networks with many routers to reduce the complexity and resource usage of...
posted on 24 Feb 2024
I applied via Naukri.com and was interviewed in Jan 2024. There were 2 interview rounds.
posted on 15 Sep 2021
I appeared for an interview before Sep 2020.
Round duration - 135 minutes
Round difficulty - Medium
The test window was open from 2:00 p.m. to 05:30 PM IST on 28th of August 2020.We were also given a chance to take a practice test to know about working of the platform .It was a Proctored Assessment .The test platform was HackerEarth and there were around 28 MCQs, 1 programming question, and 2 SQL queries. MCQs majorly focused on OS, DBMS, C++, OOPS concepts.
Given an array of integers ARR
of length N
and an integer Target
, your task is to return all pairs of elements such that they add up to the Target
.
The first line ...
Find all pairs of elements in an array that add up to a given target.
Iterate through the array and use a hashmap to store the difference between the target and current element.
Check if the current element exists in the hashmap, if so, print the pair.
If no pair is found, print (-1, -1).
Round duration - 50 minutes
Round difficulty - Medium
It was basically a technical interview. It was conducted around 11:00 a.m. on 31st august 2020. There was only 1 person who was interviewing me though I expected a panel. It started off by the question regarding our college and infrastructure of it and what do I like the most about it etc. Later continued by few technical subjective questions and a code along with a basic query. Technical questions regarding data structures like linked list, Array List , HashMap were asked along with concepts like backtracking were also covered. More about technologies related to projects that I have done were asked which is machine learning. the ratings i earned in online judges were also asked about.
Given a 9x9 Sudoku board, your task is to fill the empty slots and return the completed Sudoku solution.
A Sudoku is a grid composed of nine 3x3 smaller grids. The challenge is to fill in the...
Implement a Sudoku solver to fill empty slots in a 9x9 grid with numbers 1-9 satisfying constraints.
Create a recursive function to solve the Sudoku puzzle by trying out different numbers in empty slots.
Use backtracking to backtrack and try a different number if a conflict is encountered.
Ensure each number appears only once per row, column, and 3x3 grid.
Return the completed Sudoku grid as the output.
Determine if a given singly linked list of integers forms a cycle or not.
A cycle in a linked list occurs when a node's next
points back to a previous node in the ...
Detect if a singly linked list forms a cycle by checking if a node's next points back to a previous node.
Traverse the linked list using two pointers, one moving one step at a time and the other moving two steps at a time.
If the two pointers meet at any point, it indicates the presence of a cycle in the linked list.
If one of the pointers reaches the end of the list (null), it means there is no cycle in the linked list.
Round duration - 40 minutes
Round difficulty - Medium
It is more of a Managerial round. This was not confined to any topic or a subject .It took place around 4:15 p.m. on 31st of August ,2020.
Tip 1 : Try to get good grip on basics , never jump into advanced concepts unless you are clear with the basic subject.
Tip 2 : Always have every main concept that is included in your core curriculum ( for a cs student) covered, make sure you
have idea about it and where you can apply it.
Tip 3 : Try to work on and know more about trending or booming technologies.
Tip 4 : Have short term goals when it comes to coding. Consider a topic for once ( like strings , pointers , dp etc.) and try to
cover maximum variety of problems possible in a reasonable period of time.
Tip 5 : Try to search for tricky pseudo codes online and guess the outputs.
Tip 6 : Give mock interviews before hand and also gather information about the company you have applied to.
Tip 1 : Do include only known and worked on concepts in your resume .Do not bluff or exaggerate.
Tip 2 : Our resume needs to show that we are flexible and have not just worked on a single domain. So try to do and add
at least 2 projects to your resume that too of different domains.
Tip 3 : Resume needs to look professional do not include a lot of personal details.
Tip 4 : Career Objective is something that is unique and written on your own and not copied from any website or peers
resume.
Tip 5 : A single page or 1 and a half page of resume would do good. Include certifications of any forefront technologies if possible
posted on 29 Jun 2024
I applied via Referral and was interviewed before Jun 2023. There were 3 interview rounds.
Coding test are just basic Array and linkedList question
based on 5 interview experiences
Difficulty level
Duration
based on 43 reviews
Rating in categories
Help Desk Engineer
125
salaries
| ₹1.6 L/yr - ₹3.5 L/yr |
Network Engineer
119
salaries
| ₹1.8 L/yr - ₹5 L/yr |
Network Support Engineer
86
salaries
| ₹1.6 L/yr - ₹4 L/yr |
IT Helpdesk Engineer
74
salaries
| ₹1.3 L/yr - ₹3.5 L/yr |
Helpdesk Support Engineer
42
salaries
| ₹1.9 L/yr - ₹3.2 L/yr |
Saama Technologies
Jumio
DISYS
Data-Core Systems