Upload Button Icon Add office photos
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

Filter interviews by

Lumen Technologies Software QA Engineer Interview Questions and Answers

Updated 11 Jul 2022

Lumen Technologies Software QA Engineer Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic manual testing questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to learn and management is supportive

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Mostly networking questions and a few computer science questions

Interview Preparation Tips

Round: Test
Experience: Test based on Logical ability and Electronics/Computer Science concepts
Duration: 1 hour 15 minutes
Total Questions: 35

Round: Technical Interview
Experience: Basics of networking, TCP/IP and computer science questions like linked list etc

College Name: Manipal Institute Of Technology, Manipal

I applied via Company Website and was interviewed in Apr 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Be thorough with you own resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - For the QA post there was an initial screening test (2 coding question + 8 MCQ ). The interview process was completed within a day.

I applied via Nvidea and was interviewed in Nov 2021. There were 3 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 - HR 

(1 Question)

  • Q1. HR Asks general questions. past experience pass out year. current base out of and elaborated GD to me once again.
Round 3 - Technical 

(5 Questions)

  • Q1. Difference between List and Tuples? in python
  • Ans. 

    List is mutable and Tuples are immutable in Python.

    • Lists are enclosed in square brackets [], while Tuples are enclosed in parentheses ().

    • Elements of a list can be changed, added or removed, while elements of a tuple cannot be changed.

    • Lists are slower than tuples due to their mutable nature.

    • Tuples are used for fixed data, while lists are used for dynamic data.

    • Lists are used for homogenous data, while tuples are used for

  • Answered by AI
  • Q2. What Android basic component
  • Ans. 

    The basic components of Android are activities, services, broadcast receivers, and content providers.

    • Activities are the user interface components that allow users to interact with the app.

    • Services are background components that perform long-running operations.

    • Broadcast receivers are components that receive and respond to system-wide broadcast announcements.

    • Content providers are components that manage a shared set of ap

  • Answered by AI
  • Q3. Explain about android architecture system.
  • Ans. 

    Android architecture system is a layered architecture consisting of four main layers.

    • The four main layers are Linux kernel, native libraries, application framework, and applications.

    • The Linux kernel provides low-level hardware abstraction and security.

    • Native libraries are written in C or C++ and provide access to hardware-specific features.

    • Application framework provides high-level services such as activity management, ...

  • Answered by AI
  • Q4. How does Open GL graphics Works in android
  • Ans. 

    OpenGL is a graphics API used in Android to render 2D and 3D graphics.

    • OpenGL is a cross-platform API that allows developers to create high-performance graphics applications.

    • It uses a pipeline-based model to process graphics data.

    • OpenGL ES (Embedded Systems) is the version of OpenGL used in Android.

    • It supports features like texture mapping, lighting, and shading.

    • Developers can use OpenGL in Android to create games, visu...

  • Answered by AI
  • Q5. Design Test cases for A Deseal Car Engine. Cover all test cases
  • Ans. 

    Design test cases for a deseal car engine

    • Test for engine starting and stopping

    • Test for oil pressure and temperature

    • Test for fuel efficiency

    • Test for exhaust emissions

    • Test for engine noise and vibration

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare some basics on python and go through your resume once again. they dig very deep into resume

Skills evaluated in this interview

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

(2 Questions)

  • Q1. I was asked about basic QA questions. One coding question on Recursion
  • Q2. Coding question on Recursion

I applied via LinkedIn and was interviewed in Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Python for automation. Rest of the technical questions were based on my work profile and few routing, switching,vlan and security related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepare for Python written test by hacker rank. And most of the profiles in Cisco are mainly looking about Python. If you are not strong technically that's fine but they expect atleast you should be an expert or best in python .
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

List, Dictionries with API

Round 2 - Technical 

(2 Questions)

  • Q1. Debug the test code written in Python
  • Ans. 

    Debugging test code in Python

    • Check for syntax errors and typos in the code

    • Use print statements to track the flow of the code and identify any issues

    • Review the logic of the code to ensure it is correctly implemented

    • Utilize debugging tools like pdb or IDE debuggers to step through the code

  • Answered by AI
  • Q2. What is Python Path
  • Ans. 

    Python Path is the location where Python is installed on a computer.

    • Python Path is the directory where the Python interpreter is located.

    • It is used by the operating system to find and execute Python scripts.

    • The Python Path can be set as an environment variable to make it easier to run Python scripts from any directory.

  • Answered by AI

Skills evaluated in this interview

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Timing: Morning
How was the environment? It happened in the Computer Lab of my institution
All students were assigned a computer and we had to solve questions on hackerrank

  • Q1. 

    Order of People Heights Problem Statement

    Consider 'N' individuals numbered from 0 to N-1 standing in a queue. You are provided with two arrays: Height and Infront, each consisting of 'N' non-negative int...

  • Ans. 

    The task is to find the actual order of people in a queue based on their heights and the number of taller people in front of them.

    • Iterate through the given arrays and create a list of tuples containing the height and number of taller people for each person.

    • Sort the list of tuples in descending order of height and ascending order of the number of taller people.

    • Create an empty result list and insert each tuple into the r...

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Round was a mix of concepts from OOPS, OS and Problem Solving

  • Q1. 

    Binary Search Tree Value Finder

    Given a Binary Search Tree (BST) and a key value 'X', determine if there exists a node within the BST containing the value 'X'.

    Example:

    Input:
    Consider the tree represe...
  • Ans. 

    The task is to find if a given value is present in a Binary Search Tree (BST).

    • Start from the root node and compare the value with the target value.

    • If the value matches, return true.

    • If the target value is less than the current node value, move to the left child.

    • If the target value is greater than the current node value, move to the right child.

    • Repeat the process until a match is found or a leaf node is reached.

    • If a leaf...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANVIDIA interview preparation:Topics to prepare for the interview - Data Structures, Algorithms(basic), DBMS, Operating systems, basics of web development.Time required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Try to code the data structures that you have learned to understand things better
