Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Go Digital Technology Consulting Team. If you also belong to the team, you can get access from here

Go Digital Technology Consulting Verified Tick

Compare button icon Compare button icon Compare
3.4

based on 15 Reviews

Filter interviews by

Go Digital Technology Consulting Interview Questions, Process, and Tips

Updated 5 Nov 2024

Top Go Digital Technology Consulting Interview Questions and Answers

View all 8 questions

Go Digital Technology Consulting Interview Experiences

Popular Designations

11 interviews found

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 24 Mar 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Indeed and was interviewed in Feb 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude test, maths logic english; Python SQL and CS concepts

Round 2 - Coding Test 

3 Hacker rank easy coding test at office. 2/3 would get you selected for next round

Round 3 - Technical 

(1 Question)

  • Q1. Python - generator expressions, asyncio, AWS lambda, iterator/iterable, multi threading,
Round 4 - One-on-one 

(1 Question)

  • Q1. Questions on CV, projects, SQL window functions
Round 5 - One-on-one 

(1 Question)

  • Q1. Questions on CV, Company details and other information was shared here along with 10hr work day, 1.5 year bond, 6 month appraisal

Interview Preparation Tips

Topics to prepare for Go Digital Technology Consulting Data Engineer interview:
  • Python
  • SQL
Interview preparation tips for other job seekers - Stick to Python and SQL, Mention projects related to data science on CV, ask for offer letter before communicating anything or else they'll not release one.

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Internshala and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

3 Sections Quantity , Logical, Mcq code

Round 2 - Technical 

(2 Questions)

  • Q1. Window function in SQL
  • Ans. 

    Window functions in SQL are used to perform calculations across a set of table rows related to the current row.

    • Window functions are used to calculate values based on a set of rows related to the current row.

    • They allow you to perform calculations without grouping the rows into a single output row.

    • Common window functions include ROW_NUMBER(), RANK(), DENSE_RANK(), and NTILE().

  • Answered by AI
  • Q2. Python Basics (Loop, functions, pandas)

Skills evaluated in this interview

Data Engineer Intern Interview Questions asked at other Companies

Q1. what are window functions in sql
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Indeed and was interviewed in Dec 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

General Aptitude test which is for 1 hour.

Round 2 - Coding Test 

Coding test on individual preferred language (SQL or Python)

Round 3 - Technical 

(8 Questions)

  • Q1. Once passing the coding test, the interview will be taken as per your preferred language and related topics to SQL, Python, and projects
  • Q2. Situation-based SQL Queries.
  • Q3. Basic Python code
  • Q4. What are CTE and Views in SQL?
  • Ans. 

    CTE stands for Common Table Expression, a temporary result set that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement. Views are virtual tables created by a query.

    • CTE is defined using the WITH keyword and can be recursive.

    • CTEs are mainly used to simplify complex queries, improve readability, and reduce redundancy.

    • Views are saved queries that act as virtual tables, allowing users to query the view a...

  • Answered by AI
  • Q5. What is DDL, DML, & DCL?
  • Ans. 

    DDL stands for Data Definition Language, DML stands for Data Manipulation Language, and DCL stands for Data Control Language.

    • DDL is used to define the structure of database objects such as tables, indexes, and views.

    • DML is used to manipulate data within the database, such as inserting, updating, and deleting records.

    • DCL is used to control access to data within the database, such as granting or revoking permissions.

  • Answered by AI
  • Q6. Write a code to remove duplicates from a given list.
  • Ans. 

    Code to remove duplicates from a list of strings

    • Create a new empty list to store unique elements

    • Iterate through the given list and add elements to the new list only if they are not already present

    • Return the new list without duplicates

  • Answered by AI
  • Q7. Resume Related questions
  • Q8. Whats is Temporary Table in SQL?
  • Ans. 

    Temporary table in SQL is a table that exists temporarily and is automatically deleted when the session ends.

    • Temporary tables are created using CREATE TEMPORARY TABLE statement.

    • They are useful for storing intermediate results during complex queries.

    • Temporary tables are only visible to the current session and are automatically dropped when the session ends.

  • Answered by AI
Round 4 - Behavioral 

(2 Questions)

  • Q1. General questions from Resume and some basic technical questions.
  • Q2. Where do you see yourself in the next 5 years?
Round 5 - HR 

(1 Question)

  • Q1. General HR discussions

Interview Preparation Tips

Topics to prepare for Go Digital Technology Consulting Data Engineer Intern interview:
  • SQL
  • Python
  • Database
Interview preparation tips for other job seekers - Prepare SQL and Python well.

Skills evaluated in this interview

Data Engineer Intern Interview Questions asked at other Companies

Q1. what are window functions in sql
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Mainly about SQL and Python

Round 2 - Technical 

(2 Questions)

  • Q1. What are window function in sql ? SQL joins? CTE in sql?
  • Ans. 

    Window functions are used to perform calculations across a set of rows in a table.

    • Window functions operate on a subset of rows called a window or frame.

    • They can be used to calculate running totals, rankings, and moving averages.

    • Examples of window functions include ROW_NUMBER, RANK, and LAG.

    • SQL joins are used to combine rows from two or more tables based on a related column between them.

    • Common types of joins include INN...

  • Answered by AI
  • Q2. What are lists? difference between list ,tupe, dict and sets ? how to extract elements from dict ?
  • Ans. 

    Lists are ordered collections of items in Python.

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

    • Elements in a list are accessed using indexing.

    • Lists can contain elements of different data types.

    • Lists are denoted by square brackets [].

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Go Digital Technology Consulting Data Engineer interview:
  • Python
  • SQL
