Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Exigotech Tsp India Team. If you also belong to the team, you can get access from here

Exigotech Tsp India Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Exigotech Tsp India Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Verbal communicatiom, attention to detail, email writing part

Round 2 - One-on-one 

(2 Questions)

  • Q1. General question with maths
  • Q2. Percentage related sums
Round 3 - One-on-one 

(2 Questions)

  • Q1. Interview question with maths
  • Q2. Percentage , profit related sums
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What are the different osi layers
  • Ans. 

    The OSI (Open Systems Interconnection) model consists of 7 layers that define the functions of a network communication system.

    • Physical Layer: Deals with physical connections and transmission of raw data.

    • Data Link Layer: Manages data frames and error detection/correction.

    • Network Layer: Handles routing and logical addressing.

    • Transport Layer: Ensures end-to-end communication and data flow control.

    • Session Layer: Establishe...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Basic details about yourself
Round 3 - Technical 

(1 Question)

  • Q1. What are some ways to avoid deadlock?
  • Ans. 

    Avoid deadlock by implementing proper resource allocation strategies and using techniques like timeouts and resource ordering.

    • Implement proper resource allocation strategies to prevent multiple processes from holding resources indefinitely.

    • Use timeouts to limit the amount of time a process can wait for a resource before releasing it.

    • Follow a strict resource ordering protocol to ensure processes request and release reso...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure your cs basics are clear such as netwerking, os, and tech stacks used in projects
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is angular Directives
  • Ans. 

    Angular Directives are markers on a DOM element that tell AngularJS's HTML compiler to attach a specified behavior to that DOM element.

    • Directives are used to create reusable components or custom behaviors in Angular applications.

    • They can be used to manipulate the DOM, add event listeners, show/hide elements, etc.

    • Examples include ngModel, ngIf, ngFor, etc.

  • Answered by AI
  • Q2. How to communicate with components
  • Ans. 

    Methods to communicate between components in Angular include Input and Output properties, ViewChild, Services, and Event Emitters.

    • Using Input and Output properties to pass data from parent to child components and emit events from child to parent components.

    • Using ViewChild to access child components from parent components.

    • Using Services to create a shared service that can be injected into multiple components to share da...

  • Answered by AI

Skills evaluated in this interview

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

2 coding question one easy one medium

Round 2 - Technical 

(2 Questions)

  • Q1. MAx sum of non adjacent elements
  • Ans. 

    Find the maximum sum of non-adjacent elements in an array.

    • Create an array to store the maximum sum at each index

    • Iterate through the input array and calculate the maximum sum considering the current element and the previous non-adjacent element

    • Return the maximum sum found

  • Answered by AI
  • Q2. Optimize it further
  • Ans. 

    Utilize efficient algorithms, minimize redundant code, optimize database queries

    • Use data structures like hash maps or binary trees for faster lookups

    • Minimize nested loops and unnecessary iterations

    • Optimize database queries by using indexes and avoiding unnecessary joins

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Basic introduction
  • Q2. Reason for job change
  • Q3. What do you least like about your previous company.
  • Q4. Tell me about yourself in brief
Round 2 - Group Discussion 

Theoretical knowledge of Excel formulas. And question from resume

Round 3 - Aptitude Test 

Machine test. Moderate questions but tricky like sumif, vlookup, hlookup, count days

Interview Preparation Tips

Interview preparation tips for other job seekers - Concept should be clear about excel.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Python question was there and it was average level not tough

Round 2 - Coding Test 

Simple coding questions which was good to go

Round 3 - Technical 

(1 Question)

  • Q1. General ops concepts
Round 4 - Technical 

(1 Question)

  • Q1. Coding with technical questions
Round 5 - HR 

