Upload Button Icon Add office photos

Filter interviews by

Cisco Networking Academy Interview Questions, Process, and Tips

Updated 16 Sep 2021

Top Cisco Networking Academy Interview Questions and Answers

View all 11 questions

Cisco Networking Academy Interview Experiences

Popular Designations

3 interviews found

Software Engineer Interview Questions & Answers

user image CodingNinjas

posted on 16 Sep 2021

I was interviewed in Jan 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 50 minutes
Round difficulty - Medium

Two panellist were there, one was asking question based upon CN + OS + DBMS, one was asking question based upon DS + Algo.

  • Q1. Technical Questions

    1. Working of PING and TRACEROUTE command 
    2. OSI layers and it’s responsibility 
    3. Indexing in database
    4. B/B+ tree used in index, asked me to explain node structure of both
    5.Q...

  • Q2. Insert Into A Binary Search Tree

    You have been given a root node of the binary search tree and a positive integer value. You need to perform an insertion operation i.e. inserting a new node with the given ...

  • Ans. Recursive Approach

    The rules of the binary search tree say if any node value is less than the root node value, then this node must lie on the left subtree of the root else will lie on the right subtree. We can think of a recursive solution by breaking the task into a subtask, as any node can be either on the left subtree or right subtree of the root node. In BST we can find which subtree (left/right) to follow next by c...

  • Answered by CodingNinjas
  • Q3. LCA In A BST

    You are given a binary search tree of integers with N nodes. You are also given references to two nodes P and Q from this BST.

    Your task is to find the lowest common ancestor(LCA) of these t...

  • Ans. Depth - First Traversal

    We will traverse the BST in a depth-first manner. The moment we encounter either of the nodes P or Q, we will return some boolean flag. The least common ancestor would then be the node for which both the subtree recursions return a ‘True’  flag value.   

     

    The algorithm will be -

    • We will start traversing a BST from the root node in a recursive manner.
    • Let the current node in each...
  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Medium

  • Q1. General Questions

    1. Asked me about my work experience and project I worked on
    2. Asked me about most difficult challenge I faced and how I tackled it
    3. Implement multiplication without using multiplication ...

Round 3 - HR 

(1 Question)

Round duration - 15 Minutes
Round difficulty - Easy

  • Q1. Basic HR Questions

    What are your strengths and weakness?

    What do you expect from this organization?

    Where do you see yourself in 5 years?

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from NIT Calicut. I applied for the job as Software Engineer in BengaluruEligibility criteriaAbove 7 CGPACisco Networking Academy interview preparation:Topics to prepare for the interview - Data Structures, Operating System, Database, Puzzles, OOPSTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 350 coding question
Tip 2 : Having recent project
Tip 3 : Good knowledge of OS,DBMS

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (170)

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

The test was scheduled on 1st November 2020 at 6 pm . 
Platform: Hackerrank
Number of questions : 2 coding and 25 MCQ
Language allowed for coding ques : Java ( Cisco only allows java )
Difficulty level : Moderate - Hard
Tip : Focus on one coding ques and do maximum MCQ's , it will be enough.

  • Q1. Aptitude Question

    Mr. X runs a neet of 10 cabs at a renowned cab company. The cab company has two types of tlme based slots for differential payment Peak hours (0800-1000 , 1600-1800) payment ls X and off p...

  • Q2. Snake and Ladder

    You have been given a Snake and Ladder Board with 'N' rows and 'N' columns with the numbers written from 1 to (N*N) starting from the bottom left of the board, and alternat...

  • Ans. BFS

    We will use Breadth-First Search to find the shortest path from cellNumber 1 to cellNumber N*N.

    1. We will maintain a queue of cellNumber where the front of the queue will always contain a cell which can be reached by minimum dice throw from starting cell (cellNumber = 1).
    2. Create a minDiceThrow array of size N*N initialise it with the maximum value (INT_MAX)
    3. Start with pushing cellNumber 1 and updating minDiceThrow[1] = 0...
  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 80 Minutes
Round difficulty - Medium

