Upload Button Icon Add office photos

Expert Global Solutions

Compare button icon Compare button icon Compare

Filter interviews by

Expert Global Solutions Data Annotation Engineer Interview Questions and Answers

Updated 18 Jun 2024

Expert Global Solutions Data Annotation Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

1 hour and basic topic

Round 2 - Group Discussion 

30 min online shopping

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the Middleware
  • Q2. What is dependency injection

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join here please otherwise you will regret for whole life
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2022. 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 

1-hour exam, few math questions, and few technical were asked, and all were MCQs

Round 3 - Group Discussion 

Very general topics were asked to check our communication skills

Round 4 - Technical 

(3 Questions)

  • Q1. Intro, DBMS, SQL questions, OOPs concepts, and real-life examples, About the project I worked in, were asked. Most of the questions are based on the resume.
  • Q2. OOPs- inheritance, encapsulation code on it overloading, overriding concept and coding question
  • Q3. Coding questions on strings

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare OOPs concepts properly, understand the questions properly, and give the right answers. Deliver every answer with real life example.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 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 

Simple quant questions regarding geometry, time and work

Round 3 - Coding Test 

5 simple coding questions

Round 4 - Technical 

(1 Question)

  • Q1. DB related questions and logical questions
Round 5 - One-on-one 

(1 Question)

  • Q1. Managerial round regarding casual work and project related discussion

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 126 minutes
Round difficulty - Hard

This round consist of coding questions as well as mcqs based on aptitude as well as some domain sections. This round is hard.

  • Q1. 

    Maximum Path Sum in a Matrix

    Given an N*M matrix filled with integer numbers, determine the maximum sum that can be obtained from a path starting from any cell in the first row to any cell in the last row...

  • Ans. 

    Find the maximum sum path in a matrix from top row to bottom row by moving down or diagonally.

    • Use dynamic programming to keep track of maximum sum at each cell.

    • At each cell, consider the maximum sum from the cell above, left diagonal, and right diagonal.

    • Add the current cell value to the maximum of the three possibilities.

    • Repeat this process for all cells in the matrix to find the maximum sum path.

  • Answered by AI
  • Q2. 

    Boolean Matrix Transformation Challenge

    Given a 2-dimensional boolean matrix mat of size N x M, your task is to modify the matrix such that if any element is 1, set its entire row and column to 1. Specifi...

  • Ans. 

    Modify a boolean matrix such that if any element is 1, set its entire row and column to 1.

    • Iterate through the matrix to find elements with value 1

    • Store the row and column indices of these elements

    • Update the entire row and column for each element found to be 1

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

In this round the interviewer ask few questions related to domain and at last he ask some behavioral questions.

  • Q1. 

    Intersection of Linked List Problem

    You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list.

    Your task is to determine t...

  • Ans. 

    Find the node where two linked lists merge, return -1 if no merging occurs.

    • Traverse both lists to find the lengths and the last nodes

    • Align the starting points of the lists by adjusting the pointers

    • Traverse both lists simultaneously until a common node is found

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in DelhiEligibility criteriaNo criteriaQuess Corp interview preparation:Topics to prepare for the interview - Data structures knowledge, OOPs, Pointers, Dynamic programming and Recursion, Graphs, Hashmaps and Priority Queues, Operating system, DBMS, Networking, Arrays, Strings, Stacks, Trees, Pointers, OS Kernel, Deadlock, Virtual Memory, Memory Management, Paging, Segmentation, Puzzles and aptitudeTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Be calm and have confidence . Confidence is the key to crack any interview. 
Tip 2 : Try to give maximum time on basics of a topic 
Tip 3 : Practice interview questions
Tip 4 : Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : Put only those skills in resume which the company requires, but don't put false information in resume
Tip 2 : Write only those things in resume in which you are 100% confident
Tip 3 : Have projects in resume and prepare well for it
Tip 4 : Keep it short and crisp.
Tip 5 : Focus on important things in resume

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. What are the responsibilities of a Data Analyst?
  • Ans. 

    Data Analysts are responsible for collecting, processing, and analyzing data to help organizations make informed decisions.

    • Collecting and organizing data from various sources

    • Cleaning and processing data to ensure accuracy and consistency

    • Analyzing data using statistical techniques and tools

    • Creating visualizations and reports to present findings

    • Interpreting data to provide insights and recommendations

    • Collaborating with s...

  • Answered by AI
  • Q2. Software engineer
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain collection framework and uses
  • Ans. 

    Collection framework is a set of interfaces and classes in Java that provide a way to store and manipulate groups of objects.

    • Provides interfaces like List, Set, Map for storing collections of objects

    • Includes classes like ArrayList, HashSet, HashMap for implementing these interfaces

    • Allows for easy manipulation, sorting, searching, and iteration of collections

    • Used in various applications like data processing, data storag

  • Answered by AI
  • Q2. Explain springboot and it's annotation
  • Ans. 

    Spring Boot is a Java-based framework used for creating standalone, production-grade Spring-based applications.

    • Spring Boot simplifies the process of creating Spring applications by providing defaults for configuration and eliminating the need for XML configuration files.

    • Annotations in Spring Boot are used to simplify the configuration of Spring applications by providing metadata about the application.

    • Examples of annota...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Jun 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 - One-on-one 

