Upload Button Icon Add office photos
Engaged Employer

i

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

Codebase Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Codebase Solutions Interview Questions and Answers

Updated 7 Mar 2025

Codebase Solutions Interview Experiences

Popular Designations

4 interviews found

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

I applied via Job Portal and was interviewed in Jul 2023. There were 5 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. Dotnet technical
  • Q2. Real time project scenarios
Round 3 - Technical 

(2 Questions)

  • Q1. Dotnet technical in MVC ,C# and sql
  • Q2. Detailed technical
Round 4 - One-on-one 

(1 Question)

  • Q1. Project work and real time work
Round 5 - HR 

(1 Question)

  • Q1. Compensation and culture adaptation

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (12)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. MVC FRAMEWORK AND MAINLY ON ARCHITECTURE
  • Q2. DOTNET AND PROJECT RELATED
Round 2 - HR 

(1 Question)

  • Q1. Logic questions in MVC

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 12 Dec 2024

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

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

Round 1 - Coding Test 

Basic Data Analyst, please explain the project in detail.

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Technical questions related to skill set was asked
Round 2 - Program Test 

(1 Question)

  • Q1. Program test has to be done

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well .Its technical and was very good

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (12)

Codebase Solutions interview questions for popular designations

 DOT NET Developer

 (2)

 Data Analyst

 (1)

 Software Developer

 (1)

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is CLR in .NET?
  • Ans. 

    CLR stands for Common Language Runtime, it is the virtual machine component of the .NET framework.

    • CLR is responsible for managing the execution of .NET programs.

    • It provides services such as memory management, exception handling, and security.

    • CLR compiles the intermediate language code into native code during execution.

    • It allows for cross-language integration and interoperability within the .NET framework.

    • Examples of la...

  • Answered by AI
  • Q2. Common Language runtime.
  • Ans. 

    Common Language Runtime (CLR) is the virtual machine component of Microsoft's .NET framework, responsible for managing execution of .NET programs.

    • CLR provides various services such as memory management, exception handling, and security.

    • It compiles intermediate language code into machine code during execution.

    • CLR allows for interoperability between different languages in the .NET framework.

    • Example: C# and VB.NET code ca...

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

(1 Question)

  • Q1. What is a core ASP.NET?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How does Dependency Injection work in .NET core, why it is important?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is D/W array and ArrayList in .Net?
  • Ans. 

    D/W array is a dynamic array in .Net that can grow or shrink in size. ArrayList is a collection class that can store objects of any type.

    • D/W array is a resizable array that automatically adjusts its size as elements are added or removed.

    • ArrayList is a collection class that can store objects of any type, allowing for flexibility in data storage.

    • Example: D/W array - string[] myArray = new string[5]; ArrayList - ArrayList

  • Answered by AI
  • Q2. Array : Fixed size, type -safe. ArrayList : Dynamic size, not type-safe.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between readonly and const in C#?
  • Ans. 

    readonly variables can be assigned a value either at the time of declaration or in the constructor, while const variables must be assigned a value at the time of declaration and cannot be changed.

    • readonly variables can be assigned a value at runtime, while const variables must be assigned a value at compile time

    • readonly variables can be assigned a value in the constructor, while const variables cannot

    • const variables ar...

  • Answered by AI
  • Q2. Const is compile-time constant, while readonly is runtime constant.
  • Ans. 

    const is compile-time constant, while readonly is runtime constant.

    • const values are determined at compile time and cannot be changed during runtime

    • readonly values can be assigned a value either at the declaration or in the constructor and can be changed at runtime

    • const is used for values that are known at compile time, like mathematical constants

    • readonly is used when the value needs to be initialized at runtime, like d

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Tailor your resume to match the job description and highlight relevant skills.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Dependency injection ?
  • Ans. 

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

    • Dependency injection helps in achieving loose coupling between classes.

    • It allows for easier testing and maintenance of code.

    • There are three types of dependency injection - constructor injection, setter injection, and interface injection.

    • Example: Instead of creating an instance of a class within an...

  • Answered by AI
  • Q2. Injecting Dependencies instead of creating them.
  • Ans. 

    Injecting dependencies allows for better flexibility, testability, and maintainability in code.

    • Injecting dependencies means passing objects that a class needs rather than creating them within the class.

    • This allows for easier testing by mocking dependencies and swapping them out for different implementations.

    • Dependency injection frameworks like Unity, Ninject, or Autofac can help manage dependencies.

    • Example: Instead of ...

  • Answered by AI

Codebase Solutions Interview FAQs

How many rounds are there in Codebase Solutions interview?
Codebase Solutions interview process usually has 2-3 rounds. The most common rounds in the Codebase Solutions interview process are Technical, HR and Resume Shortlist.
How to prepare for Codebase Solutions 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 Codebase Solutions. The most common topics and skills that interviewers at Codebase Solutions expect are C#, MVC, .Net, SQL and SQL Server.
What are the top questions asked in Codebase Solutions interview?

Some of the top questions asked at the Codebase Solutions interview -

  1. Dotnet technical in MVC ,C# and ...read more
  2. technical questions related to skill set was as...read more
  3. MVC FRAMEWORK AND MAINLY ON ARCHITECT...read more

Tell us how to improve this page.

Codebase Solutions Interview Process

based on 4 interviews

Interview experience

4.8
  
Excellent
View more

Interview Questions from Similar Companies

Webdew Interview Questions
4.4
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 92 Interviews
Quantsapp Interview Questions
2.8
 • 35 Interviews
Appsierra Interview Questions
4.4
 • 31 Interviews
View all

Codebase Solutions Reviews and Ratings

based on 9 reviews

4.3/5

Rating in categories

3.8

Skill development

4.1

Work-life balance

3.6

Salary

4.1

Job security

3.9

Company culture

3.5

Promotions

3.9

Work satisfaction

Explore 9 Reviews and Ratings
Software Engineer
4 salaries
unlock blur

₹7 L/yr - ₹10 L/yr

Software Developer
4 salaries
unlock blur

₹3 L/yr - ₹3.2 L/yr

HR Manager
4 salaries
unlock blur

₹6 L/yr - ₹6.5 L/yr

Senior Developer
4 salaries
unlock blur

₹10.4 L/yr - ₹12 L/yr

Sdet Lead
4 salaries
unlock blur

₹25 L/yr - ₹55 L/yr

Explore more salaries
Compare Codebase Solutions with

Cogniter Technologies

3.4
Compare

IVTL Infoview Technologies

3.6
Compare

Apmosys Technologies

3.5
Compare

Pitney Bowes

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