The technical interview was scheduled on webex teams at 10 am on 11th November 2020.
There were 2 panelists.
Interview went on for around 80 mins where they asked me questions on resume , projects , internships , Networking and Dsa .
Networking was asked because i mentioned a project on my resume that uses Socket.io .
Most of the time of interview was taken up by Dsa question.

  • Q1. Corporate Flight Bookings

    You have been given an array/list “BOOKINGS” of booking details of ‘N’ flights from 1 to ‘N’. Each booking detail contains three positive integers [first, last, seats] which repre...

  • Ans. Brute Force

    Approach: The basic idea for this approach is to traverse through each booking detail and then iterate through the range of flights for updating the count of reserved seats for each flight.

     

    Consider the following steps:

    1. Create an empty array/list 'ANSWER' to store the total number of seats reserved for ith flight (0-based indexing).
    2. Now, traverse through each booking detail.
      • Let [START, END, SEATS] be the ...
  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Maharaja Agrasen Institute Of Technology. Eligibility criteria8 CgpaCisco Networking Academy interview preparation:Topics to prepare for the interview - Data structure and algorithms, Operating systems, Databases , OOPS , NetworkingTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Have short notes to prepare prior to interview, because it might happen that you know the answer but can't frame it in interview due to pressure , so short sticky notes before interview will give help in fast revision.
Tip 2 : Practice as many Dsa questions as possible, but also keep on revisiting them so that famous questions are always on your tips .
Tip 3 : Maintain 2-3 page script for every project on your resume, which will tell which points of project to cover when interviewer asks to explain it.

Application resume tips for other job seekers

Tip 1 : Choose resume template and font carefully, according to the amount of content you have , minimizing the white spaces and also highlighting your achievements and keywords.
Tip 2 : While adding the project, highlight the technologies used and also add links of github or live app if possible. Also add achievements of the project for example , If you made an android project , you can mention number of organic downloads .

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

Software Developer Interview Questions & Answers

user image CodingNinjas

posted on 16 Sep 2021

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

This round consist of 2 coding questions and they were of good level based on strings and dynamic programming.

  • Q1. Longest Unique Substring

    Return the length of the longest substring consisting of unique characters.

    eg: abcabcdb ------> 4 4 corresponds to abcd 

    aaaaaxxxxxxwyzzzzzxxxxx ------> 4 4 corresponds to...

  • Ans. 
    • I solved this question using a sliding window concept and taken a map while traversing the string to check if any repeated characters appear or not.
  • Answered by CodingNinjas
  • Q2.  Arithmetic Operators

     Given an arithmetic expression containing '+', '-', '*' operators, generate a string by placing parenthesis in the given expression which will return the the maximum possible val...

  • Ans. 

    I solved this question using recursion by putting bracket at all possible places and evaluate the answer through recursion and found the maximum out of them.

  • Answered by CodingNinjas
Round 2 - Face to Face 

(3 Questions)

Round duration - 20 minutes
Round difficulty - Easy

  • Q1. Left View of Binary Tree

    Given a Binary Tree, print left view of it. The left view of a Binary Tree is set of nodes visible when the tree is visited from the left side.

  • Ans. 

    I did level order traversal and then printed the first element of each level.

  • Answered by CodingNinjas
  • Q2. Minimum From Bag

    Suggest the best way to get the minimum (at any point of time) from a bag in which numbers are being inserted and removed continuously.

  • Ans. 
    • I answered, "using a heap" as log N is the complexity to add or remove from the heap.

      

  • Answered by CodingNinjas
  • Q3. Kruskal's Algorithm

    Given an undirected graph, find the Minimum Spanning Tree. 

  • Ans. 

    I explained Kruskal’s algorithm to find the Minimum spanning tree with an example of a graph. He was satisfied by my approach and gave a smile through which I got the idea that I will be selected for the company.

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Electrical & Electronics Engineering from NIT Calicut. I applied for the job as SDE - 1 in KozhikodeEligibility criteria7.5Cisco Networking Academy interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Machine Learning, Basics of Database Management System and Operating System, Aptitude.Time required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Try to do as much as Data structures related questions as practice made a man perfect. If you have already done similar types of questions then you will get a solution approach very fastly during the interview. Also, Coding ninjas have a big hand in making my selection. 

Application resume tips for other job seekers

Keep resume short and up to the point and try to keep it on a single page.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Sarvajanik College of Engineering and Technology, Surat and was interviewed in Jun 2023. There were 8 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Prepare for the interview properly

Round 3 - Coding Test 

Coding should be well prepared

Round 4 - Group Discussion 

Don't stay silent atleast should speak something

Round 5 - HR 

(1 Question)

  • Q1. Be confident and maintain body language
Round 6 - One-on-one 

(1 Question)

  • Q1. Basic questions on the relevant subject
Round 7 - Technical 

(1 Question)

  • Q1. Basic questions on the relevant subject
Round 8 - Case Study 

Know the recent technology in the market

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Internshala and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. About myself and basic questions
Round 3 - HR 

(1 Question)

  • Q1. Final call confirmation
Round 1 - Aptitude Test 

(2 Questions)

  • Q1. Basic question from the subject
  • Q2. Some tough questions
Round 2 - Technical 