(1 Question)

  • Q1. About Insurance Domain Knowledge
Round 3 - HR 

(1 Question)

  • Q1. About shift / Working hrs / Salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Just brush up on Insurance domain and attend the interview with courage.
Round 1 - HR 

(2 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Tell me about yourself.
Round 2 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips
Round 3 - Technical 

(1 Question)

  • Q1. What is dora process
  • Ans. 

    DORA (Discover Offer Request Acknowledge) is a process used by DHCP clients to obtain IP addresses.

    • DORA is an acronym for Discover, Offer, Request, and Acknowledge.

    • It is a process used by DHCP clients to obtain IP addresses from DHCP servers.

    • The client sends a Discover message to the server, which responds with an Offer message containing an available IP address.

    • The client then sends a Request message to the server, in...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you Don't write in resume that you are not aware of Technical person will read all the details you wrote in resume
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Walk-in and was interviewed before Mar 2022. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Introduce yourself and what is your work experience
  • Q2. What is your typing speed
  • Ans. 

    My typing speed is 70 words per minute.

    • I have been practicing typing regularly to improve my speed.

    • I am comfortable typing on both a keyboard and a numeric keypad.

    • I have experience typing various types of documents, including reports and emails.

    • I am able to maintain accuracy while typing quickly.

    • I am willing to take any typing tests required for the job.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice job and flexible working hours good salary that's it

Expert Global Solutions Interview FAQs

How many rounds are there in Expert Global Solutions Data Annotation Engineer interview?
Expert Global Solutions interview process usually has 2 rounds. The most common rounds in the Expert Global Solutions interview process are Aptitude Test and Group Discussion.

Tell us how to improve this page.

Expert Global Solutions Data Annotation Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Quess Interview Questions
3.8
 • 426 Interviews
IKS Health Interview Questions
3.6
 • 235 Interviews
Alldigi Tech Interview Questions
4.0
 • 200 Interviews
IntouchCX Interview Questions
2.9
 • 198 Interviews
TTEC India Interview Questions
3.7
 • 137 Interviews
Globiva Interview Questions
3.1
 • 107 Interviews
ReSource Pro Interview Questions
4.0
 • 93 Interviews
QX Global Group Interview Questions
3.3
 • 86 Interviews
Alorica Interview Questions
3.1
 • 73 Interviews
View all
Expert Global Solutions Data Annotation Engineer Salary
based on 4 salaries
₹2.2 L/yr - ₹3 L/yr
At par with the average Data Annotation Engineer Salary in India
View more details

Expert Global Solutions Data Annotation Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Design Engineer
470 salaries
unlock blur

₹1.4 L/yr - ₹8.8 L/yr

Senior Design Engineer
166 salaries
unlock blur

₹4.3 L/yr - ₹10.2 L/yr

Data Engineer
63 salaries
unlock blur

₹1.2 L/yr - ₹7.8 L/yr

Mechanical Engg. Design
42 salaries
unlock blur

₹2.4 L/yr - ₹7.5 L/yr

CAD Engg
33 salaries
unlock blur

₹1.8 L/yr - ₹4.8 L/yr

Explore more salaries
Compare Expert Global Solutions with

Quess

3.8
Compare

Statestreet HCL Services

3.3
Compare

IKS Health

3.6
Compare

Alldigi Tech

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