Upload Button Icon Add office photos

Filter interviews by

Tcg Digital Solutions Interview Questions, Process, and Tips

Updated 10 Aug 2024

Top Tcg Digital Solutions Interview Questions and Answers

View all 22 questions

Tcg Digital Solutions Interview Experiences

Popular Designations

15 interviews found

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Quant, Basic DSA, Case Study

Consulting Analyst Interview Questions asked at other Companies

Q1. Have you done any project on data equivalent to the undertaken Btech program.
View answer (2)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Technology (IIT), Kharagpur and was interviewed in May 2023. 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 - Assignment 

We had 3 section.
Section 1 - Contains 10 questions on prob & stats
Section 2 - Mix of coding mcqs , aptitude -10 questions
Section 3 - Business Case,where you need analyse the problem and write steps to solve the problem via Data Analyst perspective.

Round 3 - One-on-one 

(5 Questions)

  • Q1. Tell me about yourself? What are reason behind your inclination towards data?
  • Q2. Have you done any project on data equivalent to the undertaken Btech program.
  • Ans. 

    Yes, I have completed a project on data analysis during my Btech program.

    • I completed a project analyzing customer data for a marketing course

    • Used Python and SQL to clean and analyze the data

    • Presented findings and recommendations to the class and professor

  • Answered by AI
  • Q3. Cv grilling question
  • Q4. Why don't you go for other job profiles?
  • Q5. Why TCG Digital?Do you any of our products and Services?
  • Ans. 

    I am drawn to TCG Digital because of its innovative solutions and strong reputation in the industry.

    • TCG Digital offers cutting-edge technology solutions that drive business growth.

    • The company has a proven track record of delivering successful projects for clients.

    • I am impressed by TCG Digital's commitment to continuous improvement and staying ahead of industry trends.

  • Answered by AI

Consulting Analyst Interview Questions asked at other Companies

Q1. Have you done any project on data equivalent to the undertaken Btech program.
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is Eula - understanding?
  • Ans. 

    EULA stands for End-User License Agreement. It is a legal contract between a software developer and the user of the software.

    • EULA is a document that outlines the terms and conditions under which a user can use a software product.

    • It specifies the rights and limitations of the user, as well as any restrictions or obligations imposed by the software developer.

    • EULAs are commonly seen when installing software or downloading...

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

(1 Question)

  • Q1. What is saas - understanding?
  • Ans. 

    SaaS stands for Software as a Service. It is a cloud computing model where software applications are provided over the internet.

    • SaaS allows users to access and use software applications without the need for installation or maintenance.

    • Applications are hosted on remote servers and can be accessed through web browsers or APIs.

    • Users pay for SaaS on a subscription basis, typically monthly or annually.

    • Examples of SaaS inclu

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. What is nda, understanding?
  • Ans. 

    NDA stands for Non-Disclosure Agreement, which is a legal contract that outlines confidential information that parties agree not to disclose.

    • NDA is a legal contract between two or more parties.

    • It is used to protect confidential information from being shared with unauthorized individuals or entities.

    • The agreement specifies what information is considered confidential and the obligations of the parties involved.

    • NDA can be...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical round related to agreements, nda, msa, saas, eula

Skills evaluated in this interview

Assistant Manager Interview Questions asked at other Companies

Q1. You are Handling cash operations then how you manage operations with sales ?
View answer (87)

I applied via Hirect and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
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

Top Tcg Digital Solutions Software Developer Interview Questions and Answers

Q1. How does map and unordered map are implemented in C++ STL library.
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Tcg Digital Solutions interview questions for popular designations

 Consultant

 (3)

 Software Developer

 (3)

 Consulting Analyst

 (2)

 Data Scientist

 (2)

 Assistant Manager

 (1)

 Data Engineer

 (1)

 PMO

 (1)

 Senior Consultant

 (1)

Consultant Interview Questions & Answers

user image Anonymous

posted on 5 Apr 2022

I applied via Naukri.com and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Questions were asked regarding the React.
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic Information was provided by the head of the department and answer one question.
Round 3 - Aptitude Test 

Quantitative Aptitude, English, and Logical resaoning Round

Interview Preparation Tips

Topics to prepare for Tcg Digital Solutions Consultant interview:
  • React.Js
  • Aptitude
Interview preparation tips for other job seekers - Be honest with the knowledge and work of yours. If you don't know an answer know as much as possible or try atleast say how your approach is towards it. All the very Best!

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)

Get interview-ready with Top Tcg Digital Solutions Interview Questions

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

Top Tcg Digital Solutions Software Developer Interview Questions and Answers

Q1. How does map and unordered map are implemented in C++ STL library.
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (38)
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 - Aptitude Test 
Round 3 - Case Study 
Round 4 - One-on-one 

(1 Question)

  • Q1. Project discussion that i have done in past
Round 5 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Where do you see yourself in 5 years?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - All things are asked from cv and related to DSA

Data Scientist Interview Questions asked at other Companies