Tip 2 : Try to solve the problem even if it is the worst possible solution you think and then try to optimize don't jump to get the
best possible solution
Tip 3 : Discuss things among peers it helps to improve the understanding, even try to teach someone anything new you learn, this is very helpful during the interviews as you will have habit of explaining things

Application resume tips for other job seekers

Tip 1 : Try to be honest in the resume don't write something you don't know, most of the time it backfires.
Tip 2 : Try to make 2 good projects for cv and know about the challenges you can face on the project and think about how you can solve that challenge.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Tell us about yourself ?
  • Q2. Any knowledge of Networks/DS?
  • Ans. 

    Yes

    • Knowledge of network protocols and architectures

    • Understanding of data structures and algorithms

    • Experience with network troubleshooting and analysis

    • Familiarity with network security and encryption

    • Proficiency in network programming and socket programming

  • Answered by AI
  • Q3. Which projects do you like the most?
  • Q4. How was your test ?
  • Ans. 

    The test went well, I was able to complete all the tasks within the given time frame.

    • I prepared well for the test by reviewing relevant materials

    • I managed my time effectively during the test

    • I was able to solve all the problems and complete all the tasks

    • I double-checked my work to ensure accuracy

  • Answered by AI
  • Q5. Why CISCO ? Tell something about it
  • Q6. Which companies have you applied for till day 4 ?

Interview Preparation Tips

Round: Test
Experience: 30 questions on Technical knowledge - Basic C, DS, Microprocessor, OS, Networks, Circuit Designs.
20 questions on Aptitude.
Total Questions: 50

Round: Technical Interview
Experience: It was a 25-30 minute round. Apart from the questions mentioned, they asked questions related to BTP(Signal Processing) and Microprocessor 8085.
Tips: Basic C, EE 370 and Microprocessor 8085 will be helpful. They will look for Networks related questions. Revise the related courses and attend PPTs.

Round: HR Interview
Experience: It was a 15-minute round.

General Tips: Analytical thinking is important and you should have good technical knowledge and a decent academic record.
College Name: IIT KANPUR

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: It was a blend of topics from IT,CSE and ECE. Try to concentrate on coding and networks for this round. mostly luck based

Round: Group Discussion
Experience: A very easy round. Can easily clear it if you have minimum skills

Round: Technical Interview
Experience: needs a sound knowledge in networking .

Round: HR Interview
Experience: your personality and the way you behave matters a lot. Try to be humble and truthful

General Tips: as I mentioned earlier keep trying never loose hope
Skills: communication skills, grasping power , knowledge
College Name: VIT VELLORE
Motivation: high package :P
Funny Moments: none . but had to go to bangalore for interview which was fun :)

Lumen Technologies Interview FAQs

How many rounds are there in Lumen Technologies Software QA Engineer interview?
Lumen Technologies interview process usually has 1 rounds. The most common rounds in the Lumen Technologies interview process are Technical.
How to prepare for Lumen Technologies Software QA Engineer 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 Automation Testing, Java, Javascript, Manual Testing and Middleware Testing.

Tell us how to improve this page.

Interview Questions from Similar Companies

Cisco Interview Questions
4.2
 • 375 Interviews
Indus Towers Interview Questions
3.8
 • 183 Interviews
Nvidia Interview Questions
3.7
 • 108 Interviews
BT Business Interview Questions
4.0
 • 81 Interviews
Tejas Networks Interview Questions
4.0
 • 76 Interviews
Arista Networks Interview Questions
4.1
 • 43 Interviews
Redington Interview Questions
4.0
 • 34 Interviews
View all
Lumen Technologies Software QA Engineer Salary
based on 50 salaries
₹5 L/yr - ₹8.5 L/yr
11% less than the average Software QA Engineer Salary in India
View more details

Lumen Technologies Software QA Engineer Reviews and Ratings

based on 8 reviews

4.8/5

Rating in categories

4.6

Skill development

4.8

Work-life balance

4.5

Salary

4.8

Job security

4.8

Company culture

4.6

Promotions

4.8

Work satisfaction

Explore 8 Reviews and Ratings
Software Engineer
445 salaries
unlock blur

₹3.3 L/yr - ₹13 L/yr

Senior Software Engineer
279 salaries
unlock blur

₹6.1 L/yr - ₹22.3 L/yr

Module Lead
158 salaries
unlock blur

₹9.5 L/yr - ₹22 L/yr

Software Development Engineer
135 salaries
unlock blur

₹5 L/yr - ₹9.7 L/yr

Senior Engineer
101 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Explore more salaries
Compare Lumen Technologies with

Sterlite Technologies

3.8
Compare

Indus Towers

3.8
Compare

Cisco

4.2
Compare

BT Business

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