Filter interviews by
DHCP stands for Dynamic Host Configuration Protocol, used to automatically assign IP addresses to devices on a network.
Automatically assigns IP addresses to devices on a network
Helps in managing and organizing IP addresses efficiently
Reduces the need for manual configuration
Prevents IP address conflicts
Example: When a device connects to a network, DHCP assigns it an IP address from a pool of available addresses
Honesty in resumes builds trust; showcase skills and eagerness to learn during technical interviews.
Be truthful about your skills; exaggeration can lead to issues later.
Highlight relevant projects; for example, discuss a coding project you completed.
Express enthusiasm; share what excites you about the role or company.
Demonstrate willingness to learn; mention online courses or certifications you've pursued.
Understanding technology is crucial for innovation, efficiency, and problem-solving in various fields.
Technology enhances communication; for example, social media platforms connect people globally.
Automation improves efficiency; consider how robots in manufacturing speed up production.
Data analytics drives decision-making; businesses use tools like Google Analytics to understand customer behavior.
Artificial Intell...
I approach problems systematically, breaking them down into manageable parts and analyzing each component for effective solutions.
Identify the problem clearly: For example, if a project is behind schedule, determine the specific reasons for the delay.
Gather relevant information: Research similar cases or consult with team members to understand different perspectives.
Break the problem into smaller parts: If facing ...
AI stands for Artificial Intelligence, it is the simulation of human intelligence processes by machines.
AI is used in various applications such as virtual assistants (e.g. Siri, Alexa), recommendation systems (e.g. Netflix, Amazon), autonomous vehicles, and facial recognition technology.
AI can be applied in healthcare for tasks like disease diagnosis, personalized treatment plans, and drug discovery.
AI is also use...
Design a smart home system with defined network layer process
Implement a central hub to control all smart devices in the home
Utilize a secure network protocol like Zigbee or Z-Wave for communication between devices
Segment the network to separate IoT devices from personal devices for security
Use firewalls and encryption to protect data transmitted between devices
Implement network monitoring tools to detect and prev...
The point where a Y shaped linked list disects is the node where the two branches merge into a single path.
Traverse both branches of the Y shaped linked list and store the nodes in two separate lists.
Compare the two lists to find the common node where they merge.
The common node is the point where the Y shaped linked list disects.
A Technical Consultant must analyze client needs and provide tailored solutions effectively.
Understand client requirements through detailed discussions.
Analyze existing systems and identify areas for improvement.
Propose technology solutions that align with business goals.
Provide training and support to ensure smooth implementation.
Example: Implementing a CRM system to enhance customer interactions.
LRU cache is a data structure that stores the most recently used items, discarding the least recently used items when full.
Use a doubly linked list to keep track of the order of items based on their usage.
Use a hashmap to quickly access items in the cache.
When a new item is accessed, move it to the front of the linked list and update the hashmap.
When the cache is full, remove the least recently used item from the ...
Merge Sort is a divide-and-conquer algorithm that sorts an array by recursively splitting and merging sorted subarrays.
1. Divide the array into two halves until each subarray contains a single element.
2. Merge the subarrays back together in sorted order.
3. The merging process involves comparing the smallest elements of each subarray.
4. Example: For array [38, 27, 43, 3, 9, 82, 10], it splits to [38, 27, 43] and [3...
I appeared for an interview in Apr 2025, where I was asked the following questions.
Inheritance in Java enables code reusability and establishes class hierarchies.
Single Inheritance: Class Dog inherits from class Animal.
Multilevel Inheritance: Class Puppy inherits from Dog, which inherits from Animal.
Hierarchical Inheritance: Classes Dog and Cat both inherit from Animal.
Multiple Inheritance (through interfaces): Class implements interfaces Runnable and Comparable.
Hybrid Inheritance: A class inherits f...
Fifty multiple-choice questions on C programming, some networking topics, and role-related inquiries.
Interview experience was easy, but failure in TR raises questions about performance and preparation.
Review your internship and projects thoroughly; be prepared to discuss specific challenges and solutions.
Practice common technical questions, especially in backend and frontend integration.
Brush up on computer networks; ensure you understand key concepts and can explain them clearly.
SQL queries should be practiced; know ...
I applied via Job Portal and was interviewed in Dec 2024. There were 4 interview rounds.
Topics - mcq of algorithms, networking, dbms
I have a diverse background in project management and technical skills, enhancing my ability to contribute effectively as an apprentice.
Managed a team project in college, leading to a successful presentation that received top marks.
Completed an internship where I developed a web application, improving my coding skills and understanding of user experience.
Participated in workshops on communication and teamwork, which he...
I approach problems systematically, breaking them down into manageable parts and analyzing each component for effective solutions.
Identify the problem clearly: For example, if a project is behind schedule, determine the specific reasons for the delay.
Gather relevant information: Research similar cases or consult with team members to understand different perspectives.
Break the problem into smaller parts: If facing a com...
It is a very Easy Aptitude test, with only general questions
I appeared for an interview in Jan 2025.
I appeared for an interview in Aug 2024.
Online assessments consisting of Linked list , stacks , string manipulations with medium difficulty for string manipulation and easy traversal for linked lists.
Rate limiter code implementation in Python
Use a dictionary to store the timestamps of each request
Check the dictionary to see if the request should be allowed based on the rate limit
Update the dictionary with the current timestamp for each request
Check code logic for limitations
Review code for potential edge cases
Test code with different inputs to identify any issues
Consider scalability and performance implications of code
Ensure error handling is robust and comprehensive
I have experience working on full pipeline from code integration to deployment with security checks. Used Flask and other Python libraries for request and response handling.
Used Git for version control and continuous integration tools like Jenkins for automated builds
Utilized Docker for containerization and Kubernetes for orchestration
Implemented security checks using tools like SonarQube and OWASP ZAP
Used Flask for bu...
Write a code for Fibonacci series?
AWS is a cloud computing platform that offers a wide range of services for storage, computing, networking, databases, and more.
AWS stands for Amazon Web Services
I deployed my project on AWS using services like EC2 for virtual servers, S3 for storage, and RDS for databases
I used AWS Elastic Beanstalk for easy deployment and scaling of my application
I configured security groups and IAM roles to ensure secure access to my...
I applied via Instagram and was interviewed in Jul 2024. There were 3 interview rounds.
Honesty in resumes builds trust; showcase skills and eagerness to learn during technical interviews.
Be truthful about your skills; exaggeration can lead to issues later.
Highlight relevant projects; for example, discuss a coding project you completed.
Express enthusiasm; share what excites you about the role or company.
Demonstrate willingness to learn; mention online courses or certifications you've pursued.
Understanding technology is crucial for innovation, efficiency, and problem-solving in various fields.
Technology enhances communication; for example, social media platforms connect people globally.
Automation improves efficiency; consider how robots in manufacturing speed up production.
Data analytics drives decision-making; businesses use tools like Google Analytics to understand customer behavior.
Artificial Intelligenc...
I am a highly motivated and detail-oriented individual with a strong background in project management and team leadership.
Experienced in project management and team leadership
Detail-oriented and highly motivated
Strong communication and interpersonal skills
I appeared for an interview in Aug 2024.
Code-with-cisco having coding questions and mcq
Different scheduling algorithms in OS determine how tasks are prioritized and executed.
First-Come, First-Served (FCFS)
Shortest Job Next (SJN)
Round Robin (RR)
Priority Scheduling
Multi-Level Queue Scheduling
Contact dictionary can be implemented using hash table for fast lookups with O(1) time complexity.
Use a hash table to store contacts with keys as names and values as contact information.
Example: { 'John Doe': '555-1234', 'Jane Smith': '555-5678' }
Time complexity for searching, inserting, and deleting contacts is O(1) with a hash table.
Cisco is a multinational technology conglomerate known for networking hardware, software, and services.
Cisco is a leading provider of networking equipment and solutions.
They offer a wide range of products including routers, switches, and security devices.
Cisco also provides software solutions for network management and security.
The company offers services such as consulting, technical support, and training.
Cisco is kno...
Top trending discussions
Some of the top questions asked at the Cisco interview -
The duration of Cisco interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 287 interview experiences
Difficulty level
Duration
Bangalore / Bengaluru
12-18 Yrs
Not Disclosed
Software Engineer
2.9k
salaries
| ₹15.2 L/yr - ₹43 L/yr |
Technical Consulting Engineer
686
salaries
| ₹9.4 L/yr - ₹28.2 L/yr |
Senior Software Engineer
683
salaries
| ₹24.6 L/yr - ₹45 L/yr |
Network Engineer
400
salaries
| ₹6 L/yr - ₹14 L/yr |
Network Consulting Engineer
343
salaries
| ₹13.5 L/yr - ₹32.5 L/yr |
Microsoft Corporation
Sterlite Technologies
Nokia Networks