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 Process Analyst Interview Questions and Answers

Updated 27 Aug 2021

Lumen Technologies Process Analyst Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Introduction, final year projects , basics of progming languages,DBMS,oop. And the concepts of sap abap

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and give the relevant answer don't fake yourself

Interview questions from similar companies

Interview Preparation Tips

Round: Extempore
Experience: You need to speak on a random topic for 1-2 minutes
Tips: Just speak confidently

Round: Test
Duration: 20 minutes
Total Questions: 20

College Name: D.A.V College Jalandhar
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. 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 - Coding Test 

90 mins , 3 coding questions

Round 3 - Technical 

(1 Question)

  • Q1. Sorting techniques, Major Project, OS, DSA

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic concepts well.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. They asked Journal entries
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

Reasoning and English Comprehension

Round 3 - HR 

(1 Question)

  • Q1. Speak on a topic
Round 4 - One-on-one 

(1 Question)

  • Q1. Salary expectation
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Psychometric test, 5 mins

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well, be confident

I applied via Campus Placement and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic Questions of OS, OOPs Conepts, datastructures and Algorithms

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn every topic thoruoghly, they ask little of everything for internship

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.
  • Ans. 

    Program to determine system's endianness

    • Check the endianness by storing a multi-byte integer and checking the byte order

    • Use bitwise operations to extract the least significant byte

    • If the least significant byte is at the lowest memory address, it's little-endian

    • If the least significant byte is at the highest memory address, it's big-endian

  • Answered by AI
  • 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?
  • Ans. 

    Function pointers in C are used to store the address of functions, allowing for dynamic function calls and callbacks.

    • Function pointers can be used to implement callbacks in event-driven programming.

    • They can be used to switch between different functions at runtime.

    • Function pointers are commonly used in implementing data structures like function pointers in an array of function pointers.

    • Example: void (*funcPtr)(int) = &a

  • Answered by AI
  • Q5. Design a data structure to implement multi-threading.
  • Ans. 

    Design a data structure for multi-threading

    • Use a thread-safe queue to manage tasks for each thread

    • Implement a lock or semaphore to control access to shared resources

    • Consider using condition variables for synchronization

    • Use atomic operations for shared variables to prevent race conditions

  • Answered by AI
  • 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?
  • Ans. 

    A storage class in programming defines the scope and lifetime of variables.

    • Storage classes include auto, register, static, and extern.

    • Auto variables are created when a function is called and destroyed when the function ends.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared outside of any function and can be accessed

  • Answered by AI
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

Tell us how to improve this page.

Interview Questions from Similar Companies

Cisco Interview Questions
4.2
 • 375 Interviews
Indus Towers Interview Questions
3.7
 • 185 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
 • 44 Interviews
Redington Interview Questions
4.0
 • 34 Interviews
View all
Lumen Technologies Process Analyst Salary
based on 23 salaries
₹5.5 L/yr - ₹7.4 L/yr
59% more than the average Process Analyst Salary in India
View more details

Lumen Technologies Process Analyst Reviews and Ratings

based on 6 reviews

2.6/5

Rating in categories

2.1

Skill development

2.6

Work-life balance

2.3

Salary

2.4

Job security

2.3

Company culture

1.9

Promotions

2.2

Work satisfaction

Explore 6 Reviews and Ratings
Software Engineer
442 salaries
unlock blur

₹3.3 L/yr - ₹13 L/yr

Senior Software Engineer
278 salaries
unlock blur

₹6.5 L/yr - ₹21.5 L/yr

Module Lead
143 salaries
unlock blur

₹10 L/yr - ₹22 L/yr

Software Development Engineer
135 salaries
unlock blur

₹5 L/yr - ₹9.7 L/yr

Software Developer
109 salaries
unlock blur

₹5.4 L/yr - ₹22.3 L/yr

Explore more salaries
Compare Lumen Technologies with

Sterlite Technologies

3.8
Compare

Indus Towers

3.7
Compare

Cisco

4.2
Compare

BT Business

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