Q1. Special Sum of Array Problem Statement Given an array 'arr' containing single-digit integers, your task is to calculate the total sum of all its elements. However, the resulting sum must also be a single-digit number. To achieve this, repea... read more
Add answer
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Monster and was interviewed before Mar 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Basic Mathematics test and English test if the candidates having less than 3 years of experience.
Not required for more than 3 years

Round 3 - Technical 

(9 Questions)

  • Q1. They will check your technical skills
  • Q2. How you worked in previous company
  • Ans. 

    I worked as a Software Test Engineer in my previous company.

    • I was responsible for designing and executing test cases to ensure the quality of software products.

    • I collaborated with the development team to understand requirements and identify potential issues.

    • I performed manual and automated testing to validate software functionality and performance.

    • I reported and tracked defects using bug tracking tools like JIRA.

    • I part...

  • Answered by AI
  • Q3. They might ask some programming
  • Q4. Basically they ask from JD so pls refer job description before your interview.
  • Q5. How you deal with real time scenarios.
  • Ans. 

    I handle real-time scenarios by analyzing the situation, prioritizing tasks, and taking quick decisions.

    • I analyze the situation and identify the critical components

    • I prioritize tasks based on their impact on the system

    • I take quick decisions to resolve the issue and minimize the impact

    • I communicate effectively with the team to ensure everyone is on the same page

  • Answered by AI
  • Q6. Situational based questions
  • Q7. If the delivery time is done and still few works to be done then how do you tackle this situation.
  • Ans. 

    I would prioritize the remaining tasks based on their criticality and impact on the overall delivery.

    • Assess the remaining tasks and their impact on the overall delivery

    • Prioritize the tasks based on their criticality and impact

    • Communicate the situation to the team and stakeholders

    • Work with the team to complete the remaining tasks as efficiently as possible

  • Answered by AI
  • Q8. Are you capable to train new hired candidates?
  • Ans. 

    Yes, I am capable of training new hired candidates.

    • I have experience in conducting training sessions for new hires.

    • I am knowledgeable about the software testing process and can effectively teach it to others.

    • I have good communication and presentation skills to deliver information clearly.

    • I can provide practical examples and hands-on exercises to enhance learning.

    • I am patient and can adapt my teaching style to suit diff

  • Answered by AI
  • Q9. In the Final round they can ask your salary expectations and if you are from other location then they might ask when you can report the office.

Interview Preparation Tips

Topics to prepare for Tcg Digital Solutions Softwaretest Engineer interview:
  • Agile Methodology
  • SDLC
  • Testing
  • Core Java
Interview preparation tips for other job seekers - Be specific while answering the questions.
Don't take much time while clarifying the answers
Go through some basic programming if you are going for automation testing role
If you are going for Mobile or Manual testing the go through Agile Methodologies, SDLC, STLC, Bug life cycle and some tools like ALM & Jira tool.

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)

I applied via Naukri.com and was interviewed before Nov 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Coding Test 

Python test with ML and DL questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. Technical round with Manager
  • Q2. About projects and other technical questions
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and location preference for future work from office

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics of python coding for test and other ML and DL concepts

Data Scientist Interview Questions asked at other Companies

Q1. Special Sum of Array Problem Statement Given an array 'arr' containing single-digit integers, your task is to calculate the total sum of all its elements. However, the resulting sum must also be a single-digit number. To achieve this, repea... read more
Add answer

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 25 Aug 2021

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basics of spark joins, SQL queries
  • Q2. Scenario based questions on joins, rdd, different types of transformations, dag, lineage etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your technical very well. Atleast basics should be very clear. It was two video round technical and after that HR discussion. Overall interview experience was good.

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)

Tcg Digital Solutions Interview FAQs

How many rounds are there in Tcg Digital Solutions 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, Resume Shortlist and Aptitude Test.
How to prepare for Tcg Digital Solutions 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 Java, AWS, Python, Javascript and SQL.
What are the top questions asked in Tcg Digital Solutions interview?

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

  1. Guess the number of burgers sold by McDonald in Kolkata in a d...read more
  2. If the delivery time is done and still few works to be done then how do you tac...read more
  3. Standard 9 balls weighing problem with 1 light ball with the help of a balan...read more

Tell us how to improve this page.

Tcg Digital Solutions Interview Process

based on 9 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
KPIT Technologies Interview Questions
3.4
 • 294 Interviews
View all

Tcg Digital Solutions Reviews and Ratings

based on 106 reviews

3.3/5

Rating in categories

3.1

Skill development

3.3

Work-life balance

3.1

Salary

3.3

Job security

2.9

Company culture

2.6

Promotions

3.2

Work satisfaction

Explore 106 Reviews and Ratings
Software Developer
104 salaries
unlock blur

₹3.5 L/yr - ₹11.5 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
37 salaries
unlock blur

₹10 L/yr - ₹24 L/yr

Senior Manager
34 salaries
unlock blur

₹16 L/yr - ₹27 L/yr

Explore more salaries
Compare Tcg Digital Solutions with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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