Open In App

Cisco Interview | Set 4

Last Updated : 07 Mar, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

Cisco Interview Process: 

Round 1: 
50 MCQs 
Duration: 1 hr 
20 – Math Aptitude. 30 – Technical 
Technical part included questions from Computer organization, Some problems from OS(finding logical address), Networks (problem on finding transmission latency), 8085 Microprocessor, 2-3 C++ (finding output/error), MOSFET, Direct Memory Access, etc. 
[ I don’t remember any question exactly. But the question paper was very tough!! I did the math well. But I wasn’t sure of most answers in the technical part. Never expected to get selected! ] 

Round 2: 
Face to face interview- Technical 
Duration: 1 hr 
There were questions from OS, Data structures, Aptitude, Networks, and some C questions. 
Some questions that I still remember were: 
 

  1. Given a sorted array a[] find the pairs of number that add up to x. 
    For eg: a[]={1,2,4,5,8,15,18,22} x=20 
    Output: (2,18) , (5,15) 
     
  2. Given unsigned char c=1100 0010; (Note that it’s a variable ; not an array.) U need to reverse this and and return the result. 
    Answer: 0100 0011 (Stored in a variable. No arrays have to be used.) 
     
  3. How will you set a bit in a number? 
    Eg. int i=1110 0001. Set 6th bit. 
    Output: 1110 0101 
     
  4. Given a tree (not a BST), pointers to any 2 nodes in the tree, how will you find their least common ancestor? 

     

ciscointerview

  1. In the above diagram, least common ancestor of the nodes in 4 and 5 is 2. For the nodes 2 and 3, 1 is the LCA. 
    For Eg: You will be given the pointers to the nodes whose LCA is to be determined.      You need return the address of the LCA node. 
    Each node has the following structure:
       struct node
{
int data;
struct node* left,*right;
struct node* parent; // Pointer to the parent node
};

 

  1. What is the difference between logical and physical addresses? 
     
  2. Some questions related to web designing. (As I had mentioned it in my areas of interest.) 
     
  3. What happens in the background when you type the URL www.google.com? You need to answer it with respect to the 7 layers of OSI architecture. 

     

  4. Given an n x n grid, 
    Say n=3 

     

ciscointerview2

You are standing in the left bottom corner. You need to reach the destination in the top right corner. You can move either in upward or east direction (as specified in the diagram). In how many possible combinations can you reach there? Your answer should be generic to any value of n. 
[I did the technical round really well and the interviewer was happy with my performance.?] 

Round 2: 
Partial HR, Partial Technical 
Duration: 45 minutes 

Questions were mostly about my areas of interest, projects. As I kept explaining him about my projects he asked me to write some code snippets for those. And many questions were from OS, Networks like: 
 

  1. When does a process create a child process? 
     
  2. What happens in the background when fork() / pthread system call is used? 
     
  3. What are the different IPC mechanisms? 
     
  4. How does a pipe work? What happens when pipe symbol ‘|’ is used in command line? 
     
  5. What is compaction and what are its disadvantages? 
     
  6. What are the steps in establishing socket connection in client & server side?

He asked me how much I like network programming and whether I could do it in Linux. 
Some questions that were purely HR were:  

  1. What are the 3 most valuable things you have learnt in your engineering college? 
     
  2. How will you convince your team member to accept your idea/suggestion? 
     
  3. What will you do if your team member always conflicts your ideas and reports you to the manager? 
     
  4. What kind of job do you wish for? 
     
  5. What will make you quit a job? 
     
  6. You prefer being in the Technical / Managerial side? 
     
  7. Other possible questions from my resume (Responsibilities undertaken, Achievements)

Round 3: 
It was a complete HR. 
Duration: 50 minutes 
Questions were about me, my family, areas of interests, extra-curricular activities, other interests, projects. He was talking about Cisco for about 20 minutes. 
That was all! 

On the whole, clearing the written test was the toughest part. Technical – if you are really good at data structures and basics of networking, OS – it’s easy to crack it ! 

