Upload Button Icon Add office photos

Filter interviews by

Tcg Digital Solutions Software Developer Interview Questions, Process, and Tips

Updated 5 Nov 2022

Top Tcg Digital Solutions Software Developer Interview Questions and Answers

  • Q1. How does map and unordered map are implemented in C++ STL library.
  • Q2. How to debug a C++ program containg a segmentation fault using GDB, how to add break points at suspected function, how to take core dumps of a binary.
  • Q3. How to grep a value from a file containing key = value format enteries in each line when key is given using bash or shell scripting.
View all 9 questions

Tcg Digital Solutions Software Developer Interview Experiences

3 interviews found

I applied via Hirect and was interviewed in May 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 - Technical 

(4 Questions)

  • Q1. How does map and unordered map are implemented in C++ STL library.
  • Ans. 

    Map and unordered map are implemented as associative containers in C++ STL library.

    • Map is implemented as a balanced binary search tree while unordered map is implemented as a hash table.

    • Map stores elements in a sorted order while unordered map does not guarantee any specific order.

    • Map has a logarithmic time complexity for insertion, deletion, and search operations while unordered map has an average constant time comple...

  • Answered by AI
  • Q2. Write a program which create a class for student database management and override +, -, and other operators based on the interviewer's ask.
  • Q3. What are virtual functions, Vtables, and method overriding in C++
  • Ans. 

    Virtual functions are functions that can be overridden in derived classes. Vtables are tables of function pointers used for dynamic dispatch.

    • Virtual functions allow for polymorphism and dynamic binding

    • Vtables are used to implement virtual functions

    • Method overriding is when a derived class provides its own implementation of a virtual function

    • Virtual functions are declared using the virtual keyword

    • Example: class Animal {...

  • Answered by AI
  • Q4. How to debug a C++ program containg a segmentation fault using GDB, how to add break points at suspected function, how to take core dumps of a binary.
  • Ans. 

    Debugging C++ program with segmentation fault using GDB

    • Compile the program with -g flag to include debugging symbols

    • Run the program with GDB and set breakpoints at suspected functions

    • Use 'run' command to execute the program within GDB

    • Use 'backtrace' command to see the call stack when the segmentation fault occurs

    • Use 'print' command to inspect variables and memory addresses

    • Use 'core dump' command to generate a core dump

  • Answered by AI
Round 3 - Technical 

(5 Questions)

  • Q1. What is singleton class?
  • Ans. 

    A singleton class is a class that can only have one instance created at a time.

    • Singleton classes are often used in situations where only one instance of a class is needed, such as for managing a database connection or a configuration file.

    • The singleton pattern is implemented by making the constructor of the class private and providing a static method that returns the single instance of the class.

    • Singleton classes can b...

  • Answered by AI
  • Q2. How to create a singleton class ?
  • Ans. 

    A singleton class is a class that can only have one instance created throughout the lifetime of an application.

    • Create a private constructor to prevent external instantiation.

    • Create a private static instance of the class.

    • Create a public static method to access the instance.

    • Ensure thread safety by using synchronized keyword or static initializer.

    • Example: public class Singleton { private static Singleton instance = null; ...

  • Answered by AI
  • Q3. How to store a key value pairs in C++ data structures where key is same for some of the entries ?
  • Ans. 

    Use C++ map or unordered_map to store key value pairs with same key

    • C++ map and unordered_map are associative containers that store elements in key value pairs

    • If the key is same for some entries, map will store only one entry while unordered_map can store multiple entries

    • Example: map myMap; myMap["key1"] = 1; myMap["key2"] = 2; myMap["key1"] = 3; // myMap["key1"] will be 3

    • Example: unordered_map...

  • Answered by AI
  • Q4. How to grep a value from a file containing key = value format enteries in each line when key is given using bash or shell scripting.
  • Ans. 

    To grep a value from a file with key=value format, use awk command with delimiter as '=' and search for the key.

    • Use awk command with delimiter as '=' to split the line into key and value

    • Search for the key in the key column and print the corresponding value column

    • Example: awk -F'=' '/key/ {print $2}' file.txt

  • Answered by AI
  • Q5. Some basic questions on C++ STL library and data structures.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good understanding of C++ and STL.
Little to some knowledge of desing patterns in oops with C++.
Some knowledge of bash
Knowledge of debuggere like gnu GDB.

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Sep 2021. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain Angular hooks
  • Ans. 

    Angular hooks are functions that allow developers to tap into the lifecycle of a component or directive.

    • Angular hooks are used to perform actions at specific points in the lifecycle of a component or directive

    • There are several types of hooks, including ngOnInit, ngOnChanges, and ngOnDestroy

    • ngOnInit is called once when the component is initialized

    • ngOnChanges is called whenever a data-bound input property changes

    • ngOnDest...

  • Answered by AI
  • Q2. Explain directives , dependency injection, promise and observables,way features, routing, interceptor, communication between components
  • Ans. 

    Explanation of directives, dependency injection, promise and observables, routing, interceptor, and communication between components.

    • Directives are markers on a DOM element that tell AngularJS to attach a specified behavior to that element.

    • Dependency Injection is a design pattern that allows a class to be injected with its dependencies rather than creating them itself.

    • Promises are objects that represent the eventual co...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. What are the projects and technology that I have worked.
Round 3 - Aptitude Test 

I was asked to give amcat test as I had less than 3 years of experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have your basics clear. Prepare for the probable interview questions from internet and other sources.

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray SumGiven an array of numbers, find the maximum s ... read more
asked in Cognizant
Q2. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) ... read more
asked in Rakuten
Q3. Merge two sorted arraysNinja has been given two sorted integer ar ... read more
asked in GlobalLogic
Q4. Terms Of APAyush is given a number ‘X’. He has been told that he ... read more
asked in Amazon
Q5. Minimum Number of Platform NeededYou are given the arrival and de ... read more

I applied via Campus Placement and was interviewed in Jun 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Q: What is normalisation in RDBMS ? In Which normalised form query will be faster 2nd or 1st ? What is polymorphism ? What is encapsulation? What is your final year project (questions about it) ? Biggest ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Just cover basic of DBMS , one programming language, final project and communication skills.

Interview questions from similar companies

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

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain oops concepts
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve problems.

    • Encapsulation: Objects can hide their internal state and require interactions through defined interfaces.

    • Inheritance: Objects can inherit attributes and methods from other objects.

    • Polymorphism: Objec...

  • Answered by AI
  • Q2. Write a code on simple one.
  • Ans. 

    Code a simple one

    • Use a basic programming language like Python or JavaScript

    • Create an array of strings

    • Print the array elements

  • Answered by AI
  • Q3. Explain about your projects
  • Ans. 

    I have worked on various projects including a web application for tracking inventory and a mobile app for managing tasks.

    • Developed a web application using React.js for tracking inventory levels and generating reports

    • Created a mobile app using Flutter for managing tasks and setting reminders

    • Implemented RESTful APIs for communication between frontend and backend systems

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a software developer with 5 years of experience in Java, Python, and SQL.

    • 5 years of experience in Java, Python, and SQL

    • Strong problem-solving skills

    • Experience working in Agile development environment

    • Passionate about learning new technologies

  • Answered by AI
  • Q2. Why msg global solutions
  • Ans. 

    I want to work at msg global solutions because of their reputation for innovative solutions and collaborative work environment.

    • I am impressed by msg global solutions' track record of delivering cutting-edge software solutions to clients.

    • I am excited about the opportunity to work with a team of talented developers and collaborate on challenging projects.

    • I value the emphasis msg global solutions places on professional de...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Coding Test 

2 DSA question was asked

Round 2 - Aptitude Test 

40 questions in 20 minutes

Round 3 - Technical 

(2 Questions)

  • Q1. Stones games 2 leetcode
  • Q2. Permutations of array
  • Ans. 

    Generate all possible permutations of an array of strings

    • Use recursion to generate permutations

    • Swap elements to create different permutations

    • Base case: when array size is 1, return array as permutation

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Project discussion

Skills evaluated in this interview

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

I applied via campus placement at GLA Institute of Technology and Management, Mathura and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

30min Pseudo Code,Ratio and Proportion

Round 2 - Coding Test 

1 hour Array,HashMap

Round 3 - Technical 

(4 Questions)

  • Q1. Write a program a string is Anagram or not
  • Ans. 

    Program to check if a string is an Anagram or not

    • Create a function that takes in two strings as input

    • Sort the characters in both strings and compare if they are equal

    • Return true if they are anagrams, false otherwise

  • Answered by AI
  • Q2. How to connect mongodb with database
  • Ans. 

    To connect MongoDB with a database, you need to use the MongoDB URI and a MongoDB client library.

    • Use the MongoDB URI to specify the connection details such as host, port, username, password, and database name

    • Install a MongoDB client library like Mongoose for Node.js or pymongo for Python

    • Use the client library to establish a connection to the MongoDB database and perform CRUD operations

  • Answered by AI
  • Q3. What is event listener
  • Ans. 

    An event listener is a function that waits for a specific event to occur and then triggers a response.

    • Event listeners are commonly used in web development to handle user interactions like clicks, keypresses, etc.

    • They are attached to specific elements and listen for events to occur on those elements.

    • Once the event occurs, the listener executes a callback function to respond to the event.

    • Example: Adding a click event lis...

  • Answered by AI
  • Q4. 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.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Inheritance in object-oriented programming languages like Java allows for polymorphism.

  • Answered by AI
Round 4 - HR 

(4 Questions)

  • Q1. How to reverse a string without using extra space
  • Ans. 

    Use two pointers to swap characters in place

    • Initialize two pointers, one at the beginning of the string and one at the end

    • Swap characters at the two pointers and move them towards each other until they meet or cross

    • Repeat the process until the entire string is reversed

  • Answered by AI
  • Q2. Find a number that not present in array in O(N) time complexity array contain only 0 to n numbers
  • Ans. 

    Use bitwise XOR operation to find the missing number in O(N) time complexity.

    • Iterate through the array and XOR all the elements with their indices and the array length.

    • The missing number will be the result of XORing all the elements with their indices and the array length.

  • Answered by AI
  • Q3. Why should you join this company
  • Q4. How many interview have you give previously and why you get rejected

Skills evaluated in this interview

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

(5 Questions)

  • Q1. Tell me about
  • Q2. Your self they are asking
  • Q3. What is your weakness
  • Q4. Any questions ask for me
  • Q5. All the best future
Round 2 - Coding Test 

Coding for international

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

I applied via Job Portal

Round 1 - Coding Test 

60mintues DSA level coding exam

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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 

It basic about all the common aptitude

Round 3 - Coding Test 

It had a coding test where there was 2 questions

Round 4 - Technical 

(2 Questions)

  • Q1. Conducted in their office kochin
  • Q2. Number of alphabets in a string
  • Ans. 

    Count the number of alphabets in a given string.

    • Iterate through each character in the string and check if it is an alphabet using ASCII values.

    • Ignore spaces, numbers, and special characters while counting alphabets.

    • Example: 'Hello World!' has 10 alphabets.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Dec 2023.

Round 1 - Aptitude Test 

Online assessment with quantitative and qualitative questions

Round 2 - Coding Test 

Some Tree traversal coding question

Round 3 - Technical 

(2 Questions)

  • Q1. Load balancer design question
  • Q2. Technical challenges faced

Tcg Digital Solutions Interview FAQs

How many rounds are there in Tcg Digital Solutions Software Developer interview?
Tcg Digital Solutions interview process usually has 3 rounds. The most common rounds in the Tcg Digital Solutions interview process are One-on-one Round, Technical and Aptitude Test.
How to prepare for Tcg Digital Solutions Software Developer 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 Tcg Digital Solutions. The most common topics and skills that interviewers at Tcg Digital Solutions expect are AWS, Java, Docker, ECS and HBase.
What are the top questions asked in Tcg Digital Solutions Software Developer interview?

Some of the top questions asked at the Tcg Digital Solutions Software Developer interview -

  1. How does map and unordered map are implemented in C++ STL libra...read more
  2. How to debug a C++ program containg a segmentation fault using GDB, how to add ...read more
  3. How to grep a value from a file containing key = value format enteries in each ...read more

Tell us how to improve this page.

People are getting interviews through

based on 3 Tcg Digital Solutions interviews
Job Portal
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
Tcg Digital Solutions Software Developer Salary
based on 96 salaries
₹3.6 L/yr - ₹11.8 L/yr
10% more than the average Software Developer Salary in India
View more details

Tcg Digital Solutions Software Developer Reviews and Ratings

based on 8 reviews

4.0/5

Rating in categories

3.2

Skill development

4.3

Work-Life balance

3.6

Salary & Benefits

4.2

Job Security

3.9

Company culture

3.3

Promotions/Appraisal

3.6

Work Satisfaction

Explore 8 Reviews and Ratings
Software Developer
96 salaries
unlock blur

₹3.7 L/yr - ₹11.8 L/yr

Senior Software Developer
56 salaries
unlock blur

₹6 L/yr - ₹21 L/yr

Consultant
48 salaries
unlock blur

₹4.7 L/yr - ₹18 L/yr

Senior Consultant
36 salaries
unlock blur

₹10 L/yr - ₹24 L/yr

Senior Manager
34 salaries
unlock blur

₹14.1 L/yr - ₹29.4 L/yr

Explore more salaries
Compare Tcg Digital Solutions with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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