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

Clear (1)

Globant DOT NET Developer Interview Questions, Process, and Tips

Updated 18 Feb 2024

Top Globant DOT NET Developer Interview Questions and Answers

Globant DOT NET Developer Interview Experiences

4 interviews found

DOT NET Developer Interview Questions & Answers

user image Isha Kaushal

posted on 18 Feb 2024

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

(1 Question)

  • Q1. Design pattern, write code to check lower case upper case, write singleton with lock, oops questions, what is cte, difference between sp and view, find highest salary in sql, Azure concepts for service bus...
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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Worst company ever, where the interviewer himself does not know what are the requirements for the position they are hiring for. The interviewer interviewed me for .Net architect, and suddenly I found mysel...
  • Q2. You are just a resource waiting to be deployed on project. All they want to know is that why you are not deployed even if you haven't faced any client interview in the field of your expertise.

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont' join this bullshit company. There are plenty of good companies outside.

DOT NET Developer Interview Questions Asked at Other Companies

asked in Infosys
Q1. What is the difference between windows application development an ... read more
Q2. What is Trigger,Store procedure, join in sql query and their synt ... read more
asked in Infosys
Q3. What kind of database you used in projects
Q4. How many ways are there to send data to controller from View?
asked in Nagarro
Q5. Can Two Primary keys can be made possible in Sql Table ?

I applied via Naukri.com and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

11 Questions

  • Q1. Dependency injection
  • Q2. December between ienumerable and iqueryable
  • Ans. 

    Difference between IEnumerable and IQueryable

    • IEnumerable is used for in-memory collections while IQueryable is used for querying data from a database

    • IEnumerable executes the query on the client-side while IQueryable executes the query on the server-side

    • IQueryable supports deferred execution while IEnumerable does not

  • Answered by AI
  • Q3. Htmlfor vs html in mvc
  • Ans. 

    HtmlHelper is used to generate HTML controls in MVC views, while html is used for static HTML markup.

    • HtmlHelper is a class in MVC that helps generate HTML controls with strongly-typed views

    • HtmlHelper provides intellisense support and compile-time checking for HTML controls

    • html is used for static HTML markup in MVC views

  • Answered by AI
  • Q4. Action filters
  • Q5. Difference between abstract and interface
  • Ans. 

    Abstract classes are partially implemented classes that can have both abstract and non-abstract members. Interfaces are fully abstract classes that define a contract for implementing classes.

    • Abstract classes can have constructors, fields, and non-abstract methods, while interfaces cannot.

    • A class can inherit from only one abstract class, but it can implement multiple interfaces.

    • Abstract classes can provide default imple...

  • Answered by AI
  • Q6. Query to find 4th higesty salary
  • Ans. 

    Query to find 4th highest salary

    • Use the 'ROW_NUMBER' function to assign a rank to each salary

    • Order the salaries in descending order

    • Select the salary with rank 4

  • Answered by AI
  • Q7. Arraylist and array
  • Q8. Difference between mvc vs webapi
  • Ans. 

    MVC is a web application framework for building web pages, while WebAPI is a framework for building HTTP services.

    • MVC is used for building web applications that return HTML views to the client.

    • WebAPI is used for building HTTP services that return data in JSON or XML format.

    • MVC has a view engine that generates HTML output, while WebAPI does not.

    • MVC has a controller that handles user input and updates the model, while We...

  • Answered by AI
  • Q9. Async and await
  • Q10. Minification and bundling
  • Q11. Override and virtual

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare well on technical side

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Basic oops concept, interface vs abstract class, polymorphism, mvc page life cycle and filters in mvc
  • Q2. Lazy loading, ienumerable and iquerable, joins in linq, Program - find the occurence of specific character in given string

Globant interview questions for designations

 Senior .NET Developer

 (3)

 Junior .NET Developer

 (1)

 Java Developer

 (6)

 Software Developer

 (2)

 Salesforce Developer

 (2)

 IOS Developer

 (2)

 BI Developer

 (1)

 Game Developer

 (1)

Interview questions from similar companies

I was interviewed before Jul 2016.

Interview Questionnaire 

5 Questions

  • Q1. Resume shortlisting
  • Q2. Basic dot net and C # questions
  • Q3. Basic programs to write
  • Q4. Programming logic
  • Q5. Unit testing skills

Interview Preparation Tips

Skills: C# (C Sharp), Programming, Unit Testing