I got my results by around 1:30 midnight! Hired 😀 

Thank You sooo much GeeksforGeeks. 
Without you this would not have been possible!! 

 
 


Similar Reads

Cisco Interview Experience of Cisco Ideathon for Consulting Engineer 2022
My Cisco Ideation 2022 Journey Cisco Ideathon is a flagship hiring program by Cisco Systems to hire final year students from NetAcad colleges across India. This year's (2022) Ideathon consisted of 3 rounds. Preliminary and Competency QuizPPT Submission RoundInterview ( Technical + managerial + HR) Preliminary and Competency Quiz (Knock out round):
6 min read
Cisco Interview Experience of Cisco Ideathon for Advanced Networking 2023
Cisco Ideathon for Advanced Networking 2023: Unlocking the Pattern of Exam basically Round 1 Introduction: Cisco Ideathon serves as a gateway for final-year students to enter the esteemed Cisco company. The Ideathon is conducted to identify talented individuals with a passion for advanced networking. The initial round, known as Round 1, comprises m
3 min read
Cisco Interview Experience G4 (Code with Cisco) 2023
Status: New grad, B. Tech. CSE, Tier 3 Prior Experience: 0 years Online Assessment [28 June 2023] (1 hr):This was a team event, and each team contained 3 participants. Coding Questions:The first problem was similar to https://codeforces.com/problemset/problem/1132/F.The second problem was similar to https://cses.fi/problemset/task/1097.The third pr
3 min read
Cisco Interview Experience | Set 18 (Campus Recruitment)
Round-1 The first round comprised of 50 MCQ questions including aptitude,logical, C output questions and technical portions(Test Duration: 1 hour) :- Quantitative aptitude and Logicalpart was much more predominant,the questions were more intuitive and not typical paper pen/formula based.They were not very difficult but were very tricky. Suggestion:
4 min read
Cisco Interview experience | Set 21 (Off-Campus)
I got a call from Cisco Systems, Bangalore for Software Engineer role. Total rounds: Hackerrank Test+ 3(Tech) + 1 (Managerial) Hackerrank test is pretty standard Linked List, arrays, trees. Round 1: Lot of questions from the resume, implement IPC on threads, Linked List questions, various IPCs, implement mutex locks. Round 2: Networking questions,
1 min read
CISCO Interview Experience | Set 22
I sat for the CISCO on-campus Placements. Round 1 This was an online test conducted on the Hacker-Rank platform. It consisted of 50 MCQ questions and 60 minutes was the time allotted for the same. There was no negative marking for any question. The questions were asked on aptitude as well as there were a few questions on detecting the output that t
10 min read
Cisco Interview | Set 1
The interview process consisted of 4 rounds. Round 1: APTITUDE + C + ELECTRONICS MCQs (No negative marking) The aptitude questions had a good mix of probability, speed and time, clocks, numbers, mixtures, time and work etc. Tip: For clearing aptitude rounds, make sure you have great speed in solving quantitative aptitude. This is what differentiate
6 min read
Cisco Interview | Set 2
I recently got interviewed for a position in Cisco. The organization came to our college as part of their University recruitment program. The following is my interview experience. Hope this would help you !! Round 1 This was aptitude + technical round. 20 question from aptitude and 30 questions technical. We were given 60 minutes to solve the quest
5 min read
Cisco Interview | Set 3
I recently got interviewed for a position in Cisco. The organization came to our college for on-campus recruitment. First round: The first round had 30 technical and 20 easy aptitude questions to be answered in an hour. It was intended to test how fast you can solve problems. Majority of the technical questions were from Electronics, Computer archi
2 min read
Cisco Interview | Set 5
Interview consists of one written and two technical rounds followed by HR round. Written Test : Total 50 questions Aptitude : 20 Technical : 30 cutoff : 29 marks. aptitude - around 9,10, Technical - 22 Aptitude Questions : [Mainly covered on topics like basic probability question, functions, propositional logic, finding number with help of statemen
3 min read
Practice Tags :