Upload Button Icon Add office photos

Filter interviews by

Thomson Digital Software Engineer Interview Questions and Answers

Updated 28 Jun 2022

Thomson Digital Software Engineer Interview Experiences

1 interview found

Software Engineer Interview Questions & Answers

user image Manikandan Jayapal

posted on 28 Jun 2022

Round 1 - One-on-one 

(1 Question)

  • Q1. Oops, collections, threads, spring boot, etc..

Interview Preparation Tips

Interview preparation tips for other job seekers - Good process and manager is very friendly and cool

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Aug 2022. There were 5 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 

Offline pool campus, 30 apti and 30 tech mcq

Round 3 - Coding Test 

3 coding qn on linked list and recursion.
It was a pen and paper exam, we wrote the code on paper

Round 4 - One-on-one 

(2 Questions)

  • Q1. Offline tech interview for 50 minutes.
  • Q2. 4 coding qn on hashing but without using hash, 4 sql and basic oops concept qustions
Round 5 - HR 

(1 Question)

  • Q1. Basic hr qustions like my interest and also some tech qustions

Interview Preparation Tips

Topics to prepare for ARC Document Solutions Software Engineer interview:
  • Dsa
  • OOPS
  • SQL
  • Software Development
Interview preparation tips for other job seekers - Regularly Practise dsa, clear the concept of oops, and be confident
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jul 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Dsa question about maps

Round 2 - Technical 

(2 Questions)

  • Q1. Design robotic restaurant
  • Ans. 

    Robotic restaurant design for automated food preparation and delivery

    • Implement robotic arms for cooking and food preparation

    • Utilize conveyor belts for transporting dishes to customers

    • Incorporate automated order taking and payment systems

    • Design a user-friendly interface for customers to place orders and customize meals

    • Ensure efficient cleaning and maintenance processes for the robots

  • Answered by AI
  • Q2. How to achieve fault tolerance
  • Ans. 

    Achieve fault tolerance by implementing redundancy, monitoring systems, and graceful degradation.

    • Implement redundancy by having backup systems in place to take over in case of failure

    • Monitor systems continuously to detect faults and address them proactively

    • Use graceful degradation to ensure that the system remains functional even if certain components fail

  • Answered by AI
Round 3 - Coding Test 

Design coupon system based on reqs

Round 4 - Technical 

(2 Questions)

  • Q1. Brute force algo
  • Q2. Cdn type questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

It was a 90 minute coding test, involving 3 problems:
1-Given points on a 2d plane, you can delete one point, what is the minimum maximum distance you can have?
2-LFU Cache
3-Given an array with elements 0,1, your task is to find number of ways to divide this array into contiguous chunks so that each chunk has only one 1 in it.

Round 3 - Technical 

(2 Questions)

  • Q1. How do you avoid method overriding?
  • Ans. 

    To avoid method overriding, make the method final or private.

    • Declare the method as final to prevent it from being overridden in subclasses.

    • Declare the method as private to hide it from subclasses.

    • Use the @Override annotation to ensure that a method is actually overriding a superclass method.

  • Answered by AI
  • Q2. What is the 'finalize' keyword for?
  • Ans. 

    The 'finalize' keyword is used in Java to perform cleanup operations before an object is garbage collected.

    • The 'finalize' method is called by the garbage collector before reclaiming an object's memory.

    • It can be used to release resources like closing files or sockets.

    • It is not recommended to rely on 'finalize' for resource cleanup as it is not guaranteed to be called.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for your DSA problems.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. How nodejs works internally?
  • Ans. 

    Node.js is a runtime environment that executes JavaScript code outside of a web browser.

    • Node.js uses the V8 JavaScript engine from Google Chrome to execute code.

    • It is built on the event-driven, non-blocking I/O model, making it lightweight and efficient.

    • Node.js uses a single-threaded event loop to handle multiple concurrent connections.

    • It has a built-in module system that allows developers to easily add functionality t

  • Answered by AI
  • Q2. Std input output questions of js

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

DSA Hackerrank assessment

Round 2 - Technical 