I applied via Campus Placement and was interviewed before Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic Fundamentals of SQL, .NET and Programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all the fundamentals questions like joins, triggers, stored procedures for SQL and application life cycle, session, cookie in .NET
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is a constructor?
  • Ans. 

    A constructor is a special method in a class that is automatically called when an instance of the class is created.

    • Constructors have the same name as the class they belong to.

    • They can be used to initialize the object's state or perform any necessary setup.

    • Constructors do not have a return type.

    • Example: public class Person { public Person() { // constructor code here } }

  • Answered by AI

Skills evaluated in this interview

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

(11 Questions)

  • Q1. MVC vs .NET lifecycle
  • Ans. 

    MVC is a design pattern used in .NET development, while .NET lifecycle refers to the stages of a .NET application's execution.

    • MVC is a design pattern that separates an application into three main components: Model, View, and Controller.

    • .NET lifecycle refers to the stages of a .NET application's execution, including initialization, execution, and termination.

    • MVC helps in achieving separation of concerns and making the c...

  • Answered by AI
  • Q2. Dispose vs Finalize
  • Ans. 

    Dispose is used to release unmanaged resources immediately, while Finalize is used for cleanup operations before an object is destroyed by the garbage collector.

    • Dispose is called explicitly by the developer, while Finalize is called by the garbage collector.

    • Dispose should be implemented in classes that directly interact with unmanaged resources.

    • Finalize should be implemented in classes that need to release resources be...

  • Answered by AI
  • Q3. Liscov Substitution
  • Q4. Dom Sanitizer in Angular
  • Ans. 

    DOM sanitizer in Angular is used to sanitize untrusted HTML to prevent XSS attacks.

    • DOM sanitizer is used to sanitize HTML content before rendering it in Angular templates.

    • It helps prevent Cross-Site Scripting (XSS) attacks by removing potentially harmful content.

    • Angular provides a built-in DomSanitizer service for sanitizing HTML content.

    • Example: Using DomSanitizer in Angular template to sanitize a URL before rendering

  • Answered by AI
  • Q5. Ngrx state management, how do you manage state in your current project?
  • Ans. 

    I use Ngrx for state management in my current project by defining actions, reducers, effects, and selectors.

    • Define actions to describe user events or interactions

    • Create reducers to specify how state should change in response to actions

    • Implement effects to manage side effects like API calls

    • Use selectors to retrieve specific pieces of state for components

  • Answered by AI
  • Q6. Stored procedure vs Functions
  • Ans. 

    Stored procedures are precompiled SQL queries stored in the database, while functions are reusable code blocks that return a value.

    • Stored procedures are used for performing specific tasks or operations on the database.

    • Functions are used to encapsulate logic and can be called within SQL queries or other functions.

    • Stored procedures can have input and output parameters, while functions always return a value.

    • Stored procedu...

  • Answered by AI
  • Q7. Model binder in MVC
  • Ans. 

    Model binder in MVC is used to map data from HTTP requests to action method parameters in controllers.

    • Model binder maps form data, query string parameters, and route data to action method parameters in MVC controllers.

    • It helps in simplifying the process of extracting data from HTTP requests.

    • Model binder can be customized by creating custom model binders to handle complex data binding scenarios.

  • Answered by AI
  • Q8. Would transaction be rolled back if innermost stored procedure throws an error ?
  • Ans. 

    Yes, the transaction will be rolled back if the innermost stored procedure throws an error.

    • If an error occurs in the innermost stored procedure, it will cause the entire transaction to be rolled back.

    • This ensures that the database remains in a consistent state.

    • Rolling back the transaction means that any changes made by the stored procedures within the transaction will be undone.

  • Answered by AI
  • Q9. NgOninit vs Constructor
  • Ans. 

    NgOnInit is a lifecycle hook in Angular that is called after the component has been initialized, while the constructor is a TypeScript feature used to initialize class properties.

    • NgOnInit is specific to Angular components, while constructor is a general TypeScript feature.

    • NgOnInit is used for initialization logic that relies on Angular's view and input bindings being initialized, while constructor is used for basic ini...

  • Answered by AI
  • Q10. Use of zone.js file
  • Ans. 

    zone.js is a library for managing asynchronous operations in Angular applications.

    • zone.js helps in tracking asynchronous operations and their execution context in Angular applications.

    • It provides hooks for intercepting asynchronous tasks like setTimeout, setInterval, and promises.

    • zone.js can be used for profiling, debugging, and error handling in Angular applications.

  • Answered by AI
  • Q11. Write a query to identify and remove duplicated from a table.
  • Ans. 

    Use a query with GROUP BY and HAVING clause to identify and remove duplicates from a table.

    • Use GROUP BY to group rows with the same values

    • Use HAVING COUNT(*) > 1 to identify duplicates

    • Use DELETE statement to remove duplicates

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. SOLID principles
  • Q2. Global and local temp tables
  • Q3. SQL QUERIES AND PALINDROME CODE
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Write Reverse string program
  • Ans. 

    Program to reverse a string using array of characters

    • Create a character array from the input string

    • Use two pointers to swap characters from start and end of the array

    • Continue swapping until the pointers meet in the middle

  • Answered by AI
Contribute & help others!
anonymous
You can choose to be anonymous

Globant Interview FAQs

How many rounds are there in Globant DOT NET Developer interview?
Globant interview process usually has 1-2 rounds. The most common rounds in the Globant interview process are Technical and Resume Shortlist.
How to prepare for Globant DOT 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 C#, Entity Framework, .Net, LINQ and Web Api.
What are the top questions asked in Globant DOT NET Developer interview?

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

  1. Query to find 4th higesty sal...read more
  2. Difference between abstract and interf...read more
  3. December between ienumerable and iquerya...read more

Recently Viewed

LIST OF COMPANIES

Narayan Bhargava Group

Overview

SALARIES

Thomson Reuters

SALARIES

Thomson Reuters

LIST OF COMPANIES

Dun & Bradstreet

Overview

SALARIES

Narayan Bhargava Group

SALARIES

Infor Global Solution

SALARIES

Thomson Reuters

SALARIES

Thomson Reuters

JOBS

Thomson Reuters

No Jobs

INTERVIEWS

Yatra

No Interviews

Tell us how to improve this page.

Globant DOT NET Developer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more
Globant DOT NET Developer Salary
based on 23 salaries
₹5.5 L/yr - ₹22 L/yr
154% more than the average DOT NET Developer Salary in India
View more details

Globant DOT NET Developer Reviews and Ratings

based on 4 reviews

4.2/5

Rating in categories

3.6

Skill development

4.0

Work-life balance

3.1

Salary

3.5

Job security

4.3

Company culture

3.1

Promotions

3.7

Work satisfaction

Explore 4 Reviews and Ratings
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