Upload Button Icon Add office photos
Engaged Employer

i

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

Globant Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Globant Senior .NET Developer Interview Questions and Answers for Freshers

Updated 22 Nov 2024

Globant Senior .NET Developer Interview Experiences for Freshers

1 interview found

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
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Basic string manipulation program
  • Q2. What are different ways to Inject services
  • Ans. 

    Different ways to inject services in .NET

    • Constructor Injection: Services are injected through a class constructor

    • Property Injection: Services are injected through public properties

    • Method Injection: Services are injected as method parameters

    • Service Locator Pattern: Services are accessed through a central registry

    • DI Containers: Frameworks like Autofac, Unity, or Ninject manage service injection

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How JWT authentications work in Web API
  • Ans. 

    JWT authentication in Web API involves generating a token with user credentials and validating it on subsequent requests.

    • JWT stands for JSON Web Token, which is a compact and self-contained way for securely transmitting information between parties as a JSON object.

    • In Web API, a JWT token is generated upon successful authentication and is sent to the client.

    • The client includes the JWT token in the Authorization header o...

  • Answered by AI
  • Q2. Write custom middleware
  • Ans. 

    Custom middleware in .NET allows for custom logic to be executed before or after an HTTP request is processed.

    • Create a class that implements the IMiddleware interface

    • Override the InvokeAsync method to add custom logic

    • Register the middleware in the Startup class using the UseMiddleware extension method

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between single & first in linq
  • Ans. 

    Single returns the only element of a sequence, or a default value if the sequence is empty. First returns the first element of a sequence, or a default value if the sequence contains no elements.

    • Single throws an exception if the sequence contains more than one element, while First does not.

    • Single is useful when you expect only one element in the sequence, while First is used when you just need the first element.

    • Example...

  • Answered by AI
  • Q2. Difference between ref & out keyword
  • Ans. 

    ref is used for passing a variable by reference, out is used for returning a value from a method

    • ref keyword is used to pass a variable by reference, allowing the method to modify the variable

    • out keyword is used to return a value from a method, the variable passed must be assigned a value within the method

    • ref parameters must be initialized before passing to the method, out parameters do not need to be initialized

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

