Upload Button Icon Add office photos

Filter interviews by

Genpact Technical Support Engineer Interview Questions and Answers

Updated 22 Jun 2021

Genpact Technical Support Engineer Interview Experiences

2 interviews found

Interview Questionnaire 

2 Questions

  • Q1. Self intoduction n technical points
  • Q2. Tell me about your self

I was interviewed in Nov 2016.

Interview Preparation Tips

Round: Group Discussion
Experience: The round was quite easy.The HR was very seriously listening to each and every candidate.
Tips: Only speak valid points.

Round: VBA(i-speak)
Experience: The round was quite easy.The HR was very seriously listening to each and every candidate.
Tips: Only speak valid points.

Skills: Communication And Confidence
College Name: Dr. KNMIET

Interview questions from similar companies

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

(2 Questions)

  • Q1. Python code snippets for different codes
  • Q2. SQL Queries on Joins
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

First Round was assessment test round, Which includes English + Cognitive questions

Round 2 - Technical 

(1 Question)

  • Q1. As I have completed aeronautical engineering. They asked me basic questions related to aeronautics. What are the primary part of the airplane?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Soft skill 

(2 Questions)

  • Q1. What is your Favorite movie ?
  • Ans. 

    My favorite movie is The Shawshank Redemption.

    • Directed by Frank Darabont

    • Based on a Stephen King novella

    • Set in a prison in Maine

    • Themes of hope, friendship, and redemption

    • Starring Tim Robbins and Morgan Freeman

  • Answered by AI
  • Q2. What is your Favorite colour?
  • Ans. 

    My favorite color is blue because it reminds me of the calming ocean and clear skies.

    • Blue is associated with calmness and tranquility

    • It symbolizes trust, loyalty, and confidence

    • Examples: navy blue, sky blue, royal blue

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is power draining?
  • Ans. 

    Power draining refers to the excessive consumption of power by a device or system, leading to decreased battery life or performance.

    • Power draining can occur due to background apps running constantly on a device.

    • Faulty hardware components can also contribute to power draining.

    • Settings such as high screen brightness or frequent data syncing can increase power draining.

    • Examples include a smartphone losing battery quickly ...

  • Answered by AI
  • Q2. What is VPN? When you use it?
  • Ans. 

    VPN stands for Virtual Private Network. It is used to create a secure connection over the internet, allowing users to access private networks remotely.

    • VPN encrypts data to ensure privacy and security

    • It allows users to access restricted websites or content

    • Commonly used for remote work, accessing company networks, and bypassing geo-restrictions

    • Examples include NordVPN, ExpressVPN, and Cisco AnyConnect

  • 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 campus placement at Amrita Vishwa Vidyapeetham, Amritapuri Campus and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Hackerrank medium - hard lavel questions

Round 2 - Technical 

(2 Questions)

  • Q1. DSA question of finding the largest element and it's occurrence. Along with time complexity.
  • Q2. OOP, DBMS and all fundamentals
Round 3 - HR 

(2 Questions)

  • Q1. Project related question and why IBM?
  • Q2. Explain the issues handled in previous project

Interview Preparation Tips

Topics to prepare for IBM Technical Support Engineer interview:
  • DBMS
  • DSA
  • OOP
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

TCS conducts a NQT test. It had three sections consisting of Quantitative, Verbal and Logical Reasoning.

Round 2 - One-on-one 

(4 Questions)

  • Q1. In one to one I was asked few questions from my projects and how did I implemented it
  • Q2. One simple coding question to find a number is prime or not.
  • Ans. 

    Check if a number is prime or not using a simple coding question.

    • Iterate from 2 to square root of the number and check if the number is divisible by any of the numbers in that range.

    • If the number is divisible by any number other than 1 and itself, then it is not prime.

    • Examples: 7 is prime (divisible by 1 and 7 only), 10 is not prime (divisible by 1, 2, 5, and 10).

  • Answered by AI
  • Q3. Asked about other interests.
  • Q4. How will I showcase my leadership skills?

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Tell about the oops ocncpets
  • Ans. 

    Object-oriented programming concepts focus on classes, objects, inheritance, encapsulation, and polymorphism.

    • Classes: Blueprint for creating objects with attributes and methods.

    • Objects: Instances of classes that contain data and behavior.

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

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Abil...

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