(1 Question)

  • Q1. General questions
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What is difference between springboot and spring
  • Ans. 

    Spring is a framework for building Java applications, while Spring Boot is a tool that simplifies the setup and configuration of Spring applications.

    • Spring is a comprehensive framework that provides support for various functionalities like dependency injection, aspect-oriented programming, and more.

    • Spring Boot is an opinionated tool that simplifies the setup and configuration of Spring applications by providing default...

  • Answered by AI
  • Q2. Explaing springboot annotation
  • Ans. 

    Spring Boot annotations are used to simplify the development process by providing shortcuts for common configurations and functionalities.

    • Annotations like @SpringBootApplication, @RestController, @Autowired, @ComponentScan are commonly used in Spring Boot applications.

    • Annotations help in reducing boilerplate code and configuring various aspects of the application.

    • For example, @SpringBootApplication is used to mark the ...

  • Answered by AI
  • Q3. How do you use JPA in your project write it
  • Ans. 

    I use JPA in my project by defining entity classes, annotating them with JPA annotations, creating repositories, and using JPQL queries.

    • Define entity classes with @Entity annotation

    • Annotate fields with @Column, @Id, @GeneratedValue, etc.

    • Create repositories by extending JpaRepository interface

    • Use JPQL queries for custom database operations

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How microservices communicate in your project
  • Ans. 

    Microservices communicate through REST APIs and messaging queues in our project.

    • Microservices communicate with each other using REST APIs for synchronous communication.

    • Messaging queues like Kafka or RabbitMQ are used for asynchronous communication between microservices.

    • Service discovery tools like Eureka or Consul are used to locate and communicate with other microservices.

    • Microservices may also use gRPC for communicat

  • Answered by AI
  • Q2. Which design pattern used in your last project
Round 3 - Behavioral 

(2 Questions)

  • Q1. Asked about all projects
  • Q2. Team size and agile methodology
Round 4 - HR 

(2 Questions)

  • Q1. Why are you leaving current organization
  • Q2. What do you know about Emtec
  • Ans. 

    Emtec is a global IT consultancy that provides technology solutions and services to help organizations drive digital transformation.

    • Provides IT consultancy services

    • Specializes in technology solutions

    • Helps organizations with digital transformation

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't waist time , just take interviews and won't release offer after clearing all round and HR discussion. Just HR discussed salary and tried to negotiate even though I was ready for attend the hybrid mode and negotiated salary and all things ,still offer not released and didn't hear back from HR

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Regarding commercial vehicle systems and operations
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitude test and personality test, It's easy

Round 2 - Technical 

(1 Question)

  • Q1. Code to print diagonal elements in 2d array. Reverse a string without using other empty string.
  • Ans. 

    Print diagonal elements in a 2D array and reverse a string without using an empty string.

    • Iterate through the rows and columns of the 2D array and print the elements where the row index is equal to the column index.

    • Iterate through the characters of the string from the last index to the first index and append each character to a new string.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - In technical round, they focus only on coding, problem solving and data structures and algorithms.
So be ready to solve codes

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Jul 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 - Coding Test 

There was coding round in php of 5 questions and 3 to be attempted

Round 3 - Technical 

(2 Questions)

  • Q1. The technical round was in docker and php
  • Q2. And about the frontend part of the websites

Interview Preparation Tips

Topics to prepare for HyScaler Software Developer Trainee interview:
  • Docker
  • php
  • HTML
Interview preparation tips for other job seekers - Hyscaler is a very good company for both fresher and Experienced . It provides a very hood works place and experience with interactive teams and hr. Here you can gain the experience for you carrier and sharp your carrier too.

Exigotech Tsp India Interview FAQs

How to prepare for Exigotech Tsp India 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 Exigotech Tsp India. The most common topics and skills that interviewers at Exigotech Tsp India expect are Analytics, PDF, Analytical, ISMS and Microsoft Dynamics NAV.

Tell us how to improve this page.

Exigotech Tsp India Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

HyScaler Interview Questions
4.5
 • 90 Interviews
MulticoreWare Interview Questions
4.2
 • 23 Interviews
Monotype Interview Questions
3.8
 • 23 Interviews
Pitney Bowes Interview Questions
3.8
 • 21 Interviews
Xactly Corp Interview Questions
3.8
 • 17 Interviews
Grapecity Interview Questions
3.8
 • 17 Interviews
AvenData GmbH Interview Questions
3.1
 • 16 Interviews
View all

Exigotech Tsp India Reviews and Ratings

based on 15 reviews

4.5/5

Rating in categories

4.4

Skill development

4.5

Work-life balance

4.1

Salary

4.4

Job security

4.4

Company culture

4.0

Promotions

3.9

Work satisfaction

Explore 15 Reviews and Ratings
Software Developer
3 salaries
unlock blur

₹4.2 L/yr - ₹7.5 L/yr

Business Analyst
3 salaries
unlock blur

₹7 L/yr - ₹8.7 L/yr

Quality Analyst
3 salaries
unlock blur

₹5.7 L/yr - ₹7 L/yr

Explore more salaries
Compare Exigotech Tsp India with

HyScaler

4.5
Compare

AvenData GmbH

3.1
Compare

Sapphire Software Solutions (India)

4.5
Compare

Sagitec Solutions

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