(2 Questions)

  • Q1. Question related to subject
  • Q2. Some exception from chemistry

Interview Preparation Tips

Interview preparation tips for other job seekers - All the very best for the future may godbless you prepare you subject of expertise very well

Interview Questionnaire 

4 Questions

  • Q1. What are the HSE Management Systems?
  • Ans. 

    HSE Management Systems are frameworks designed to manage health, safety, and environmental risks in the workplace.

    • HSE Management Systems are designed to identify, assess, and control risks in the workplace.

    • They involve policies, procedures, and processes to ensure compliance with regulations and standards.

    • Examples include ISO 45001, OHSAS 18001, and ANSI/AIHA Z10.

    • HSE Management Systems require ongoing monitoring, evalu...

  • Answered by AI
  • Q2. What is the role of HSE?
  • Ans. 

    HSE stands for Health, Safety, and Environment. The role of HSE is to ensure that the workplace is safe and healthy for employees and the environment.

    • Develop and implement safety policies and procedures

    • Conduct risk assessments and hazard analyses

    • Provide safety training to employees

    • Ensure compliance with local, state, and federal regulations

    • Investigate accidents and incidents

    • Promote a culture of safety and environmental...

  • Answered by AI
  • Q3. How you will manage HSE, while work pressure takes front seat?
  • Ans. 

    I will prioritize HSE and ensure that work pressure does not compromise safety measures.

    • I will establish clear HSE policies and procedures that are communicated to all employees.

    • I will conduct regular safety audits and inspections to identify potential hazards and risks.

    • I will provide adequate training and resources to employees to ensure they are equipped to work safely.

    • I will encourage a culture of safety by promotin...

  • Answered by AI
  • Q4. HSE won't be practically given priority, compare with execution. How you will manage?
  • Ans. 

    HSE and execution are equally important for successful operations.

    • Ensure HSE policies are integrated into project plans

    • Provide regular training and awareness sessions for employees

    • Implement a reward system for employees who prioritize HSE

    • Conduct regular audits to ensure compliance with HSE regulations

    • Communicate the importance of HSE to all stakeholders

    • Provide necessary resources for HSE implementation

    • Ensure HSE is inc...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do active and be proactive. You will be cornered. But always to be center of attraction.

I applied via AmbitionBox and was interviewed in Dec 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(2 Questions)

  • Q1. Talk about your self Compeny details and etc
  • Q2. What is SDLC what is bug life cycle
  • Ans. 

    SDLC stands for Software Development Life Cycle. It is a process followed by software development teams to design, develop and test high-quality software.

    • SDLC is a framework that consists of various phases such as planning, analysis, design, implementation, testing, and maintenance.

    • It helps in delivering high-quality software that meets customer requirements and is delivered on time and within budget.

    • Bug life cycle is ...

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. Why should we hire you?
  • Q2. What are your strengths and weaknesses?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good growth in sofrware compenys and good life style

Skills evaluated in this interview

Student recruitment Advisor (Spanish Language) Interview Questions & Answers

GUS Education India user image Anonymous

posted on 13 Nov 2021

I applied via Naukri.com and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. How I will work if I don’t have experience in Target based sales ? Because I was from Tourism sector background.
  • Q2. They asked me about my patience level ?how will I control my workloads?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on every word what you are going to say.

Interview Questionnaire 

4 Questions

  • Q1. What is your weakness and your strength?
  • Q2. You are a pure vegetarian and we put you in a situation where you are supposed to eat only non vegetarian dish , One would be a monkey dish and other would be a crocodile dish .Which one you would prefer t...
  • Q3. Please sell anyone of the items displayed on the table , Keep in mind the customer is very busy and aggressive
  • Q4. Share any of the bad exprience in life

Tell us how to improve this page.

Cisco Networking Academy Reviews and Ratings

based on 4 reviews

4.7/5

Rating in categories

4.9

Skill development

5.0

Work-Life balance

2.4

Salary & Benefits

3.8

Job Security

4.4

Company culture

3.5

Promotions/Appraisal

4.4

Work Satisfaction

Explore 4 Reviews and Ratings
Network Engineer
4 salaries
unlock blur

₹1.8 L/yr - ₹5 L/yr

Software Engineer
3 salaries
unlock blur

₹3 L/yr - ₹7.5 L/yr

Business Analyst
3 salaries
unlock blur

₹12 L/yr - ₹20 L/yr

Explore more salaries
Compare Cisco Networking Academy with

Aakash Educational Services

3.5
Compare

Frankfinn Institute of Air Hostess Training

4.0
Compare

NIIT

3.6
Compare

Amity University

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview