Logo

Get AmbitionBox App

Faster and better experience!

AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Campus placements

      Interviews questions for 2K+ colleges

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    WINNERS AWAITED!
    • ABECA 2025
      WINNERS AWAITED!

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    • AmbitionBox Best Places to Work 2021

      1st Edition

For Employers
Upload Button Icon Add office photos
logo
Engaged Employer

i

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

Lumen Technologies Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 661 Reviews

Play video Play video Video summary
  • About
  • Reviews
    661
  • Salaries
    4.2k
  • Interviews
    54
  • Jobs
    12
  • Benefits
    110
  • Photos
    2

Filter interviews by

Lumen Technologies Interview Questions and Answers

Updated 28 Mar 2025
Popular Designations

9 Interview questions

A Software Consultant was asked 1mo ago
Q. What are the key concepts of Object-Oriented Programming (OOP) in Java?
Ans. 

OOP in Java focuses on objects, classes, inheritance, encapsulation, and polymorphism to create modular and reusable code.

  • 1. Classes and Objects: A class is a blueprint for creating objects. Example: 'class Dog { }' creates a Dog object.

  • 2. Inheritance: Allows a new class to inherit properties and methods from an existing class. Example: 'class Puppy extends Dog { }'.

  • 3. Encapsulation: Bundles data (attributes) and ...

View all Software Consultant interview questions
An Android Developer was asked 2mo ago
Q. What are the SOLID principles in Android development?
Ans. 

SOLID principles are a set of five design principles that help developers create more maintainable and scalable code.

  • Single Responsibility Principle (SRP) - A class should have only one reason to change.

  • Open/Closed Principle (OCP) - Classes should be open for extension but closed for modification.

  • Liskov Substitution Principle (LSP) - Objects of a superclass should be replaceable with objects of its subclasses with...

View all Android Developer interview questions
A Customer service and account specialist was asked 7mo ago
Q. What is technology?
Ans. 

Technology is the application of scientific knowledge for practical purposes.

  • Technology involves the use of tools, systems, and methods to solve problems or achieve goals

  • It encompasses a wide range of fields such as information technology, engineering, and biotechnology

  • Examples include smartphones, computers, medical devices, and renewable energy technologies

An Oracle DBA Lead was asked 9mo ago
Q. When a table is created, how many segments are created?
Ans. 

When a table is created in Oracle, three segments are created: data segment, index segment, and temporary segment.

  • Data segment stores the actual data of the table

  • Index segment stores the indexes created on the table

  • Temporary segment is created for temporary data storage during sorting or joining operations

View all Oracle DBA Lead interview questions
A Senior Supervisor was asked 09 Aug 2023
Q. How did you find a solution to the problem?
Ans. 

I analyze the problem, brainstorm potential solutions, consult with team members, and test different approaches until finding the most effective solution.

  • Analyze the problem thoroughly to understand its root cause

  • Brainstorm potential solutions with team members

  • Consult with subject matter experts if needed

  • Test different approaches to see which one works best

  • Implement the most effective solution and monitor its impa...

View all Senior Supervisor interview questions
An Information Technology IT was asked 08 Jul 2021
Q. Share your real-life project experiences.
Ans. 

Developed a web-based inventory management system for a retail company

  • Used PHP and MySQL for backend development

  • Implemented barcode scanning feature for easy product tracking

  • Designed a user-friendly interface for easy navigation

  • Integrated with payment gateway for online transactions

  • Conducted user testing and made necessary improvements based on feedback

View all Information Technology IT interview questions
A Software Development Engineer was asked 28 May 2021
Q. Have you worked on HTML?
Ans. 

Yes, I have worked on HTML extensively in various projects.

  • Developed responsive web pages using HTML5 and CSS3

  • Implemented forms, tables, and multimedia content with HTML

  • Utilized semantic elements for better SEO and accessibility

  • Integrated JavaScript for dynamic client-side interactions

View all Software Development Engineer interview questions
Are these interview questions helpful?
A Software Development Engineer was asked 1mo ago
Q. What are linux cmds and do you know devops
Ans. 

Linux commands are essential tools for managing and automating tasks in a Linux environment, crucial for DevOps practices.

  • Linux commands are used for file manipulation, e.g., 'ls' to list files, 'cp' to copy files.

  • They help in system monitoring, e.g., 'top' to view running processes, 'df' to check disk space.

  • Commands like 'git' are vital for version control in DevOps workflows.

  • Automation tools like 'bash' scripts ...

View all Software Development Engineer interview questions
A Software Consultant was asked 1mo ago
Q. What are all the framework design techniques
Ans. 

Framework design techniques help structure software systems for flexibility, maintainability, and scalability.

  • Modular Design: Breaks down the system into smaller, manageable modules (e.g., microservices architecture).

  • Layered Architecture: Organizes code into layers (e.g., presentation, business logic, data access).

  • Event-Driven Architecture: Uses events to trigger actions (e.g., message queues in distributed system...

View all Software Consultant interview questions

Lumen Technologies Interview Experiences

54 interviews found

Android Developer Interview Questions & Answers

user image Anonymous

posted on 21 Feb 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are the SOLID principles in Android development?
  • Ans. 

    SOLID principles are a set of five design principles that help developers create more maintainable and scalable code.

    • Single Responsibility Principle (SRP) - A class should have only one reason to change.

    • Open/Closed Principle (OCP) - Classes should be open for extension but closed for modification.

    • Liskov Substitution Principle (LSP) - Objects of a superclass should be replaceable with objects of its subclasses without a...

  • Answered by AI
    Add your answer
  • Q2. What is the difference between MVVM (Model-View-ViewModel) and MVC (Model-View-Controller) architectural patterns?
  • Ans. 

    MVVM separates the view and model using a ViewModel, while MVC separates the view and model using a controller.

    • In MVVM, the ViewModel acts as an intermediary between the view and model, handling user interactions and updating the model accordingly.

    • In MVC, the controller is responsible for handling user input, updating the model, and updating the view.

    • MVVM allows for better separation of concerns and easier unit testing...

  • Answered by AI
    Add your answer

Android Developer Interview Questions asked at other Companies

Q1. BST Iterator Problem Statement You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions: BSTIterator(Node root): A constructor that... read more
View answer (1)
Anonymous

Software Consultant Interview Questions & Answers

user image Anonymous

posted on 28 Mar 2025

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. What are the key concepts of Object-Oriented Programming (OOP) in Java?
  • Ans. 

    OOP in Java focuses on objects, classes, inheritance, encapsulation, and polymorphism to create modular and reusable code.

    • 1. Classes and Objects: A class is a blueprint for creating objects. Example: 'class Dog { }' creates a Dog object.

    • 2. Inheritance: Allows a new class to inherit properties and methods from an existing class. Example: 'class Puppy extends Dog { }'.

    • 3. Encapsulation: Bundles data (attributes) and metho...

  • Answered by AI
    Add your answer
  • Q2. What are all the framework design techniques
  • Ans. 

    Framework design techniques help structure software systems for flexibility, maintainability, and scalability.

    • Modular Design: Breaks down the system into smaller, manageable modules (e.g., microservices architecture).

    • Layered Architecture: Organizes code into layers (e.g., presentation, business logic, data access).

    • Event-Driven Architecture: Uses events to trigger actions (e.g., message queues in distributed systems).

    • As...

  • Answered by AI
    Add your answer

Software Consultant Interview Questions asked at other Companies

Q1. Palindrome String Validation Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols. Note: The string 'S' should be evaluated in a case-insensitive manner. Example: Input: "... read more
View answer (1)
Anonymous

Senior Hris Analyst Interview Questions & Answers

user image GOPINATH S D

posted on 28 Feb 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. HR system knowledge
  • Add your answer
  • Q2. LMS system knowledge
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for technical interview
Anonymous

Senior Software Engineer Interview Questions & Answers

user image MJ Vlogbox

posted on 26 Jul 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java basics , oops , spring
  • Add your answer
Round 2 - One-on-one 

(1 Question)

  • Q1. Manger round basics behavior
  • Add your answer

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Anonymous

Software Development Consultant Interview Questions & Answers

user image Anonymous

posted on 10 Apr 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Simple C program.
  • Add your answer
  • Q2. Questions related to my work experience.
  • Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. Work profile related discussion with senior manager
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Salary related discussion
  • Add your answer
Anonymous

SDE Interview Questions & Answers

user image Anonymous

posted on 5 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Interview touched basic dsa and sql in depth along with any basic web ui , like login page

SDE Interview Questions asked at other Companies

Q1. Return Subsets Sum to K Problem Statement Given an integer array 'ARR' of size 'N' and an integer 'K', return all the subsets of 'ARR' which sum to 'K'. Explanation: A subset of an array 'ARR' is a tuple that can be obtained from 'ARR' by r... read more
View answer (1)
Anonymous

Executive Assistant Interview Questions & Answers

user image Anonymous

posted on 22 Feb 2024

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Placement consultancy screening round went bad. Lack of communication from the organisation to the consultantcy
  • Add your answer
  • Q2. My eligibility, current salary,expected salary andJD was discussed.
  • Add your answer
Round 2 - HR 

(1 Question)

  • Q1. Round 2 was not done
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - I got a screening call from Sheema Dey, consulatancy from Delhi for Executive Assistant role in Lumen Technologies India Pvt Ltd, Kadubeesanahalli, Bangalore. I was told by next working day I shall get a call on the next steps of interviews to be scheduled by Lumen, even the salary range/ my expectation was discussion and it was met by company budget. There was no update from her end. I called the next day only to know Lumen has shortlisted a guy for this postion and the offer is closed.

Executive Assistant Interview Questions asked at other Companies

Q1. What is deviation What is validation and its type in detail What is CAPA AND HOW IT is initiated Examples of incidences and how it is rectified Examples of preventive action and corrective actions Procedure for reprocessing of batch What is... read more
View answer (1)
Anonymous

Interview Questions & Answers

user image ARPIT MALIK

posted on 18 Mar 2024

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

(3 Questions)

  • Q1. What is technology
  • Ans. 

    Technology is the application of scientific knowledge for practical purposes.

    • Technology involves the use of tools, systems, and methods to solve problems or achieve goals

    • It encompasses a wide range of fields such as information technology, engineering, and biotechnology

    • Examples include smartphones, computers, medical devices, and renewable energy technologies

  • Answered by AI
    Add your answer
  • Q2. Why left last job
  • Ans. 

    Seeking new challenges and growth opportunities

    • Desire for career advancement

    • Looking for a new challenge

    • Seeking growth opportunities

    • Company restructuring led to position elimination

  • Answered by AI
    Add your answer
  • Q3. Previous experience summary.
  • Add your answer
Round 2 - HR 

(1 Question)

  • Q1. Salary expectation
  • Add your answer
Anonymous

Oracle DBA Lead Interview Questions & Answers

user image smita melinmani

posted on 31 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. When we create table how many segments are created ?
  • Ans. 

    When a table is created in Oracle, three segments are created: data segment, index segment, and temporary segment.

    • Data segment stores the actual data of the table

    • Index segment stores the indexes created on the table

    • Temporary segment is created for temporary data storage during sorting or joining operations

  • Answered by AI
    Add your answer
  • Q2. Oracle architecture
  • Add your answer

Skills evaluated in this interview

Oracle DBA Lead Interview Questions asked at other Companies

Q1. When a table is created, how many segments are created?
View answer (1)
Anonymous

SAP Basis Administrator Interview Questions & Answers

user image kumar pavan

posted on 26 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How do u perform sum upgrade
  • Ans. 

    Performing a SAP upgrade involves planning, preparation, execution, and testing to ensure a successful transition to a new version.

    • Create a project plan outlining tasks, timelines, and resources needed for the upgrade

    • Backup all data and configurations before starting the upgrade process

    • Install the new version of SAP software on a test environment to validate compatibility and functionality

    • Perform system checks and test...

  • Answered by AI
    Add your answer
  • Q2. Hana replication
  • Add your answer

SAP Basis Administrator Interview Questions asked at other Companies

Q1. If there are 3 instances in your system, how would you stop a particular instance through the OS level?
View answer (1)
Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w
devshacker007
·
ex -
Zizbey Consultancy
Job Chahiye Boss, Experience 3 Saal Ka — Lekin Salary Fresher Wali!
👔 HR: "Aapke paas Vue.js, React, Node.js, DevOps, AI sabka experience hai?" 👨‍💻 Main: "Haan, maine toh LinkedIn pe sabki post bhi like ki hai!😅" 🤖 Aaj kal interview mein skills se zyada "you must be available to work under pressure, weekends, and salary delay" pe focus hota hai! 💸 Salary expectation batate hi HR bolta hai — "Oh! We are looking for someone who is passionate... not someone who wants money!🏃‍♂️" 🚀 Lekin fir bhi hum apply karte ja rahe hain, kyunki ghar ke EMI aur Swiggy ke bill ne bhi promise kiya hai — "We will never leave you alone!" 📢 Dear companies, ab to job dedo — experience toh Zindagi bhi de rahi hai daily!
FeedCard Image
Got a question about Lumen Technologies?
Ask anonymously on communities.
More about working at Lumen Technologies
  • HQ - Monroe,Louisiana, United States
  • Hardware & Networking
  • 1k-5k Employees (India)
  • Internet

Lumen Technologies Interview FAQs

How many rounds are there in Lumen Technologies interview?
Lumen Technologies interview process usually has 2-3 rounds. The most common rounds in the Lumen Technologies interview process are Technical, HR and Resume Shortlist.
How to prepare for Lumen Technologies 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 Lumen Technologies. The most common topics and skills that interviewers at Lumen Technologies expect are Communication Skills, Java, Switching, Python and Analytical Chemistry.
What are the top questions asked in Lumen Technologies interview?

Some of the top questions asked at the Lumen Technologies interview -

  1. What is the difference between MVVM (Model-View-ViewModel) and MVC (Model-View-...read more
  2. What are the key concepts of Object-Oriented Programming (OOP) in Ja...read more
  3. What are the SOLID principles in Android developme...read more
What are the most common questions asked in Lumen Technologies HR round?

The most common HR questions asked in Lumen Technologies interview are -

  1. What are your strengths and weakness...read more
  2. Why should we hire y...read more
How long is the Lumen Technologies interview process?

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

Tell us how to improve this page.

Lumen Technologies Interviews By Designations

  • Lumen Technologies Software Engineer Interview Questions
  • Lumen Technologies Software Developer Interview Questions
  • Lumen Technologies Software Development Engineer Interview Questions
  • Lumen Technologies Software Development Consultant Interview Questions
  • Lumen Technologies Customer Service Associate Interview Questions
  • Lumen Technologies Network Engineer Interview Questions
  • Lumen Technologies Consultant Interview Questions
  • Lumen Technologies Intern Interview Questions
  • Show more
  • Lumen Technologies Information Security Consultant Interview Questions
  • Lumen Technologies Associate Consultant Interview Questions

Interview Questions for Popular Designations

  • Senior Executive Interview Questions
  • Executive Interview Questions
  • Software Engineer Interview Questions
  • Business Analyst Interview Questions
  • Sales Executive Interview Questions
  • Senior Engineer Interview Questions
  • Accountant Interview Questions
  • Data Analyst Interview Questions
  • Show more
  • Manager Interview Questions
  • Deputy Manager Interview Questions

Overall Interview Experience Rating

3.9/5

based on 34 interview experiences

Difficulty level

Easy 26%
Moderate 63%
Hard 11%

Duration

Less than 2 weeks 58%
2-4 weeks 32%
4-6 weeks 5%
6-8 weeks 5%
View more

Interview Questions from Similar Companies

Cisco
Cisco Interview Questions
4.2
 • 380 Interviews
Indus Towers
Indus Towers Interview Questions
3.7
 • 188 Interviews
Sterlite Technologies
Sterlite Technologies Interview Questions
3.8
 • 168 Interviews
Nvidia
Nvidia Interview Questions
3.6
 • 110 Interviews
BT Business
BT Business Interview Questions
4.0
 • 84 Interviews
Tejas Networks
Tejas Networks Interview Questions
4.0
 • 76 Interviews
Juniper Networks
Juniper Networks Interview Questions
4.2
 • 67 Interviews
Arista Networks
Arista Networks Interview Questions
4.2
 • 45 Interviews
Vindhya Telelinks
Vindhya Telelinks Interview Questions
4.0
 • 38 Interviews
Redington
Redington Interview Questions
4.0
 • 35 Interviews
View all

Lumen Technologies Reviews and Ratings

based on 661 reviews

4.0/5

Rating in categories

3.6

Skill development

4.2

Work-life balance

3.6

Salary

4.0

Job security

3.9

Company culture

3.4

Promotions

3.7

Work satisfaction

Explore 661 Reviews and Ratings
Jobs at Lumen Technologies
Lumen Technologies
Information Security Consultant II

Bangalore / Bengaluru

6-9 Yrs

₹ 10.5-12 LPA

Lumen Technologies
Network Consultant

Bangalore / Bengaluru

3-6 Yrs

₹ 8-11.6 LPA

Lumen Technologies
Gen AI Specialist

Bangalore Rural,

Bangalore / Bengaluru

8-13 Yrs

₹ 20-35 LPA

Explore more jobs
Lumen Technologies Salaries in India
Software Engineer
418 salaries
unlock blur

₹3.3 L/yr - ₹13 L/yr

Senior Software Engineer
276 salaries
unlock blur

₹6.5 L/yr - ₹19.4 L/yr

Module Lead
150 salaries
unlock blur

₹9.5 L/yr - ₹22 L/yr

Software Development Engineer
141 salaries
unlock blur

₹5 L/yr - ₹9.9 L/yr

Software Developer
118 salaries
unlock blur

₹5.5 L/yr - ₹23.2 L/yr

Explore more salaries
Compare Lumen Technologies with
Indus Towers

Indus Towers

3.7
Compare
Sterlite Technologies

Sterlite Technologies

3.8
Compare
Cisco

Cisco

4.2
Compare
BT Business

BT Business

4.0
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Lumen Technologies Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Helping over 1 Crore job seekers every month in choosing their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

6 Lakh+

Interviews

1 Crore+

Users/Month

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Campus Placements
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2026
  • ABECA 2025 winners awaited tag
  • ABECA 2024
  • AmbitionBox Best Places to Work 2022
  • AmbitionBox Best Places to Work 2021
  • Invite employees to rate
AmbitionBox
  • About Us
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter