Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Ciena Team. If you also belong to the team, you can get access from here

Ciena Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Ciena Interview Questions, Process, and Tips

Updated 18 Feb 2025

Top Ciena Interview Questions and Answers

View all 16 questions

Ciena Interview Experiences

Popular Designations

38 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Delhi College of Engineering (DCE), Delhi and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions and c programming questions and some basics

Round 2 - Technical 

(3 Questions)

  • Q1. Recursion concepts
  • Q2. Bit Manipulation
  • Q3. Project questions were asked
Round 3 - Technical 

(2 Questions)

  • Q1. Palindrome DSA questions
  • Q2. Tree related basic questions

C Developer Interview Questions asked at other Companies

Q1. Merge K Sorted ArraysYou have been given ‘K’ different arrays/lists, which are sorted individually (in ascending order). You need to merge all the given arrays/list such that the output array/list should be sorted in ascending order. Input ... read more
View answer (3)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Reverse a linked list.
  • Q2. Merge sort on a array/

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (39)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Sort an unsorted array without inbuilt methods
  • Ans. 

    Implement a sorting algorithm to sort an unsorted array of strings without using inbuilt methods.

    • Use a sorting algorithm like bubble sort, selection sort, or insertion sort to manually sort the array.

    • Compare each element with the next one and swap them if they are in the wrong order.

    • Repeat this process until the array is sorted.

    • Example: ['banana', 'apple', 'cherry'] -> ['apple', 'banana', 'cherry']

  • Answered by AI

Python Automation Engineer Interview Questions asked at other Companies

Q1. Find the largest no. to be created from the list of numbers in the string format. Example ['234', 56','100'] -> 56234100
View answer (1)

C Developer Interview Questions & Answers

user image Anonymous

posted on 7 Oct 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Delhi College of Engineering (DCE), Delhi and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was a pen /papper test

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    Experienced C Developer with a passion for problem-solving and creating efficient code.

    • Over 5 years of experience in C programming

    • Strong knowledge of data structures and algorithms

    • Proficient in debugging and optimizing code for performance

    • Worked on projects involving embedded systems and real-time applications

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

    I have worked on various projects including developing a real-time chat application, implementing data structures and algorithms, and optimizing code for performance.

    • Developed a real-time chat application using C and socket programming

    • Implemented various data structures and algorithms for efficient processing of large datasets

    • Optimized code for performance by identifying bottlenecks and implementing improvements

  • Answered by AI

C Developer Interview Questions asked at other Companies

Q1. Merge K Sorted ArraysYou have been given ‘K’ different arrays/lists, which are sorted individually (in ascending order). You need to merge all the given arrays/list such that the output array/list should be sorted in ascending order. Input ... read more
View answer (3)

Ciena interview questions for popular designations

 Software Engineer

 (5)

 Embedded Software Engineer

 (3)

 C Developer

 (2)

 Embedded Software Developer

 (2)

 Module Lead

 (2)

 Senior Test Engineer

 (2)

 Cloud Analyst

 (1)

 Lead Engineer

 (1)

Waveserver Software Dev Interview Questions & Answers

user image Anonymous

posted on 25 Sep 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Questions about projects and resume walkthrough
Round 2 - Group Discussion 

1 hour combination of technical and non technical. last 15mins were technical without clear structure of how long I would have for each question

Interview Preparation Tips

Topics to prepare for Ciena Waveserver Software Dev interview:
  • C
  • C++

Get interview-ready with Top Ciena Interview Questions

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about your past experience?

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 (169)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Coding Test 

Questions related to C programming, aptitude tests, and core computer science concepts.

Round 2 - One-on-one 

(3 Questions)

  • Q1. Questions related to Computer Networking
  • Q2. Questions related to operating systems
  • Q3. Questions related to bit manipulation

Interview Preparation Tips

Interview preparation tips for other job seekers - Maintaining a solid foundation of knowledge is essential. It is more advantageous to possess one strong area of expertise than to have superficial knowledge across many topics.

Embedded Software Engineer Interview Questions asked at other Companies

Q1. 3. 1)Do you know about Autosar. 2)define function definition and function declaration. 3)difference between structure and union. 4) define Enumeration 5)what is microcontroller and microprocessor and its applications 6)where we uses in real... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Questions like Linux memory model
  • Q2. U-boot handoff to Linux kernel
  • Ans. 

    U-boot hands off control to Linux kernel during boot process.

    • U-boot loads Linux kernel image into memory

    • U-boot sets up necessary parameters for Linux kernel

    • U-boot passes control to Linux kernel by jumping to its entry point

    • Linux kernel takes over and initializes system hardware

  • Answered by AI
  • Q3. Semaphore vs Mutex
  • Ans. 

    Semaphore is a signaling mechanism to control access to a shared resource, while Mutex is a locking mechanism to ensure only one thread accesses a resource at a time.

    • Semaphore can allow multiple threads to access a shared resource simultaneously, while Mutex ensures only one thread can access the resource at a time.

    • Mutex is more restrictive than Semaphore as it provides exclusive access to a resource, while Semaphore c...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Where do you see yourself after 5/10 years

