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 Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Infosys Digital System Engineer Interview Questions and Answers

Updated 23 Jan 2023

7 Interview questions

A Digital System Engineer was asked
Q. What are the differences between truncate, delete, and drop commands?
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

A Digital System Engineer was asked
Q. Write code to implement the bubble sort algorithm.
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...

Digital System Engineer Interview Questions Asked at Other Companies

asked in Infosys
Q1. How do you 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. What are the differences between truncate, delete, and drop comma ... read more
asked in Infosys
Q5. Compare sets, lists, and tuples.
A Digital System Engineer was asked
Q. How do you 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

A Digital System Engineer was asked
Q. Compare sets, lists, and tuples.
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 use...

A Digital System Engineer was asked
Q. Write a function to calculate the average of an array of numbers.
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

🔥 Asked by recruiter 4 times
A Digital System Engineer was asked
Q. 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 oth...

A Digital System Engineer was asked
Q. 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 t...

Are these interview questions helpful?

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 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 - Aptitude Test 

No aptitude test in this round.

Round 3 - 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.
  • 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

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
Round difficulty - null
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
Round difficulty - null
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.

What people are saying about Infosys

View All
yedabhai
5d
works at
Hyperpure
Are we not even safe in our own workplaces?
An Infosys employee was arrested for secretly recording women in the office washroom. Over 30 videos were found on his phone. This isn't just shocking, it's horrifying. Offices are meant to be safe, respectful spaces. 🙎 When will companies truly prioritize safety and surveillance in all corners, not just the visible ones?
FeedCard Image
Got a question about Infosys?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Job Portal and was interviewed before Dec 2019. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. First they ask basic questions like HTML SQL Java.

Interview Preparation Tips

Interview preparation tips for other job seekers - First we learn basics programming knowledge and we confident to attend interview and speak bold.

I applied via Naukri.com and was interviewed in Aug 2018. There was 0 interview round.

Interview Preparation Tips

General Tips: All Java basic questions will be asked including servlets and jsp even about application and web servers. To clear,1st round you should have strong core Java knowledge along with few real time examples. Collections are mandatory.
Database knowledge could be expected. RestFul and soap along with spring and spring boot, your project details and your responsibilities.
Skills: SOAP, RestFul, Spring, Springboot, Java Application Development, Java Programming, Javascript, Communication, Body Language, Problem Solving, Analytical Skills, Decision Making Skills
Duration: 1-4 weeks

I applied via Company Website and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. By Rajkumar Bharathi, I stay at Trichy
  • Q2. I have completed my B.E from kalasalingam university in 2020, with a score of 6.33
  • Q3. I am a fresher need this jobs

Interview Preparation Tips

Interview preparation tips for other job seekers - Dress for the job or company
Are these interview questions helpful?

I applied via Campus Placement and was interviewed before Mar 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was placed through campus . Did not have to give the appitude / online exam as I was among top 10 students from the college . In the interview panel ,we had 3 people .one manager and two technical / staf...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and try to answer all. If something is out of your scope and you don't know ,politely tell them you don't know . Keep yourself engaged with the panel . In between talk to them , just do not give long pause and stares . It make things akward . Hope it helps

I applied via Campus Placement and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident , easy to crack

I applied via Applied in more than one job portal can't remember now. and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About struts framework.

Interview Preparation Tips

Interview preparation tips for other job seekers - I had three rounds of telephonic, technical, HR, interviews, I can say this confidence is important in all aspects.

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.

Overall Interview Experience Rating

1/5

based on 1 interview experience

Difficulty level

Hard 100%

Duration

More than 8 weeks 100%
View more
Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
LTIMindtree Interview Questions
3.7
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.5k Interviews
View all
Infosys Digital System Engineer Salary
based on 27 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

1.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

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

₹4.8 L/yr - ₹10 L/yr

Senior Systems Engineer
53.8k salaries
unlock blur

₹2.5 L/yr - ₹6.3 L/yr

Technical Lead
35.1k salaries
unlock blur

₹9.4 L/yr - ₹16.4 L/yr

System Engineer
32.5k salaries
unlock blur

₹2.4 L/yr - ₹5.5 L/yr

Senior Associate Consultant
31.2k salaries
unlock blur

₹8.2 L/yr - ₹15 L/yr

Explore more salaries
Compare Infosys with

TCS

3.6
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.7
Compare
write
Share an Interview