(2 Questions)

  • Q1. DSA questions - Tree, Binary Search
  • Q2. 2sum various approaches
  • Ans. 

    The 2sum problem involves finding two numbers in an array that add up to a given target.

    • One approach is to use a hash table to store the complement of each number as we iterate through the array.

    • Another approach is to sort the array and use two pointers, one starting from the beginning and the other from the end, to find the pair.

    • If the array is sorted, we can also use binary search to find the complement of each numbe

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Normal dsa questions

Round 2 - Technical 

(3 Questions)

  • Q1. Questions related to OOPs, multi threading etc
  • Q2. Explain OPPs with example
  • Ans. 

    Object-oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • Objects: Instances of classes that encapsulate data and behavior

    • Classes: Blueprint for creating objects with attributes and methods

    • Inheritance: Allows a class to inherit attributes and methods from another class

    • Polymorphism: Ability for objects to take on different forms or behaviors

    • Encapsulation: Bund...

  • Answered by AI
  • Q3. Explain Encapsulation
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit.

    • Encapsulation helps in hiding the internal state of an object and only exposing necessary functionalities.

    • It allows for better control over the data by preventing direct access from outside the class.

    • Encapsulation promotes code reusability and modularity by organizing related data and methods together.

    • Example: In a cla...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Framework level and technology level questions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Frontend related questions
Round 2 - Coding Test 

Backend fastapi questions

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - C++ 

(2 Questions)

  • Q1. This is for freshers
  • Q2. All rounds information

Interview Preparation Tips

Interview preparation tips for other job seekers - This is for freshers. After your profile got shortlisted, you need to go through the Aptitude, MCQ's and Coding questions based on C++. If you clear that round, there will be 2 rounds of technical interviews (Technical interview and Techno + Managerial). If you clear 2 rounds as well. Then HR round where the offer will be rolled out.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Nov 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the use of namespace in Php?
  • Ans. 

    Namespace in PHP is used to avoid naming conflicts between classes, functions, and variables.

    • Namespace allows grouping of related classes, functions, and variables under a common name.

    • It helps in organizing code and makes it easier to maintain.

    • Namespace can be declared using the 'namespace' keyword followed by the namespace name.

    • Example: namespace MyNamespace;

    • To use a class or function from a namespace, we need to spec...

  • Answered by AI
  • Q2. Difference between interface and abstract class
  • Ans. 

    Interface defines only method signatures while abstract class can have both method signatures and implementations.

    • An interface can be implemented by multiple classes while an abstract class can only be extended by one class.

    • An abstract class can have constructors while an interface cannot.

    • An abstract class can have non-abstract methods while an interface can only have abstract methods.

    • An abstract class can have instanc...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong oops skills expected
For Php, get knowledge about latest concepts

Skills evaluated in this interview

Thomson Digital Interview FAQs

How many rounds are there in Thomson Digital Software Engineer interview?
Thomson Digital interview process usually has 1 rounds. The most common rounds in the Thomson Digital interview process are One-on-one Round.
How to prepare for Thomson Digital Software Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Thomson Digital. The most common topics and skills that interviewers at Thomson Digital expect are Indesign, Pagination, Typesetting, XML and XSLT.

Tell us how to improve this page.

Fast track your campus placements

View all
Thomson Digital Software Engineer Salary
based on 6 salaries
₹5 L/yr - ₹10.5 L/yr
19% less than the average Software Engineer Salary in India
View more details

Thomson Digital Software Engineer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.8

Salary

4.5

Job security

4.6

Company culture

4.6

Promotions

4.6

Work satisfaction

Explore 2 Reviews and Ratings
Copy Editor
20 salaries
unlock blur

₹1.8 L/yr - ₹3.8 L/yr

Project Manager
20 salaries
unlock blur

₹3 L/yr - ₹7.2 L/yr

Graphic Designer
16 salaries
unlock blur

₹2 L/yr - ₹4.4 L/yr

Indesign Executive
13 salaries
unlock blur

₹1.8 L/yr - ₹5.3 L/yr

SME
13 salaries
unlock blur

₹7.8 L/yr - ₹12 L/yr

Explore more salaries
Compare Thomson Digital with

Dainik Bhaskar Group

4.3
Compare

TNQ Tech Private Limited

3.6
Compare

Times Group

3.8
Compare

OMICS International

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