Upload Button Icon Add office photos

Cisco

Compare button icon Compare button icon Compare

Filter interviews by

Cisco Electronic Packaging Designer Interview Questions and Answers

Updated 7 Jun 2015

Cisco Electronic Packaging Designer Interview Experiences

1 interview found

Interview Questionnaire 

13 Questions

  • Q1. #define clrscr() 100 main() { clrscr(); printf(?%d?,clrscr()); }
  • Ans. 

    The code snippet defines a macro called clrscr() and then calls it in the main function.

    • The macro clrscr() is defined as 100, so when it is called, it will be replaced with 100.

    • The printf statement will print the value returned by clrscr(), which is 100.

    • The output of the code will be '100'.

  • Answered by AI
  • Q2. A triangle ABC is given, a line DE is paralel to base side and that cuts the triangle. The ratio of area of triangle to the area of trapezium .given DE/BC=3/5
  • Ans. 

    The question asks about the ratio of the area of a triangle to the area of a trapezium formed by a parallel line cutting the triangle.

    • The given line DE is parallel to the base side of triangle ABC.

    • The ratio of DE to BC is 3:5.

    • We need to find the ratio of the area of triangle ABC to the area of the trapezium formed by DE and the base side of the triangle.

  • Answered by AI
  • Q3. Struct s1 { struct { struct {int x;}s2}s3}y; How to access x? ANS: y.s3.s2.x
  • Ans. 

    To access x, use the following syntax: y.s3.s2.x

    • Accessing x requires navigating through the nested structures

    • Start with y, then access s3, followed by s2, and finally x

  • Answered by AI
  • Q4. Given two numbers m and n, write a method to return the first number r that is divisible by both (e.g., the least common multiple). ANS:Define q to be 1. for each prime number p less than m and n: find ...
  • Ans. 

    The method returns the least common multiple (LCM) of two numbers m and n.

    • The method uses prime factorization to find the LCM.

    • It iterates through all prime numbers less than m and n.

    • For each prime number, it finds the largest power of the prime that divides both m and n.

    • The method then multiplies the current LCM by the prime raised to the maximum power.

    • Finally, it returns the computed LCM.

  • Answered by AI
  • Q5. There are set of coins of {50,25,10,5,1} paise in a box.Write a program to find the number of ways a 1 rupee can be created by grouping the paise
  • Ans. 

    The program finds the number of ways to create 1 rupee using different coins.

    • Use a recursive function to iterate through all possible combinations of coins

    • Start with the largest coin and subtract its value from the target amount

    • Repeat the process with the remaining coins until the target amount becomes zero

    • Count the number of successful combinations

  • Answered by AI
  • Q6. ONE PUZZLE THAT I REMEMBERED. At the local model boat club, four friends were talking about their boats. There were a total of eight boats, two in each colour, red, green, blue and yellow. Each friend owne...
  • Q7. Main() { printf(?as?); printf(?hi?); printf(?is ?); } wat will b printed. 10. main() { unsigned short a=-1; unsigned char b=a; printf(?%d %d ?,a,b); } wat is o/p of the program
  • Ans. 

    Answering two programming questions related to printf() function and data types.

    • In the first program, the output will be 'as hi is'.

    • In the second program, the output will be '-1 255'.

    • The first program uses printf() function to print three strings.

    • The second program demonstrates type conversion from unsigned short to unsigned char.

    • The value of -1 in unsigned short is converted to 255 in unsigned char.

  • Answered by AI
  • Q8. Given an array which is alternatively sorted. Find an element in it. e.g. 12,2,16,5,18,32,33,38
  • Ans. 

    An alternatively sorted array has elements in a specific order. Use binary search for efficient element lookup.

    • Identify the pattern: elements are sorted in alternating high-low order.

    • Use binary search to find the target element efficiently.

    • Check both halves of the array based on the middle element's value.

    • Example: In the array [12, 2, 16, 5, 18, 32, 33, 38], to find 18, check the middle element and adjust search accord...

  • Answered by AI
  • Q9. Selective repeat widow size of sender & receiver 1 question
  • Q10. Design an algorithm that, given a list of n elements in an array, finds all the elements that appear more than n/3 times in the list. The algorithm should run in linear time ( n >=0 ) You are expected ...
  • Ans. 

    Algorithm to find elements appearing more than n/3 times in an array in linear time

    • Divide the array into three equal parts

    • Iterate through the array and count the occurrences of each element in each part

    • Check if the count of any element is greater than n/3

    • Return the elements that meet the condition

  • Answered by AI
  • Q11. In a tournament with N teams, where in one team can play only one match per day, develop an algo which schedules the matches in the tournament. Each team shall play with the other team once(same as des...
  • Ans. 

    An algorithm to schedule matches in a tournament with N teams, where each team plays only one match per day.

    • Create a round-robin schedule where each team plays every other team once.

    • Start by assigning each team a number.

    • Generate a schedule by pairing teams based on their numbers.

    • Optimize the schedule by minimizing the number of days required.

    • Consider using a graph-based approach to find the optimal schedule.

  • Answered by AI
  • Q12. Main() { int ret; ret=fork(); ret=fork(); ret=fork(); ret=fork(); if(!ret) printf(
  • Ans. 

    The code snippet demonstrates the use of the fork() function to create multiple child processes.

    • The fork() function is used to create a new process by duplicating the existing process.

    • Each time fork() is called, it creates a new child process that starts executing from the same point as the parent process.

    • In the given code, fork() is called four times, resulting in a total of 16 processes (including the original parent...

  • Answered by AI
  • Q13. Bridges are used in which layer?
  • Ans. 

    Bridges are used in the network layer of the OSI model.

    • Bridges are used to connect two or more network segments or LANs.

    • They operate at the data link layer (Layer 2) of the OSI model.

    • Bridges use MAC addresses to forward data packets between segments.

    • They can filter and forward network traffic based on MAC addresses.

    • Examples of bridges include Ethernet bridges and wireless bridges.

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: 1.#define clrscr() 100

main()

{

clrscr();

printf(?%d?,clrscr());

}

2.A triangle ABC is given, a line DE is paralel to base side and that cuts the triangle. The ratio of area of triangle to the area of trapezium .given DE/BC=3/5.

3. struct s1 { struct { struct {int x;}s2}s3}y;

How to access x? ANS: y.s3.s2.x

4.Given two numbers m and n, write a method to return the first number r that is divisible by both (e.g., the least common multiple).

ANS:Define q to be 1.

for each prime number p less than m and n:

find the largest a and b such that p^a m and p^b n

let q = q * p^max(a, b)

return q

5.There are set of coins of {50,25,10,5,1} paise in a box.Write a program to find the number of ways a 1 rupee can be created by grouping the paise.

6. ONE PUZZLE THAT I REMEMBERED.

At the local model boat club, four friends were talking about their boats.

There were a total of eight boats, two in each colour, red, green, blue and yellow. Each friend owned two boats. No friend had two boats of the same colour.

Alan didn't have a yellow boat. Brian didn't have a red boat, but did have a green one. One of the friends had a yellow boat and a blue boat and another friend had a green boat and a blue boat. Charles had a yellow boat. Darren had a blue boat, but didn't have a green one.

Can you work out which friend had which coloured boats?

7.main()

{

printf(?as?);

printf(?hi?);

printf(?is

?);

} wat will b printed.

10. main()

{

unsigned short a=-1;

unsigned char b=a;

printf(?%d %d ?,a,b);

}

wat is o/p of the program

8.Given an array which is alternatively sorted. Find an element in it.

e.g. 12,2,16,5,18,32,33,38

9.selective repeat widow size of sender & receiver 1 question.

10.main()

{

int *i;

int s=(int *)malloc(10*sizeof(int));

for (i=0;i<10;i++)

{

printf(?%d?,i*i)

}

whats the output?

11.Design an algorithm that, given a list of n elements in an array, finds all the elements that appear more than n/3 times in the list. The algorithm should run in linear time ( n >=0 )

You are expected to use comparisons and achieve linear time. No hashing/excessive space/ and don't use standard linear time deterministic selection algo

12. In a tournament with N teams, where in one team can play only one match per day, develop an algo which schedules the matches in the tournament.Each team shall play with the other team once(same as designing the league matches of a Cricket tournament like IPL)

He also asked me to optimise on days

13.main()

{

int ret;

ret=fork();

ret=fork();

ret=fork();

ret=fork();

if(!ret)

printf("one");

else

printf("two");

}

14.Bridges are used in which layer?

College Name: NA

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Cisco?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

3 Questions

  • Q1. Why do you want to join this company?
  • Q2. Who is your role model?
  • Ans. 

    My role model is Elon Musk.

    • I admire his innovative thinking and determination to push boundaries.

    • His ability to lead multiple successful companies is inspiring.

    • His focus on sustainable energy and space exploration aligns with my values.

    • I strive to emulate his work ethic and passion for making a positive impact on the world.

  • Answered by AI
  • Q3. What extra-curricular activities have you been involved in?
  • Ans. 

    I have been involved in various extra-curricular activities such as volunteering, sports, and music.

    • Volunteered at local animal shelter

    • Played on intramural basketball team

    • Participated in school choir

    • Attended coding workshops and hackathons

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: I consulted my seniors for preparation of my resume. I believe that seniors provide the best possible insights in this regards. I had a standard resume for all the companies.

Round: Test
Experience: I had prepared for the CAT examination which helped me in these written tests. The first round was the written test. The criterion for the written test was to have a CGPA more than 6.0. There was an aptitude test and a technical test. The technical test consisted of programming questions based on C++ and data structures. From data structures they asked a lot questions based on tree traversals and from C++. A large number of questions from pointers and arrays were also asked.
The aptitude test was slightly easier than the CAT examination standards. Majority of the questions were related to data interpretation and some were of based on logical reasoning. The total duration of the both the tests combined was 90 minutes.

Around 50 people appeared for the first round and nearly 13 got shortlisted for the next round.
Tips: For the written tests, particularly the aptitude section, if would really help if you have prepared for the CAT examination. There is a book written by an author named R.S. Agarwal which would prove to be beneficial from the point of view of these written tests.
Duration: 90 minutes

Round: Group Discussion
Experience: I did not prepare much for the GD’s. However I did keep myself abreast with certain latest happenings.There were no group activities conducted in the recruitment process of Century Link.

Round: HR Interview
Experience: For HR interviews I prepared answers to some frequently asked HR questions. I found these questions on the internet. Generally the questions asked in the interviews are related to the profile on offer; for instance in A2Z interview I was asked a lot of questions from power systems since it was a core company and in Century Links I was asked questions from C++ and data structures since they had come to recruit for a software engineering profile.

Round: Technical Interview
Experience: In this interview I was questioned on my C++ and data structure knowledge. They asked me questions on pointers and further asked me to explain the concept of dangling pointers. They did not want me to write down the complete code with proper syntax's of the problems asked to me. They only asked me to write the algorithms of the various problems.
They also asked me some puzzles. Unfortunately, I was not able to solve any of them. During the course of the interview they asked me to specify the reason for my keen interest in joining an IT company.
At the end of first interview some candidates were shortlisted and called for the second round of interview.

Round: Technical Interview
Experience: The second interview was conducted by a senior company official. He enquired about my project and again, like in the first interview, asked me to state the reason for my interest in joining an IT company.This interview round was an elimination round.

Round: HR Interview
Experience: The interview was an HR interview. Candidates who reached till this interview were all selected; basically this interview was like a formality to check the candidate’s fit with the company.

College Name: IIT ROORKEE
Motivation: I had never heard of the company before the recruitment season. I attended the PPT organised by the company&#44; I found the company to be a well reputed/established company and thus applied to it. The profile was open for Electrical, Computer Science, Mechanical and Electronics engineering students.

Electronic Packaging Designer Interview Questions Asked at Other Companies

asked in Cisco
Q1. At the local model boat club, four friends were talking about the ... read more
asked in Cisco
Q2. In a tournament with N teams, where each team can play only one m ... read more
asked in Cisco
Q3. Given two numbers m and n, write a method to return the first num ... read more
asked in Cisco
Q4. Design an algorithm that, given a list of n elements in an array, ... read more
asked in Cisco
Q5. Triangle ABC has line DE parallel to base BC, cutting the triangl ... read more

I appeared for an interview before Jan 2016.

Interview Questionnaire 

7 Questions

  • Q1. Give a brief description about your education, past job profile and other questions.
  • Q2. Why did you quit your last organization after just 2.5 years?
  • Q3. Why do you want to join Centurylink?
  • Ans. 

    I am excited to join Centurylink because of their reputation for innovation and commitment to customer satisfaction.

    • Centurylink has a strong focus on developing cutting-edge technology solutions

    • The company values customer feedback and strives to provide excellent service

    • I am impressed by Centurylink's dedication to diversity and inclusion in the workplace

  • Answered by AI
  • Q4. Why did you relocate to Noida?
  • Ans. 

    Relocated to Noida for better career opportunities and growth.

    • Noida is a hub for IT companies and offers a lot of job opportunities in the software development field.

    • The city has a good work-life balance and a lower cost of living compared to other metropolitan cities.

    • I was also attracted to the diverse culture and the opportunity to work with people from different backgrounds.

    • I did my research and found that Noida has...

  • Answered by AI
  • Q5. Are you ok to work in US shift?
  • Ans. 

    Yes, I am comfortable working in US shift.

    • I have prior experience working in US shift.

    • I am flexible with my work timings.

    • I understand the importance of meeting project deadlines.

    • I am willing to adjust my personal schedule to accommodate work requirements.

  • Answered by AI
  • Q6. Where do you put up?
  • Q7. Solve 12 Mainframe Puzzles

Interview Preparation Tips

Round: Technical + HR Interview
Experience: I told them all about the previous companies and my past job profile as a Mainframe Developer.
I gave a valid reason for quitting the previous company.
I cited that the reason to relocate to Noida was my wedding.
I was not okay to work in shifts, hence I denied.
I was putting up in Noida itself back then.

Round: Puzzle Interview
Experience: I was given a list of 12 Mainframe puzzles with questions from Cobol, DB2 and JCL.

I could solve 8 of them correctly.
Tips: Prepare puzzles as they give just 1 minute per question and not more.

Interview Preparation Tips

Round: PRE placement
Experience: Was accepted through the pre placement offer after a satisfactory internship during the summer.
There was a small test after the internship. Work done in the internship in co-ordination with mentor, employees and manager has more weight-age.

General Tips: Just brush up on your fundamentals. The questions asked will just be a direct or indirect applications of what you have learnt. Good programming practice is also needed.
Good knowledge about Operating systems, Data structures, Networking and Programming is what they generally look for while hiring.
A good internship project helped in securing the PPO.
Skills:
College Name: NIT Surathkal

I appeared for an interview before Apr 2021.

Round 1 - Face to Face 

(7 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions on OOPS and OS mainly.

  • Q1. What are Little Endian and Big Endian in the context of computer architecture?
  • Ans. 

    Little Endian and Big Endian refer to the order in which bytes are stored in computer memory.

    • Little Endian stores the least significant byte first, while Big Endian stores the most significant byte first.

    • Little Endian is commonly used in x86 architecture, while Big Endian is used in architectures like SPARC and PowerPC.

    • Endianness can affect data transmission between systems with different byte orders.

  • Answered by AI
  • Q2. Write a program to determine if your system is little-endian or big-endian.
  • Q3. What is the volatile keyword in programming?
  • Ans. 

    The volatile keyword in programming is used to indicate that a variable's value can be changed unexpectedly.

    • Volatile keyword is used in multithreaded programming to prevent compiler optimizations on variables that can be changed by other threads.

    • It tells the compiler not to cache the variable's value in a register, ensuring that every access is made to the variable's memory location.

    • Commonly used in embedded systems pr...

  • Answered by AI
  • Q4. What is the use of a function pointer in C?
  • Q5. Design a data structure to implement multi-threading.
  • Q6. What does a kernel do?
  • Ans. 

    The kernel is the core component of an operating system that manages system resources and provides a bridge between software and hardware.

    • Manages system resources such as CPU, memory, and I/O devices

    • Provides a bridge between software applications and hardware components

    • Handles tasks such as process scheduling, memory management, and device drivers

    • Controls communication between hardware and software layers

  • Answered by AI
  • Q7. What is a storage class in programming?
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANVIDIA interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating Systems, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

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.

Application resume tips for other job seekers

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.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Preparation Tips

Skills: Networking, OS, Linux kernel
College Name: NA

I applied via Campus Placement and was interviewed in Dec 2016. There were 3 interview rounds.

Interview Questionnaire 

10 Questions

  • Q1. Write a program to reverse a n integer
  • Ans. 

    Program to reverse an integer

    • Convert the integer to a string

    • Reverse the string

    • Convert the reversed string back to an integer

  • Answered by AI
  • Q2. Explain me about your projects
  • Ans. 

    I have worked on various projects including a web application for inventory management and a mobile app for task tracking.

    • Developed a web application using React for inventory management, allowing users to track stock levels and generate reports.

    • Created a mobile app using Flutter for task tracking, enabling users to create, assign, and track tasks in real-time.

    • Collaborated with a team of developers to integrate APIs an...

  • Answered by AI
  • Q3. Are you interstedoing in studying further
  • Q4. Reverse a linked list without using extra memory
  • Q5. Explain me about all the data structures you know, tell me their advantages over others and applications
  • Ans. 

    Data structures are fundamental concepts in software engineering that organize and store data efficiently.

    • Arrays: Simple and efficient for storing and accessing elements.

    • Linked Lists: Dynamic and flexible, efficient for insertion and deletion.

    • Stacks: LIFO structure, useful for managing function calls and undo operations.

    • Queues: FIFO structure, ideal for managing tasks and scheduling.

    • Trees: Hierarchical structure, used ...

  • Answered by AI
  • Q6. What is the difference between into arr [5] and malloc (5*sizeof (int))
  • Ans. 

    The difference is that 'int arr[5]' creates an array on the stack, while 'malloc(5*sizeof(int))' allocates memory on the heap.

    • int arr[5] creates an array of 5 integers on the stack, which is a fixed-size memory allocation.

    • malloc(5*sizeof(int)) dynamically allocates memory on the heap, allowing for variable-size memory allocation.

    • The memory allocated with malloc must be explicitly freed with free() to avoid memory leaks...

  • Answered by AI
  • Q7. Tell me about yourself.
  • Q8. Where do you want to see yourself in 5 years
  • Q9. Mention two weakness es
  • Q10. Are you intersted in studying further

Interview Preparation Tips

Round: Technical Interview
Experience: Asked me few simple questions related to OS and Network security

Round: Technical Interview
Experience: Asked me few simple questions related to OS and Network security

College Name: IIT Madras

Skills evaluated in this interview

Are these interview questions helpful?

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 40 minutes
Round difficulty - Easy

Technical round with questions based on DSA.

  • Q1. 

    Reverse a Number Problem Statement

    Create a program to reverse a given integer N. The output should be the reversed integer.

    Note:

    If a number has trailing zeros, their reversed version should not inclu...

  • Ans. 

    Reverse a given integer while excluding trailing zeros.

    • Create a program to reverse the given integer by converting it to a string and then reversing it.

    • Remove any trailing zeros from the reversed string before converting it back to an integer.

    • Handle the constraints of the input integer being between 0 and 10^8.

    • Example: For input 1230, the output should be 321.

  • Answered by AI
  • Q2. 

    Reverse a Linked List Problem Statement

    You are given a Singly Linked List of integers. Your task is to reverse the Linked List by changing the links between nodes.

    Input:

    The first line of input contai...
  • Q3. What is the difference in C++ between 'new int[5]' and 'malloc(5 * sizeof(int))'?
  • Ans. 

    new int[5] is C++ specific and initializes the array with default values, while malloc(5 * sizeof(int)) is a C function and does not initialize the array.

    • new int[5] is C++ specific and calls constructors for each element in the array.

    • malloc(5 * sizeof(int)) is a C function and does not call constructors, leaving the array uninitialized.

    • new int[5] returns a pointer to the first element of the array, while malloc(5 * siz...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAJuniper Networks interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OS, Networking, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

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.

Application resume tips for other job seekers

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.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is OOPs concept?
  • Q2. What is lazy loading?
  • Q3. What is eager loading?
  • Ans. 

    Eager loading is a technique used in software development to load related data in advance to avoid multiple database queries.

    • Eager loading is used to optimize database queries and improve performance.

    • It loads all the required data in a single query instead of making multiple queries.

    • It is commonly used in Object-Relational Mapping (ORM) frameworks like Hibernate, Entity Framework, etc.

    • Eager loading can be used with var...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Clearing Test is the key

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Based on Networking, layers , router , configuration , basic ds & algo, dbms

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn all the basics about networks

Cisco Interview FAQs

What are the top questions asked in Cisco Electronic Packaging Designer interview?

Some of the top questions asked at the Cisco Electronic Packaging Designer interview -

  1. ONE PUZZLE THAT I REMEMBERED. At the local model boat club, four friends were t...read more
  2. In a tournament with N teams, where in one team can play only one match per day...read more
  3. Given two numbers m and n, write a method to return the first number r that is ...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Nokia Networks Interview Questions
4.2
 • 119 Interviews
Nvidia Interview Questions
3.5
 • 113 Interviews
BT Business Interview Questions
4.0
 • 86 Interviews
Arista Networks Interview Questions
3.9
 • 50 Interviews
TransPerfect Interview Questions
3.3
 • 27 Interviews
View all
Software Engineer
2.8k salaries
unlock blur

₹16.8 L/yr - ₹39.6 L/yr

Technical Consulting Engineer
695 salaries
unlock blur

₹9.7 L/yr - ₹30.4 L/yr

Senior Software Engineer
665 salaries
unlock blur

₹24.5 L/yr - ₹45 L/yr

Network Engineer
400 salaries
unlock blur

₹5.8 L/yr - ₹14 L/yr

Technical Lead
353 salaries
unlock blur

₹30.5 L/yr - ₹55 L/yr

Explore more salaries
Compare Cisco with

Google

4.4
Compare

Microsoft Corporation

3.9
Compare

Sterlite Technologies

3.8
Compare

Nokia Networks

4.2
Compare
write
Share an Interview