Upload Button Icon Add office photos

Filter interviews by

Globant Senior .NET Developer Interview Questions and Answers

Updated 22 Nov 2024

Globant Senior .NET Developer Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic opps concepts
  • Q2. .net core concepts
Round 2 - One-on-one 

(2 Questions)

  • Q1. Angular concepts
  • Q2. Azure bus, triggers
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Dependency injection in .net core
  • Ans. 

    Dependency injection in .NET Core allows for loosely coupled components and easier testing.

    • Dependency injection is a design pattern where components are given their dependencies rather than creating them internally.

    • In .NET Core, dependency injection is built-in and can be configured in the ConfigureServices method of the Startup class.

    • Services are registered in the ConfigureServices method and can be injected into cont...

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

    Middleware is software that acts as a bridge between different applications or systems, allowing them to communicate and share data.

    • Middleware helps in integrating different software components and systems.

    • It provides a layer of abstraction for communication between applications.

    • Examples of middleware include message brokers like RabbitMQ, web servers like Apache, and API gateways like Kong.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Explain the architecture of your current project
  • Q2. What is the return type for controller actions
  • Ans. 

    The return type for controller actions in .NET is typically ActionResult.

    • The return type for controller actions can be ActionResult, ViewResult, PartialViewResult, JsonResult, ContentResult, RedirectResult, RedirectToRouteResult, FileResult, HttpNotFoundResult, HttpStatusCodeResult, etc.

    • ActionResult is a base class for all action results in ASP.NET MVC.

    • Example: public ActionResult Index() { return View(); }

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to change your current company
  • Ans. 

    Seeking new challenges and growth opportunities in a more innovative environment.

    • Desire for new challenges and learning opportunities

    • Seeking a more innovative and dynamic work environment

    • Looking for better career growth prospects

    • Want to work with cutting-edge technologies and tools

  • Answered by AI
  • Q2. How do you manage tight deadlines

Skills evaluated in this interview

Senior .NET Developer Interview Questions Asked at Other Companies

Q1. Find indexes of two values in an array who's Sum is 8 or a dynami ... read more
Q2. what are Microservices? How to manage load balancing in Microserv ... read more
asked in Infosys
Q3. what is extension method ,value type and reference type ,migratio ... read more
asked in 3i Infotech
Q4. What are the differences between .Net and .Net Core?
Q5. what are Design Patters? What is DI?

I applied via Company Website and was interviewed in Sep 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. C# basics , coding challenges during interview, angular basics, SQL all questions
  • Q2. .Net core , design patterns

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for all skills that are mentioned in the resume

Senior .NET Developer Jobs at Globant

View all

Interview questions from similar companies

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Question related to operating system and computer network

Round 2 - Technical 

(1 Question)

  • Q1. Traverse all child nodes in tree
Round 3 - Technical 

(1 Question)

  • Q1. Question related to cloud and oops
Round 4 - Technical 

(1 Question)

  • Q1. Question related to my background and how web site work
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Basics of oops, .net framework and .net core
  • Q2. Sql query for student department id
  • Ans. 

    SQL query to retrieve student department id.

    • Use SELECT statement to retrieve data

    • Specify the columns to be selected, including the department id column

    • Specify the table where the student data is stored

    • Use WHERE clause to filter the results based on student information

  • Answered by AI
  • Q3. Solid principles and design patterns
Round 2 - Technical 

(2 Questions)

  • Q1. Asked to code palindrome
  • Q2. Code duplicate string from main string and get index of sub string
  • Ans. 

    Code to find index of sub string in main string and duplicate the sub string

    • Use a loop to iterate through the main string and check for the sub string

    • If sub string is found, duplicate it and store the index

    • Return the index of the duplicated sub string

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Manager asked me to code the count index of substring and sum of substring
  • Q2. Questions as HR informed, it was worst and all interviews were scheduled at night time.he was more technical than the second round team lead instead of asking manager round

Interview Preparation Tips

Interview preparation tips for other job seekers - worst manager round and salary is also provided less compared to market rate.

Skills evaluated in this interview

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

Written coding test
Basic coding questions
Only c c++
Easy level

Round 2 - Technical 

(2 Questions)

  • Q1. Bit manipulation
  • Q2. Rtos concepts,c coding concepts like structures,pointers
Round 3 - Technical 

(2 Questions)

  • Q1. About projects more detailly
  • Q2. About memory management and layout in c
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

In first round 4 coding question like 1 dsa 2 database and one is api and question is very simple . coding round was conducted in hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. DSA QUESTION LIKE TREE AND GRAPH
  • Q2. DP AND SORTING APPROACH
Round 3 - Coding Test 

Again same but dsa question and oops concept in deep level

Interview Preparation Tips

Interview preparation tips for other job seekers - good knowledge in dsa , database , programming thats it
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Bubble sort and array was given
  • Q2. Create binary tree
  • Ans. 

    A binary tree is a data structure where each node has at most two children.

    • Start by creating a Node class with left and right child pointers.

    • Implement methods to insert, search, and delete nodes in the tree.

    • Consider different traversal methods like inorder, preorder, and postorder.

  • Answered by AI
  • Q3. HightBuilding Pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - just go through strivers videos

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2medium level questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Project discussion for 30 mins
  • Q2. Dsa problem medium level
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Rest Apis questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Core java and OOPS and LLD

Interview Preparation Tips

Interview preparation tips for other job seekers - Good understanding of Core language and its framework

Globant Interview FAQs

How many rounds are there in Globant Senior .NET Developer interview?
Globant interview process usually has 2-3 rounds. The most common rounds in the Globant interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Globant Senior .NET Developer 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 Globant. The most common topics and skills that interviewers at Globant expect are Entity Framework, LINQ, .Net Core, Azure and .NET.
What are the top questions asked in Globant Senior .NET Developer interview?

Some of the top questions asked at the Globant Senior .NET Developer interview -

  1. What is the return type for controller acti...read more
  2. Dependency injection in .net c...read more
  3. What is middlew...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Globant interviews
Company Website
Job Portal
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Globant Senior .NET Developer Salary
based on 10 salaries
₹18.9 L/yr - ₹28.3 L/yr
105% more than the average Senior .NET Developer Salary in India
View more details

Globant Senior .NET Developer Reviews and Ratings

based on 2 reviews

2.9/5

Rating in categories

4.5

Skill development

3.4

Work-Life balance

5.0

Salary & Benefits

3.4

Job Security

2.9

Company culture

3.0

Promotions/Appraisal

2.9

Work Satisfaction

Explore 2 Reviews and Ratings
Senior .Net Developer

Hyderabad / Secunderabad,

Pune

+1

5-9 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.6k salaries
unlock blur

₹10 L/yr - ₹35 L/yr

Software Engineer
285 salaries
unlock blur

₹6.5 L/yr - ₹21 L/yr

Automation Test Engineer
250 salaries
unlock blur

₹6 L/yr - ₹25 L/yr

Technical Lead
234 salaries
unlock blur

₹15.9 L/yr - ₹39 L/yr

Senior Automation Test Engineer
200 salaries
unlock blur

₹9.5 L/yr - ₹28.6 L/yr

Explore more salaries
Compare Globant with

Accenture

3.9
Compare

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
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