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.6

based on 37.8k Reviews

Filter interviews by

Infosys Digital Specialist Interview Questions, Process, and Tips

Updated 28 Jan 2025

Top Infosys Digital Specialist Interview Questions and Answers

  • Q1. Given a circular array containing of positive integers value. your task is to find the maximum sum of a elements such that no numbers are adjacent to each other in the ar ...read more
  • Q2. Maximum sum in a circular Array such that no two elements are adjacents to each other.
  • Q3. Algorithm for tree in Data structures
View all 15 questions

Infosys Digital Specialist Interview Experiences

22 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Leetcode Problems
Medium to easy

Round 2 - Technical 

(2 Questions)

  • Q1. Find the vowels
  • Ans. 

    Identify and list the vowels in a given string.

    • Loop through each character in the string

    • Check if the character is a vowel (a, e, i, o, u)

    • Add the vowel to a list/array

  • Answered by AI
  • Q2. Project you worked on
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 questions - 1 easy, 1 medium and 1 hard level questions were asked, if you solve between 1 and partial another u will be considered for DSE role if you solve 2 or more u will get PP role

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic programming questions were asked
  • Q2. For eg, basic python questions

Digital Specialist Interview Questions Asked at Other Companies

asked in Infosys
Q1. Given a circular array containing of positive integers value. you ... read more
asked in Amazon
Q2. 4 . WHAT DO U KNOW ABOUT DIGITAL MARKETING?
asked in Infosys
Q3. Maximum sum in a circular Array such that no two elements are adj ... read more
asked in Infosys
Q4. Algorithm for tree in Data structures
asked in Infosys
Q5. Conplete ecommerce Project details from frontend, backend till de ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. What is OOPS ii
  • Ans. 

    OOPS stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.

    • OOPS focuses on creating objects that contain data in the form of attributes and code in the form of methods.

    • Encapsulation, inheritance, and polymorphism are key principles of OOPS.

    • Examples of OOPS languages include Java, C++, and Python.

  • Answered by AI
  • Q2. What is Polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to represent multiple data types.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q3. Relatime example of polymorphism
  • Ans. 

    Polymorphism in programming refers to the ability of a function or method to behave differently based on the object it is called with.

    • Polymorphism allows different classes to be treated as instances of a common superclass.

    • An example of polymorphism is a superclass Animal with subclasses Dog and Cat. Both Dog and Cat can have a method called 'makeSound', but they will produce different sounds when called.

    • Polymorphism he...

  • Answered by AI
  • Q4. What is multithreading
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, allowing for better utilization of resources.

    • Multithreading allows for parallel execution of multiple tasks on a single CPU.

    • Each thread has its own set of registers and stack, but shares the same memory space.

    • Multithreading can improve performance and responsiveness of applications.

    • Example: A web server handling multiple requests concurren...

  • Answered by AI
  • Q5. What is collections in java
  • Ans. 

    Collections in Java refer to classes and interfaces that provide a way to store and manipulate groups of objects.

    • Collections framework in Java includes interfaces like List, Set, and Map, along with classes like ArrayList, HashSet, and HashMap.

    • Collections provide methods for adding, removing, and accessing elements in a structured way.

    • Collections also offer features like sorting, searching, and iterating over elements

  • Answered by AI

Skills evaluated in this interview

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

Its had 3 question (2 easy , 1 medium) happen on some internal coding platform of infosys

Round 2 - One-on-one 

(2 Questions)

  • Q1. Previous company related question
  • Q2. What stack i had in resume based on that question were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and try to answer every question

Infosys interview questions for designations

 Digital Marketing Specialist

 (1)

 Digital Marketer

 (2)

 Specialist Programmer

 (88)

 Process Specialist

 (13)

 Technical Specialist

 (4)

 Specialist Engineer

 (4)

 Technology Specialist

 (3)

 Accounting Specialist

 (2)

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected
Round 1 - Coding Test 

Array, sorting ,tree

Round 2 - HR 

(3 Questions)

  • Q1. Project reltd ques
  • Q2. What is the difficulty you faced how u handed
  • Ans. 

    I faced difficulty in managing multiple digital marketing campaigns simultaneously.

    • Balancing time and resources for each campaign

    • Prioritizing tasks based on campaign performance

    • Ensuring consistent messaging and branding across all campaigns

  • Answered by AI
  • Q3. What was yr role in the proj
  • Ans. 

    I was responsible for managing the digital marketing strategy and execution for the project.

    • Developed and implemented digital marketing campaigns to increase brand awareness and drive traffic to the website

    • Managed social media accounts and created engaging content to attract and retain customers

    • Utilized analytics tools to track and measure the success of digital marketing efforts

    • Collaborated with cross-functional teams...

  • Answered by AI

Get interview-ready with Top Infosys Interview Questions

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

General coding interview

Round 2 - Technical 