Interview preparation tips for other job seekers - Prepare well of SQL and python .

Skills evaluated in this interview

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

Go Digital Technology Consulting interview questions for popular designations

 Data Engineer

 (4)

 Data Engineer Intern

 (3)

 Associate Software Engineer

 (1)

 Data Engineering Analyst

 (1)

 Senior Developer

 (1)

 Softwaretest Engineer

 (1)

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I was interviewed in Sep 2023.

Round 1 - Aptitude Test 

Basics of SQL and Python

Round 2 - Coding Test 

Either SQL or Python whatever your preferrence MCQ and coding Test

Round 3 - Technical 

(1 Question)

  • Q1. Basics of SQL and Python and few business case questions.

Interview Preparation Tips

Topics to prepare for Go Digital Technology Consulting Data Engineer Intern interview:
  • SQL
  • Python

Data Engineer Intern Interview Questions asked at other Companies

Q1. what are window functions in sql
View answer (1)

Get interview-ready with Top Go Digital Technology Consulting Interview Questions

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

I applied via Naukri.com

Round 1 - Aptitude Test 

Altitude was a great, with interesting logical questions

Data Engineering Analyst Interview Questions asked at other Companies

Q1. Product Of Array Except SelfYou have been given an integer array/list (ARR) of size N. You have to return an array/list PRODUCT such that PRODUCT[i] is equal to the product of all the elements of ARR except ARR[i]  Note : Each product ... read more
View answer (3)

Jobs at Go Digital Technology Consulting

View all
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at Hindustan College of Science and Technology, Agra and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Programs related to dsa

Round 2 - Technical 

(1 Question)

  • Q1. Oops concept, sql queries

Interview Preparation Tips

Interview preparation tips for other job seekers - We calm and confident. Revise the concepts of oops.

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)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. . Net technical

Senior Developer Interview Questions asked at other Companies

Q1. What is your current CTC and what is your expected CTC?
View answer (1)

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Oct 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 was having 4 parts numerical,critical thinking, English and logic based

Round 3 - Technical 

(1 Question)

  • Q1. Write a command to fetch data form the table
  • Ans. 

    Use SQL SELECT command to fetch data from a table

    • Use the SELECT statement followed by the column names you want to retrieve

    • Specify the table name after the keyword FROM

    • Add conditions using WHERE clause if needed

  • Answered by AI

Skills evaluated in this interview

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 25 Jul 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed before Jul 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 - Assignment 

Was given a task of questions based on SQL, Pandas.

Round 3 - Technical 

(2 Questions)

  • Q1. Technical questions based on SQL
  • Q2. Technical question based on Pandas

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

Go Digital Technology Consulting Interview FAQs

How many rounds are there in Go Digital Technology Consulting interview?
Go Digital Technology Consulting interview process usually has 2-3 rounds. The most common rounds in the Go Digital Technology Consulting interview process are Technical, Aptitude Test and Coding Test.
How to prepare for Go Digital Technology Consulting 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 Go Digital Technology Consulting. The most common topics and skills that interviewers at Go Digital Technology Consulting expect are SQL, Python, Data Analysis, AWS and Big Data.
What are the top questions asked in Go Digital Technology Consulting interview?

Some of the top questions asked at the Go Digital Technology Consulting interview -

  1. Write a code to remove duplicates from a given li...read more
  2. Whats is Temporary Table in S...read more
  3. What are window function in sql ? SQL joins? CTE in s...read more
How long is the Go Digital Technology Consulting interview process?

The duration of Go Digital Technology Consulting interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Go Digital Technology Consulting Interview Process

based on 7 interviews in last 1 year

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k 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
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all

Go Digital Technology Consulting Reviews and Ratings

based on 15 reviews

3.4/5

Rating in categories

4.0

Skill development

2.8

Work-life balance

3.1

Salary

3.1

Job security

3.0

Company culture

2.9

Promotions

3.0

Work satisfaction

Explore 15 Reviews and Ratings
Aws Devops Engineer

Mumbai

4-8 Yrs

Not Disclosed

Mobile Developer

Pune,

Mumbai

3-7 Yrs

Not Disclosed

Data Engineer

Pune

2-5 Yrs

Not Disclosed

Explore more jobs
Data Engineer
36 salaries
unlock blur

₹3.3 L/yr - ₹7.9 L/yr

Software Engineer
9 salaries
unlock blur

₹5 L/yr - ₹6.5 L/yr

Associate Data Engineer
9 salaries
unlock blur

₹3 L/yr - ₹4.8 L/yr

Associate Software Engineer
7 salaries
unlock blur

₹3.5 L/yr - ₹4.4 L/yr

Associate Engineer
6 salaries
unlock blur

₹3 L/yr - ₹4.9 L/yr

Explore more salaries
Compare Go Digital Technology Consulting with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.7
Compare

HCLTech

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