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
schedule2
Verified Icon
6d
works at
Cognizant
Salary expectation
I have 5+ years of experience in springboot microservices, currently working in CTS and having 10L CTC , wanted to switch in Infosys or Accenture like companies, how much should I ask for 15L-18L ? Just worried if I ask more they can reject my application, please help me with some numbers
Got a question about Infosys?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Company Website and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident adn clear when you answer

I applied via Amcat and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Refer R S Agarwal book for apptitude

Round 2 - One-on-one 

(1 Question)

  • Q1. Write a c program on fractional numbers
  • Ans. 

    A C program to perform arithmetic operations on fractional numbers.

    • Use float or double data type to store fractional numbers.

    • Use scanf() to take input from the user.

    • Perform arithmetic operations like addition, subtraction, multiplication, and division.

    • Use printf() to display the result.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared refer R S Agarwal book for apptitude test

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

1.It covers all aptitude topics, and English sentences
2.Essay writing
3.Coding

Round 2 - Technical 

(2 Questions)

  • Q1. In TR , languages which u mentioned in resume they will ask Basic programing Questions on Btech project They will say one idea , we need to tell the logic how can we develop (it may varies)
  • Q2. Testing questions Polymorphism, abstraction,constructors, SQL basics
Round 3 - HR 

(5 Questions)

  • Q1. What is your family background?
  • Q2. Why should we hire you?
  • Q3. Tell me about yourself.
  • Q4. What are your strengths and weaknesses?
  • Q5. Knowledge about updated technologies

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume is important for your TR. Mention only languages u know well.
Are these interview questions helpful?

I applied via Naukri.com and was interviewed before Mar 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 

(6 Questions)

  • Q1. What is your family background?
  • Ans. 

    I come from a supportive family that values education and hard work, which has greatly influenced my career path in technology.

    • Parents: My parents are both educators, instilling a love for learning and curiosity in me from a young age.

    • Siblings: I have a younger sister who is pursuing a degree in computer science, and we often collaborate on tech projects together.

    • Family Values: Our family emphasizes the importance of p...

  • Answered by AI
  • Q2. Why should we hire you?
  • Ans. 

    I bring a unique blend of technical skills, problem-solving abilities, and a passion for innovation that aligns with your team's goals.

    • Strong technical skills: Proficient in languages like Python and Java, demonstrated by developing a web application that improved user engagement by 30%.

    • Problem-solving mindset: Successfully resolved a critical bug in a production system under tight deadlines, ensuring minimal downtime.

    • ...

  • Answered by AI
  • Q3. Where do you see yourself in 5 years?
  • Q4. What are your salary expectations?
  • Ans. 

    I expect a competitive salary based on my skills, experience, and industry standards, ideally in the range of $X to $Y.

    • Research industry standards: For example, Glassdoor or Payscale can provide insights into average salaries for similar roles.

    • Consider your experience: If you have 5 years of experience, you might expect a higher salary than someone just starting.

    • Factor in location: Salaries can vary significantly based...

  • Answered by AI
  • Q5. What are your strengths and weaknesses?
  • Ans. 

    I excel in problem-solving and teamwork, but I sometimes struggle with time management under tight deadlines.

    • Strength: Strong problem-solving skills - I enjoy tackling complex coding challenges, like optimizing algorithms for better performance.

    • Strength: Effective teamwork - I thrive in collaborative environments, having successfully led a project with cross-functional teams.

    • Weakness: Time management - I occasionally u...

  • Answered by AI
  • Q6. Tell me about yourself.
Round 3 - Technical 

(1 Question)

  • Q1. Do you have technical certifications? How many programming languages do you known? How many development tools have you used?
  • Ans. 

    Yes, I have technical certifications and I am proficient in multiple programming languages and development tools.

    • I have certifications in Java and Python

    • I am proficient in Java, Python, C++, and JavaScript

    • I have used development tools such as Eclipse, Visual Studio Code, and PyCharm

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on your soft skills
Move frequently
value your reputation
Get experience at a any company

I applied via Company Website and was interviewed before Jan 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Oops based , C# Fundamental , Sql , Jquery , Mvc architecture
Round 2 - Technical 

(1 Question)

  • Q1. ADVANCED QUESTION ON sql ,

Interview Preparation Tips

Interview preparation tips for other job seekers - Be proficient in english nd clear in concepts

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.

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
55.8k salaries
unlock blur

₹4.8 L/yr - ₹11.2 L/yr

Senior Systems Engineer
53.7k salaries
unlock blur

₹2.5 L/yr - ₹6.3 L/yr

Technical Lead
35k salaries
unlock blur

₹7.3 L/yr - ₹20 L/yr

System Engineer
32.5k salaries
unlock blur

₹2.4 L/yr - ₹5.3 L/yr

Senior Associate Consultant
31k salaries
unlock blur

₹6.3 L/yr - ₹17 L/yr

Explore more salaries
Compare Infosys with

TCS

3.6
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.8
Compare
write
Share an Interview