9 Questions

  • Q1. Repository Pattern
  • Q2. How to use DI in .Net Core
  • Ans. 

    DI in .Net Core allows for loosely coupled and testable code.

    • Add services to the DI container in Startup.cs

    • Inject dependencies into classes using constructor injection

    • Use built-in DI or third-party libraries like Autofac

    • Configure lifetime of services with AddScoped, AddTransient, or AddSingleton

  • Answered by AI
  • Q3. Ho to call DI in controller
  • Ans. 

    To call DI in controller, inject the required service in the constructor of the controller.

    • Add required service in ConfigureServices method of Startup.cs

    • Inject the service in the constructor of the controller

    • Use the service in the controller methods

  • Answered by AI
  • Q4. Ho to add validation in MVC
  • Ans. 

    Validation in MVC

    • Use data annotations for server-side validation

    • Use jQuery validation for client-side validation

    • Customize validation messages using ErrorMessage property

    • Use ModelState.IsValid to check if validation passed

    • Use ModelState.AddModelError to add validation errors

  • Answered by AI
  • Q5. How to Use Webapi
  • Ans. 

    WebAPI is a framework for building HTTP services that can be consumed by a broad range of clients.

    • Create a new WebAPI project in Visual Studio

    • Define API endpoints using HTTP verbs (GET, POST, PUT, DELETE)

    • Use attribute routing to map URLs to actions

    • Return data in JSON format

    • Secure the API using authentication and authorization

  • Answered by AI
  • Q6. Clustered vs Non-Clustered
  • Ans. 

    Clustered indexes determine physical order of data, non-clustered indexes are separate structures.

    • Clustered indexes sort and store data rows in the table based on their key values.

    • Non-clustered indexes have a separate structure that includes the indexed columns and a pointer to the data row.

    • Tables can have only one clustered index, but multiple non-clustered indexes.

    • Clustered indexes are faster for retrieving large amo...

  • Answered by AI
  • Q7. Query Optimization in Sql
  • Ans. 

    Query optimization in SQL

    • Use indexes to speed up queries

    • Avoid using SELECT *

    • Use JOINs instead of subqueries

    • Avoid using functions in WHERE clauses

    • Use EXPLAIN to analyze query performance

  • Answered by AI
  • Q8. Ho to Use Transactions in Sql
  • Ans. 

    Transactions in SQL ensure data consistency and integrity during multiple operations.

    • Transactions group multiple SQL statements into a single unit of work.

    • They ensure that all statements are executed or none are executed.

    • They provide data consistency and integrity during multiple operations.

    • Transactions can be started with BEGIN TRANSACTION and committed with COMMIT or rolled back with ROLLBACK.

    • They are useful in situa...

  • Answered by AI
  • Q9. Inner vs Outer Join
  • Ans. 

    Inner join returns only matching records while outer join returns all records from both tables.

    • Inner join is used to retrieve records that have matching values in both tables.

    • Outer join is used to retrieve all records from both tables, even if there are no matching values.

    • Left outer join returns all records from the left table and matching records from the right table.

    • Right outer join returns all records from the right

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The questions was verify easy for First Round of Interview. Anybody can crack this. This interview done on 18-Nov-2021

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What are Design Patters? What is DI?
  • Ans. 

    Design patterns are reusable solutions to common problems in software design. DI stands for Dependency Injection, a design pattern used to inject dependencies into a class.

    • Design patterns are best practices for solving common software design problems.

    • DI is a design pattern where dependencies are injected into a class rather than created within the class.

    • Examples of design patterns include Singleton, Factory, and Observ...

  • Answered by AI
  • Q2. What are Microservices? How to manage load balancing in Microservices?
  • Ans. 

    Microservices are a software architecture design where applications are broken down into smaller, independent services that communicate with each other through APIs.

    • Microservices are designed to be small, focused, and independently deployable services.

    • Each microservice typically performs a single function or task within the application.

    • Microservices communicate with each other through APIs, often using lightweight prot...

  • Answered by AI
  • Q3. Find indexes of two values in an array who's Sum is 8 or a dynamic value
  • Ans. 

    Find indexes of two values in an array whose sum is 8 or a dynamic value

    • Iterate through the array and store the indexes of each element in a dictionary with the difference between the target sum and the element as the key

    • Check if the current element exists in the dictionary, if so, return the indexes of the two elements

    • Handle cases where the target sum is dynamic by replacing 8 with a variable

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Persistent Systems Senior .NET Developer interview:
  • .Net Core
  • Azure DevOPs
  • Ci/Cd
  • Design Patterns
  • Contenarization
  • Cloud Computing
  • Infrastructure as code

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Concepts of oops(in details) Output based questions on oops concepts like constructor, method hiding and method overloading Coding question on patterns just che k problem solving skills
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is ORM in c#
  • Ans. 

    ORM stands for Object-Relational Mapping, a technique used to map object-oriented programming language to a relational database.

    • ORM helps developers to work with databases using objects instead of SQL queries

    • It simplifies the data access layer by automatically translating objects into database tables and vice versa

    • Popular ORM frameworks in C# include Entity Framework, NHibernate, and Dapper

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

    CLR stands for Common Language Runtime, a virtual machine component of the .NET framework responsible for managing execution of .NET programs.

    • CLR is responsible for managing memory, handling exceptions, and enforcing security in .NET applications.

    • It provides services such as garbage collection, type safety, and code access security.

    • CLR compiles Intermediate Language (IL) code into native code during execution.

    • Examples

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic questions they ask
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed before Jan 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Dot net core vs dot net
  • Ans. 

    Dot net core is the open-source, cross-platform version of .NET, while .NET is the traditional framework for Windows applications.

    • Dot net core is open-source and cross-platform, allowing for development on Windows, macOS, and Linux.

    • .NET is the traditional framework for Windows applications, providing a wide range of libraries and tools.

    • Dot net core is more lightweight and modular, making it easier to deploy and maintai...

  • Answered by AI
  • Q2. Boxing and unboxing

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on mastering the fundamentals and gaining practical experience in coding.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Company Website and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Interview went pretty good. started with the common question tell me about yourself and then into technical questions as follows. 1. What is ViewState in ASP.NET. 2. Connection pooling. 3. How do ...
Round 2 - Behavioral 

(1 Question)

  • Q1. Started with the Question 1 .explain about yourself and then 2. What domain are you working currently? 3. Why do you want to leave the current job? 4. How much you can rate yourself in the technolog...

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview will be good if you prepare a bit before attending.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. How to handle error in SQL
  • Ans. 

    Errors in SQL can be handled using try-catch blocks, error handling functions, and logging mechanisms.

    • Use try-catch blocks to catch and handle errors in SQL queries

    • Utilize error handling functions like @@ERROR, ERROR_MESSAGE(), and ERROR_NUMBER() to retrieve error information

    • Implement logging mechanisms to track and monitor errors for troubleshooting

    • Consider using transactions to ensure data integrity and rollback chan

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just general questions asked from .Net, MVC ,SQL and routing but no further updates.

Skills evaluated in this interview

Globant Interview FAQs

How many rounds are there in Globant Senior .NET Developer interview for freshers?
Globant interview process for freshers usually has 2 rounds. The most common rounds in the Globant interview process for freshers are Resume Shortlist and Technical.
How to prepare for Globant Senior .NET Developer interview for freshers?
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 for freshers?

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

  1. What is the return type for controller acti...read more
  2. C# basics , coding challenges during interview, angular basics, SQL all questio...read more
  3. Dependency injection in .net c...read more

Tell us how to improve this page.

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

3.4

Job security

2.9

Company culture

3.0

Promotions

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.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
294 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Automation Test Engineer
254 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
236 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Automation Test Engineer
210 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Globant with

Accenture

3.8
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

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