(5 Questions)

  • Q1. What is JavaScript
  • Ans. 

    JavaScript is a programming language used to add interactivity and dynamic features to websites.

    • JavaScript is a client-side scripting language.

    • It is primarily used for web development.

    • JavaScript can be embedded directly into HTML pages.

    • It allows for the manipulation of webpage elements and handling of events.

    • Common uses include form validation, creating interactive content, and AJAX requests.

  • Answered by AI
  • Q2. What is closure
  • Ans. 

    Closure is a programming concept that allows a function to access variables from its parent scope even after the parent function has finished executing.

    • Closure is created when a nested function references a variable from its outer function.

    • The inner function can access and modify the variables from the outer function.

    • Closure helps in encapsulating data and creating private variables in JavaScript.

    • It allows functions to...

  • Answered by AI
  • Q3. Explain map method
  • Ans. 

    The map method is used to create a new array by applying a function to each element of an existing array.

    • The map method takes a callback function as an argument.

    • The callback function is executed on each element of the array.

    • The result of the callback function is added to the new array.

    • The map method does not modify the original array.

    • Example: ['apple', 'banana', 'cherry'].map(fruit => fruit.toUpperCase()) returns ['APP

  • Answered by AI
  • Q4. What is react.js
  • Ans. 

    React.js is a JavaScript library for building user interfaces.

    • React.js is used for creating reusable UI components.

    • It follows a component-based architecture.

    • React.js uses a virtual DOM for efficient rendering.

    • It allows for declarative and efficient updates to the UI.

    • React.js is widely used in web development for building interactive and dynamic user interfaces.

  • Answered by AI
  • Q5. Explain promise in JavaScript
  • Ans. 

    A promise in JavaScript is an object representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations such as fetching data from a server or reading a file.

    • They provide a cleaner and more readable way to write asynchronous code compared to using callbacks.

    • Promises have three states: pending, fulfilled, or rejected.

    • They can be chained using the then() metho...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Aug 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 - Group Discussion 

Any topic we can choose and just speak in front of the fellow candidates

Round 3 - Technical 

(5 Questions)

  • Q1. Difference between ram and rom
  • Ans. 

    RAM is volatile memory used for temporary storage, while ROM is non-volatile memory used for permanent storage.

    • RAM stands for Random Access Memory, used for temporary storage of data and program instructions

    • ROM stands for Read-Only Memory, used for permanent storage of data and program instructions

    • RAM is volatile, meaning data is lost when power is turned off

    • ROM is non-volatile, meaning data is retained even when power

  • Answered by AI
  • Q2. What do you know about cloud computing
  • Ans. 

    Cloud computing is the delivery of computing services over the internet, including storage, servers, databases, networking, software, and analytics.

    • Cloud computing allows users to access and use resources on-demand without the need for physical infrastructure.

    • It offers scalability, flexibility, cost-effectiveness, and increased efficiency.

    • Examples of cloud computing services include Amazon Web Services (AWS), Microsoft

  • Answered by AI
  • Q3. What is network
  • Ans. 

    A network is a collection of computers, servers, mainframes, network devices, and other devices connected to one another to share data and resources.

    • Networks can be wired or wireless

    • They can be local (LAN), wide (WAN), or global (Internet)

    • Networks use protocols like TCP/IP to communicate

    • Examples include Ethernet, Wi-Fi, and cellular networks

  • Answered by AI
  • Q4. What are mentioned in job description and what do you understand about the role mentioned in JD
  • Q5. What is IP and how IP address is represented
  • Ans. 

    IP stands for Internet Protocol. An IP address is a unique numerical label assigned to each device connected to a computer network.

    • IP stands for Internet Protocol

    • IP address is a unique numerical label assigned to devices on a network

    • IP addresses are represented in decimal format, such as 192.168.1.1

    • There are two versions of IP addresses - IPv4 and IPv6

  • Answered by AI

Interview Preparation Tips

Topics to prepare for NTT Data Technical Support Engineer interview:
  • Computer Networking
  • Data Communication
  • Public Speaking
  • spontaneity
Interview preparation tips for other job seekers - in GD just seak-up loud and clear and get spontaneous
for technical round get ready with the computer networks (TCP,IP)
be confident

Skills evaluated in this interview

Genpact Interview FAQs

How to prepare for Genpact Technical Support 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 Genpact. The most common topics and skills that interviewers at Genpact expect are Technical Support, Active Directory Administration, Desktop Support, Hardware and IT Service Desk.

Tell us how to improve this page.

Genpact Technical Support Engineer Salary
based on 181 salaries
₹1.2 L/yr - ₹7 L/yr
At par with the average Technical Support Engineer Salary in India
View more details

Genpact Technical Support Engineer Reviews and Ratings

based on 23 reviews

4.5/5

Rating in categories

4.2

Skill development

4.3

Work-Life balance

3.4

Salary & Benefits

3.7

Job Security

4.4

Company culture

3.7

Promotions/Appraisal

4.3

Work Satisfaction

Explore 23 Reviews and Ratings
Process Developer
36.1k salaries
unlock blur

₹1 L/yr - ₹6.8 L/yr

Process Associate
27.8k salaries
unlock blur

₹0.9 L/yr - ₹7 L/yr

Assistant Manager
19.7k salaries
unlock blur

₹4.9 L/yr - ₹14 L/yr

Management Trainee
19k salaries
unlock blur

₹1.6 L/yr - ₹8.5 L/yr

Manager
7.4k salaries
unlock blur

₹7 L/yr - ₹24 L/yr

Explore more salaries
Compare Genpact with

Accenture

3.9
Compare

Capgemini

3.8
Compare

TCS

3.7
Compare

Cognizant

3.8
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