Skills evaluated in this interview

Software Designer Interview Questions asked at other Companies

Q1. Write code to reverse string without using string or inbuilt function
View answer (2)

Software Engineer-P1 Interview Questions & Answers

user image Anonymous

posted on 11 Mar 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Question related to domain
Round 2 - Technical 

(1 Question)

  • Q1. Question related to data structures
Round 3 - HR 

(1 Question)

  • Q1. Experience and role fitment
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

C++ concepts and coding questions

Interview Preparation Tips

Topics to prepare for Ciena Software Engineer interview:
  • C++
  • Aptitude
  • Networking

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 (169)

Ciena Interview FAQs

How many rounds are there in Ciena interview?
Ciena interview process usually has 2-3 rounds. The most common rounds in the Ciena interview process are Technical, Resume Shortlist and HR.
How to prepare for Ciena interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Ciena. The most common topics and skills that interviewers at Ciena expect are Python, Networking, Linux, Java and Software Development.
What are the top questions asked in Ciena interview?

Some of the top questions asked at the Ciena interview -

  1. Given a list of numbers in an array ,traverse the array in a way so as to jump ...read more
  2. ex1 ) dict = {'abab' , 'aba', 'xyz', 'xyx'} pattern {'aba'} output {'aba' , 'xy...read more
  3. 1.what is bgp confederation?what are bgp state machines?what is NSSA in ospf?ho...read more
How long is the Ciena interview process?

The duration of Ciena interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Ciena Interview Process

based on 26 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

Ericsson Interview Questions
4.1
 • 412 Interviews
Cisco Interview Questions
4.1
 • 397 Interviews
Nokia Interview Questions
4.1
 • 274 Interviews
Fujitsu Interview Questions
3.8
 • 184 Interviews
ZTE Corporation Interview Questions
3.9
 • 19 Interviews
Infinera Interview Questions
4.1
 • 10 Interviews
Alcatel-Lucent Interview Questions
4.2
 • 7 Interviews
View all

Ciena Reviews and Ratings

based on 417 reviews

4.4/5

Rating in categories

4.0

Skill development

4.4

Work-life balance

4.2

Salary

3.9

Job security

4.4

Company culture

3.7

Promotions

4.0

Work satisfaction

Explore 417 Reviews and Ratings
Software Engineer
183 salaries
unlock blur

₹9.7 L/yr - ₹41.2 L/yr

Software Engineer2
165 salaries
unlock blur

₹12 L/yr - ₹38 L/yr

Senior Software Engineer
129 salaries
unlock blur

₹12 L/yr - ₹32.5 L/yr

Module Lead
77 salaries
unlock blur

₹13 L/yr - ₹38.5 L/yr

Embedded Software Engineer
65 salaries
unlock blur

₹10.4 L/yr - ₹40 L/yr

Explore more salaries
Compare Ciena with

Cisco

4.1
Compare

Juniper Networks

4.2
Compare

Infinera

4.1
Compare

Corning Technologies

4.3
Compare
Did you find this page helpful?
Yes No
write
Share an Interview