Premium Employer

i

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

Infosys Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 37.1k Reviews

Filter interviews by

Infosys Digital System Engineer Interview Questions, Process, and Tips

Updated 23 Jan 2023

Top Infosys Digital System Engineer Interview Questions and Answers

View all 7 questions

Infosys Digital System Engineer Interview Experiences

4 interviews found

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

No aptitude test in this round.

Round 2 - Coding Test 

3 codes were given and we gave to solved them.

Interview Preparation Tips

Interview preparation tips for other job seekers - My interviewer is very bad. He just misbehaved by making fun of me. I would like to say everyone don't tolerate anything against you. Believe yourself and maintain your attitude. I complained my placement coordinator but no response. Nobody is gonna give a damn about you. You yourself have to fight for yourself. And my interview went for 5 mins nothing he asked and just was laughing at me. It's a trauma students have to face nobody believes them . It totally depends on the interviewer wt questions will be asked.

Digital System Engineer Interview Questions & Answers

user image Chandana Samineni

posted on 11 May 2022

I applied via Company Website and was interviewed in Nov 2021. There were 3 interview rounds.

Round 1 - Coding Test 

Thei round name is Certification round. This round consists of 25 mcqs and 2 coding questions. Test duration is 3 hours. We need to get more than 65 percent to clear this round.

Round 2 - Coding Test 

This round name is Advantage Round. This round is optional. But if we clear this round we will interviewed for the DSE role. If clear only 1st round we will be interviewed for System engineer role.

Round 3 - Technical 