(2 Questions)

  • Q1. Some basic easy leetcode questions
  • Q2. One puzzle that can be found on gfg

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have your basic DSA clear, and clear concepts of the programming language you wrote in your resume, you can crack it. Just be confident
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Implement Fibonacci Series
  • Ans. 

    The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with two initial numbers, usually 0 and 1

    • Add the two previous numbers to get the next number in the sequence

    • Repeat this process to generate the Fibonacci series

  • Answered by AI
  • Q2. Implement Anagram
  • Ans. 

    Implement a function to check if two strings are anagrams of each other.

    • Create a function that takes in two strings as input

    • Remove all spaces and punctuation from both strings

    • Convert both strings to lowercase

    • Sort both strings alphabetically

    • Check if the sorted strings are equal, return true if they are anagrams, false otherwise

  • Answered by AI
  • Q3. Implement Double double-linked List
  • Ans. 

    A double double-linked list is a data structure where each node has two pointers, one pointing to the next node and one pointing to the previous node.

    • Create a Node class with data, next, prev, next2, and prev2 pointers

    • Implement methods to add, remove, and traverse nodes in the list

    • Consider edge cases like adding/removing nodes at the beginning or end of the list

  • Answered by AI
  • Q4. SQL : Joins, Right Join, Left Join
  • Q5. Aptitude: Real time Scenario Questions

Skills evaluated in this interview

Digital Specialist | Specialist Engineer interview

user image Tech and Target

posted on 16 Nov 2021

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in May 2023. There were 4 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 

There were 30questions of aptitude and some verbal reasoning

Round 3 - Coding Test 

There were 3codes. 1 is easy level and 2 are medium harder

Round 4 - Technical 

(5 Questions)

  • Q1. Self introduction
  • Q2. Time Complexity of Merge Sort
  • Ans. 

    Merge Sort has a time complexity of O(n log n).

    • Merge Sort is a divide-and-conquer algorithm that recursively divides the array into two halves.

    • It then merges the sorted halves to produce a sorted array.

    • The time complexity of Merge Sort is O(n log n), where n is the number of elements in the array.

    • This makes Merge Sort efficient for sorting large arrays.

    • Example: Sorting an array of 8 elements would require 3 merge steps...

  • Answered by AI
  • Q3. Algorithm for tree in Data structures
  • Ans. 

    An algorithm for trees in data structures.

    • A tree is a hierarchical data structure with a set of connected nodes.

    • Common operations on trees include insertion, deletion, and traversal.

    • There are different types of trees such as binary trees, AVL trees, and B-trees.

    • Tree algorithms often involve recursion and depth-first or breadth-first traversal.

    • Examples of tree algorithms include finding the height of a tree or checking

  • Answered by AI
  • Q4. Difference between list and tuple
  • Ans. 

    Lists and tuples are both sequence data types in Python, but they have some key differences.

    • Lists are mutable, meaning their elements can be changed, added, or removed.

    • Tuples are immutable, meaning their elements cannot be changed once defined.

    • Lists are defined using square brackets [], while tuples use parentheses ().

    • Lists are typically used for collections of similar items, while tuples are used for heterogeneous dat...

  • Answered by AI
  • Q5. More questions on Data structures

Interview Preparation Tips

Topics to prepare for Infosys Digital Specialist interview:
  • Data Structures
  • Python
  • C
  • OOPS
Interview preparation tips for other job seekers - Be perfect in fundamentals

Skills evaluated in this interview

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

3 coding questions for DSE for 2024 clear 2 questions for DSE .

Round 2 - Technical 

(1 Question)

  • Q1. Opps and sql in-depth

Infosys Interview FAQs

How many rounds are there in Infosys Digital Specialist interview?
Infosys interview process usually has 2-3 rounds. The most common rounds in the Infosys interview process are Coding Test, Technical and One-on-one Round.
What are the top questions asked in Infosys Digital Specialist interview?

Some of the top questions asked at the Infosys Digital Specialist interview -

  1. Given a circular array containing of positive integers value. your task is to f...read more
  2. Maximum sum in a circular Array such that no two elements are adjacents to each...read more
  3. Algorithm for tree in Data structu...read more

Tell us how to improve this page.

Infosys Digital Specialist Interview Process

based on 18 interviews

2 Interview rounds

  • Coding Test Round
  • Technical Round
View more
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
 • 8.1k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Infosys Digital Specialist Salary
based on 721 salaries
₹3.8 L/yr - ₹9.5 L/yr
9% less than the average Digital Specialist Salary in India
View more details

Infosys Digital Specialist Reviews and Ratings

based on 86 reviews

3.3/5

Rating in categories

3.4

Skill development

3.4

Work-life balance

2.3

Salary

4.2

Job security

3.3

Company culture

2.0

Promotions

2.9

Work satisfaction

Explore 86 Reviews and Ratings
Technology Analyst
56.2k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
50.1k salaries
unlock blur

₹2.8 L/yr - ₹8 L/yr

System Engineer
39.2k salaries
unlock blur

₹2.5 L/yr - ₹7.9 L/yr

Technical Lead
30.6k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.5k salaries
unlock blur

₹6.2 L/yr - ₹17 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Accenture

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