(7 Questions)

  • Q1. Implement bubble sort.
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Compare adjacent elements and swap them if they are in the wrong order

    • Repeat this process until the list is sorted

    • Time complexity is O(n^2)

    • Space complexity is O(1)

    • Example: [5, 3, 8, 4, 2] -> [3, 5, 4, 2, 8] -> [3, 4, 2, 5, 8] -> [3, 2, 4, 5, 8] -> [2, 3, 4, 5, 8] (so

  • Answered by AI
  • Q2. Differences between truncate delete drop
  • Ans. 

    Truncate, delete, and drop are SQL commands used to remove data from a table.

    • Truncate removes all data from a table and resets the identity column

    • Delete removes specific rows from a table

    • Drop removes the entire table from the database

    • Truncate and drop cannot be rolled back, while delete can be

    • Truncate is faster than delete as it does not log individual row deletions

  • Answered by AI
  • Q3. Compare set list tuple.
  • Ans. 

    Set, list, and tuple are data structures in Python with different properties.

    • A set is an unordered collection of unique elements.

    • A list is an ordered collection of elements that can be modified.

    • A tuple is an ordered collection of elements that cannot be modified.

    • Sets are useful for operations like union, intersection, and difference.

    • Lists are useful for storing and accessing data in a specific order.

    • Tuples are useful f...

  • Answered by AI
  • Q4. Calculate average of an array.
  • Ans. 

    Calculate average of an array.

    • Loop through the array and add all the elements

    • Divide the sum by the length of the array

    • Return the average

  • Answered by AI
  • Q5. What is IP address and DNS
  • Ans. 

    IP address is a unique identifier assigned to devices on a network. DNS is a system that translates domain names to IP addresses.

    • IP address stands for Internet Protocol address

    • It is a numerical label assigned to each device connected to a network

    • It serves as a unique identifier for the device

    • DNS stands for Domain Name System

    • It is a system that translates domain names to IP addresses

    • For example, www.google.com is transl

  • Answered by AI
  • Q6. How we implement threads in python.
  • Ans. 

    Python provides a built-in module 'threading' to implement threads.

    • Import the 'threading' module

    • Create a new thread using the 'Thread' class

    • Define the target function for the thread

    • Start the thread using the 'start()' method

    • Join the thread using the 'join()' method

    • Use locks to synchronize access to shared resources

  • Answered by AI
  • Q7. What are ACID properties.
  • Ans. 

    ACID properties are a set of properties that ensure database transactions are processed reliably.

    • ACID stands for Atomicity, Consistency, Isolation, and Durability.

    • Atomicity ensures that a transaction is treated as a single, indivisible unit of work.

    • Consistency ensures that a transaction brings the database from one valid state to another.

    • Isolation ensures that concurrent transactions do not interfere with each other.

    • Du...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Infosys Digital System Engineer interview:
  • Geeksforgeek
Interview preparation tips for other job seekers - Prepare data structures and algorithms, DBMS, OperatingSystems, Computer networks.

Skills evaluated in this interview

Digital System Engineer Interview Questions Asked at Other Companies

asked in Infosys
Q1. How we implement threads in python.
asked in Infosys
Q2. What is IP address and DNS
asked in Infosys
Q3. What are ACID properties.
asked in Infosys
Q4. Differences between truncate delete drop
asked in Infosys
Q5. Calculate average of an array.

I applied via Prepinsta and was interviewed in Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

(1 Question)

Round duration - 180 minutes
The first round was Hackwithinfy. This is a coding round and consists of 3 questions- 1 Easy, 1 Medium and 1 Hard. I was able to solve one question completely and passed 14% of the test cases of another question in this round.

  • Q1. Easy question is based on binary search, the medium question is based on the permutation concept, and the hard question is on Dynamic Programming. And I remember the easy question that was : There are th...
  • Ans. 

    Binary search, permutation and dynamic programming based interview question on stone piles.

    • The easy question involves splitting stones from one pile to the other two piles.

    • The medium question involves permutations of a given set of elements.

    • The hard question involves dynamic programming.

    • Test cases involve checking if it is possible to obtain two piles with given number of stones after splitting.

    • The output should be YES

  • Answered by AI
Round 2 - Technical 

(4 Questions)

Round duration - 30 - 45 minutes
After completing an easy question completely and another medium question 14%, I got shortlisted for the Interview.

  • Q1. Introduce yourself
  • Ans. 

    I am a digital system engineer with experience in designing and implementing complex systems.

    • I have a degree in Electrical Engineering

    • I have worked on projects involving FPGA and microcontroller programming

    • I am proficient in programming languages such as Verilog, VHDL, and C

    • I have experience in designing and testing digital circuits

    • I am familiar with various digital communication protocols such as SPI, I2C, and UART

  • Answered by AI
  • Q2. Technical Questions included: OOPS concepts, Multi Threading, Exceptional Handling in Java
  • Ans. 

    Technical questions on OOPS, Multi Threading, and Exceptional Handling in Java.

    • OOPS concepts include inheritance, polymorphism, and encapsulation.

    • Multi Threading allows for concurrent execution of multiple threads.

    • Exceptional Handling is used to handle errors and exceptions in code.

    • Examples of exceptions include NullPointerException and ArrayIndexOutOfBoundsException.

  • Answered by AI
  • Q3. Then he asked me to share my screen and asked to open an online compiler and write the program to sort an array using quick sort. Then he asked me to solve the fibonacci problem using recursion. I answ...
  • Ans. 

    Interview question on sorting an array using quick sort and solving fibonacci problem using recursion.

    • Demonstrate your coding skills by providing both brute force and optimized solutions.

    • Practice coding problems beforehand to be prepared for technical interviews.

    • Be comfortable with online compilers and screen sharing.

    • Quick sort example: https://www.geeksforgeeks.org/quick-sort/

    • Fibonacci recursion example: https://www.g...

  • Answered by AI
  • Q4. After coding problems he moved to SQL queries, he asked how to find the third highest salary of the employee from the employee table. Then he asked the difference between DELETE and TRUNCATE commands.

Interview Preparation Tips

Professional and academic backgroundAt the time of the interview, I had 0 Years (fresher) of experience. My academic qualification is B.Tech from Dr. B. C. Roy Engineering College Durgapur.Infosys interview preparation:Resources to prepare for this interview - I had followed PrepInsta’s website for the coding questionsTips for other job seekers - My advice is just to be calm and confident while answering all the questions don’t be afraid to say “Don’t Know” when you are not aware of the answer. If you answer and pretend to show like you know the answer then it will give your negative impact to the interviewer.Final outcome of the interviewSelected
Round 1 - Hackwithinfy 

(1 Question)

  • Q1. 3 coding questions were given
Round 2 - Technical 

(1 Question)

  • Q1. 2 easy to medium level dsa questions to be written on notepad. one SQL query was asked and basics of HTML,CSS was asked to be written.Few basic hr questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and true. The interview checks your knowledge and if the things given in resume are correct or not.

Infosys interview questions for designations

 System Engineer

 (1.2k)

 System Engineer Hardware

 (101)

 System Engineer Trainee

 (65)

 Assistant System Engineer

 (16)

 System Engineer Specialist

 (12)

 System Engineer 3

 (12)

 System Software Engineer

 (6)

 System Engineer 2

 (5)

Interview questions from similar companies

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

(2 Questions)

  • Q1. How to handle deadlines?
  • Ans. 

    Handling deadlines requires effective time management, prioritization, and communication.

    • Break down tasks into smaller, manageable chunks

    • Use tools like calendars and project management software to track deadlines

    • Prioritize tasks based on urgency and importance

    • Set realistic deadlines and communicate any potential delays in advance

    • Delegate tasks when necessary to meet deadlines

    • Regularly review progress and adjust timelin

  • Answered by AI
  • Q2. Previous experience
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - HR 

(4 Questions)

  • Q1. Direct interview
  • Q2. I need to improve my strength
  • Q3. I need to improve our company
  • Q4. Thanks for everything

Interview Preparation Tips

Interview preparation tips for other job seekers - Thanks when seeking a job, it's essential to identify your strengths, interests, and values. Tailor your resume and cover letter to highlight relevant skills and experiences. Network with professionals in your desired field and utilize online job search platforms. Prepare for interviews by researching the company and practicing common questions. Stay positive and persistent, as finding the right job may take time. Consider internships or volunteer opportunities to gain experience and expand your network. Keep learning and adapting to new trends in your industry to remain competitive in the job market. Good luck!
Interview experience
3
Average
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 - One-on-one 

(1 Question)

  • Q1. Technical based details questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical in details questions
Round 4 - Assignment 

Case studies to be written in detail

Round 5 - One-on-one 

(1 Question)

  • Q1. Technical & scenario based questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell me about your self
Round 2 - Aptitude Test 

Logical Reasoning questions

Round 3 - HR 

(1 Question)

  • Q1. Why should I hire your..?
Round 4 - Group Discussion 

Group discussion with hr

Round 5 - One-on-one 

(1 Question)

  • Q1. Final Manager Round

I applied via Naukri.com and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basis Google Ads question
Round 2 - Behavioral 

(1 Question)

  • Q1. Character round, and questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest, and don't bluff at all. They'll catch you.

I applied via Naukri.com and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - HR 

(2 Questions)

  • Q1. Tell about ur self Family background
  • Q2. Basic questions of digital marketing

Interview Preparation Tips

Interview preparation tips for other job seekers - Communication skills Positive thinking Flexible to work in any environment

Infosys Interview FAQs

How many rounds are there in Infosys Digital System Engineer interview?
Infosys interview process usually has 2-3 rounds. The most common rounds in the Infosys interview process are Coding Test, Technical and Resume Shortlist.
What are the top questions asked in Infosys Digital System Engineer interview?

Some of the top questions asked at the Infosys Digital System Engineer interview -

  1. How we implement threads in pyth...read more
  2. What is IP address and ...read more
  3. What are ACID properti...read more

Tell us how to improve this page.

People are getting interviews through

based on 3 Infosys interviews
Company Website
Campus Placement
33%
33%
34% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
View all
Infosys Digital System Engineer Salary
based on 18 salaries
₹5.5 L/yr - ₹7.1 L/yr
At par with the average Digital System Engineer Salary in India
View more details

Infosys Digital System Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

3.0

Skill development

3.0

Work-Life balance

3.0

Salary & Benefits

1.0

Job Security

3.0

Company culture

3.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 1 Review and Rating
Technology Analyst
56k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
49.3k salaries
unlock blur

₹2.8 L/yr - ₹9.2 L/yr

System Engineer
38.8k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
30.6k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27k salaries
unlock blur

₹6.2 L/yr - ₹16.8 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Accenture

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview