Upload Button Icon Add office photos

Filter interviews by

Casepoint Interview Questions, Process, and Tips

Updated 2 Mar 2025

Top Casepoint Interview Questions and Answers

View all 14 questions

Casepoint Interview Experiences

Popular Designations

10 interviews found

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

I was interviewed in Jan 2025.

Round 1 - Coding Test 

Performing CRUD operations with ADO.NET without the use of JavaScript and Angular.

Round 2 - Technical 

(5 Questions)

  • Q1. SQL query and oops in depp
  • Ans. 

    SQL query and OOPs concepts are essential for a Junior .NET Developer.

    • Understand SQL queries for data retrieval, manipulation, and management.

    • Learn Object-Oriented Programming principles like inheritance, encapsulation, and polymorphism.

    • Practice writing SQL queries to retrieve specific data from databases.

    • Implement OOPs concepts in .NET applications for better code organization and reusability.

  • Answered by AI
  • Q2. Explain the difference between a correlated subquery and a nested subquery.
  • Ans. 

    Correlated subquery refers to a subquery that depends on the outer query, while nested subquery is a subquery within another subquery.

    • Correlated subquery is executed for each row of the outer query, while nested subquery is executed only once.

    • Correlated subquery can reference columns from the outer query, while nested subquery cannot.

    • Example of correlated subquery: SELECT * FROM table1 WHERE column1 = (SELECT MAX(colum...

  • Answered by AI
  • Q3. How can you identify and delete duplicate rows in a SQL table?
  • Ans. 

    Identifying and deleting duplicate rows in a SQL table can be done using SQL queries.

    • Use the GROUP BY clause along with the COUNT() function to identify duplicate rows.

    • Use the HAVING clause to filter out rows with a count greater than 1.

    • Use the DELETE statement with a subquery to delete duplicate rows.

    • Example: SELECT column1, column2, COUNT(*) FROM table_name GROUP BY column1, column2 HAVING COUNT(*) > 1;

    • Example: DE...

  • Answered by AI
  • Q4. What is the purpose of indexing in a database, and what are the different types of indexes?
  • Ans. 

    Indexing in a database improves query performance by allowing faster retrieval of data.

    • Indexes are used to quickly locate data without having to search every row in a table.

    • Types of indexes include clustered, non-clustered, unique, and composite indexes.

    • Clustered indexes physically reorder the data in the table based on the index key.

    • Non-clustered indexes store a separate structure that contains the index key and a poi...

  • Answered by AI
  • Q5. How would you implement a recursive query in SQL? Provide an example.
  • Ans. 

    To implement a recursive query in SQL, use Common Table Expressions (CTE) with a recursive part and a termination condition.

    • Use a Common Table Expression (CTE) to define the recursive part of the query.

    • Include a base case in the CTE to stop the recursion.

    • Reference the CTE in the main query to retrieve the results.

    • Example: WITH RecursiveCTE AS (SELECT * FROM TableName WHERE condition UNION ALL SELECT * FROM RecursiveCTE

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The company is the best for freshers

Junior .NET Developer Interview Questions asked at other Companies

Q1. what is StringBuffer and were is use
View answer (2)

Sopra Steria

Rated 4 for Job Security by our employees on AmbitionBox

Secure your future with a company that values your job stability.

Intern Interview Questions & Answers

user image Anonymous

posted on 2 Mar 2025

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

I was interviewed before Mar 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Explain polymorphism ,encapsulation ,abstraction ,interface?
  • Ans. 

    Polymorphism, encapsulation, abstraction, and interface are key concepts in object-oriented programming.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Encapsulation is the bundling of data and methods that operate on the data into a single unit.

    • Abstraction involves hiding the complex implementation details and showing only the necessary features of an object.

    • Interface d...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Object-Oriented Programming (OOP), Database Management Systems (DBMS), and problem-solving techniques.

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)
Casepoint Interview Questions and Answers for Freshers
illustration image
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Sep 2023. 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 Resume tips
Round 2 - HR 

(5 Questions)

  • Q1. You current location
  • Q2. Lucknow my current location
  • Q3. What is home town
  • Q4. Where do you leave
  • Q5. How many experience

Interview Preparation Tips

Interview preparation tips for other job seekers - You have good knowledge

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 (42)

Intern Interview Questions & Answers

user image Anonymous

posted on 19 Jul 2024

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

I applied via Campus Placement and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Consist of aptitude questios

Round 2 - Technical 

(2 Questions)

  • Q1. Data Management
  • Q2. Data structures

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Casepoint interview questions for popular designations

 Intern

 (2)

 Software Engineer

 (1)

 Software Developer

 (1)

 Senior Software Engineer

 (1)

 System Administrator

 (1)

 Business Analyst

 (1)

 Junior .NET Developer

 (1)

 Trainee

 (1)

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

I applied via Company Website and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What’s your experience as BA
  • Q2. What’s SDLC explain it
  • Ans. 

    SDLC stands for Software Development Life Cycle, a process used by software development teams to design, develop, and test high-quality software.

    • SDLC is a structured process that consists of phases such as planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has specific goals and deliverables that must be completed before moving on to the next phase.

    • Examples of SDLC models include Waterfall,...

  • Answered by AI

Skills evaluated in this interview

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)

I applied via Approached by Company and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. It's depend on your work profile. In my case they ask me questions of Windows AD

Interview Preparation Tips

Interview preparation tips for other job seekers - They consider your confidence level. So keep confidence while you give interview.

System Administrator Interview Questions asked at other Companies

Q1. 2. What is Cloud Technology. What is Microsoft Intune. If we can manage applications using MAM then why do we need MDM?
View answer (8)

Jobs at Casepoint

View all

I applied via Referral

Round 1 - Technical 

(1 Question)

  • Q1. Practical round Mostly explain crud operation

Interview Preparation Tips

Interview preparation tips for other job seekers - No internet access so be prepared

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

I applied via Referral and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Question Asked project related. Roles and responsibility. Oops, Sql server, .net.
  • Q2. Oops MS.NET Sql Server Web api Etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Its good company. But I show many people left the job in training period. Because we have not providing proper training as well. Only self learning we have.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)

I applied via Campus Placement and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Tell me introduce about yourself?
  • Q2. What is asp. Net MVC?
  • Ans. 

    ASP.NET MVC is a web application framework that implements the model-view-controller pattern.

    • It separates an application into three main components: Model, View, and Controller.

    • It provides better control over HTML, CSS, and JavaScript.

    • It supports test-driven development and dependency injection.

    • It is built on top of ASP.NET and uses the .NET Framework.

    • Examples of websites built with ASP.NET MVC include Stack Overflow a

  • Answered by AI
  • Q3. What is lifecycle of MVC??
  • Ans. 

    MVC lifecycle involves three stages: initialization, request processing, and view rendering.

    • Initialization: Controller and model objects are created.

    • Request processing: Controller receives and processes user requests, updates the model, and selects the view.

    • View rendering: The view is rendered and sent back to the user.

    • Example: User requests a webpage, the controller receives the request, updates the model with data fr...

  • Answered by AI
  • Q4. What is relation between html css and javascript
  • Ans. 

    HTML is used for structuring content, CSS for styling, and JavaScript for adding interactivity to web pages.

    • HTML is used to create the structure of a web page, including headings, paragraphs, and images.

    • CSS is used to style the elements created with HTML, such as changing colors, fonts, and layouts.

    • JavaScript is used to add interactivity to web pages, such as animations, form validation, and dynamic content.

    • All three t...

  • Answered by AI
  • Q5. Difference between MVC and WEB API ?
  • Ans. 

    MVC is a design pattern for creating web applications while WEB API is a framework for building HTTP services.

    • MVC stands for Model-View-Controller and is used for creating web applications with a clear separation of concerns.

    • WEB API is a framework for building HTTP services that can be consumed by various clients such as web browsers and mobile devices.

    • MVC is used for creating server-side web applications while WEB API...

  • Answered by AI
  • Q6. What is postgresql??
  • Ans. 

    PostgreSQL is an open-source relational database management system.

    • PostgreSQL is known for its reliability, data integrity, and extensibility.

    • It supports SQL and is ACID-compliant.

    • It has a strong community and offers many features such as JSON support, full-text search, and spatial data types.

    • It is commonly used in web applications, data warehousing, and geospatial applications.

    • Examples of companies using PostgreSQL in

  • Answered by AI
  • Q7. Explain the object oriented programming concepts??
  • Ans. 

    Object-oriented programming is a programming paradigm based on the concept of objects.

    • Objects are instances of classes that encapsulate data and behavior

    • Inheritance allows classes to inherit properties and methods from parent classes

    • Polymorphism allows objects to take on multiple forms and behave differently based on context

    • Abstraction allows for the creation of simplified models of complex systems

    • Encapsulation hides t...

  • Answered by AI
  • Q8. What are the filters in ASP. NET MVC?
  • Ans. 

    Filters in ASP.NET MVC are used to perform pre- and post-processing of requests and responses.

    • Filters are attributes that can be applied to controllers or actions.

    • They can be used for authentication, caching, logging, error handling, etc.

    • Some built-in filters are Authorize, OutputCache, HandleError, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Having good communication skills..
Having technical skills compulsary (MVC, web api, kendo, and postgresql)

Skills evaluated in this interview

Top Casepoint Associate Software Engineer Interview Questions and Answers

Q1. What is relation between html css and javascript
View answer (1)

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

Trainee Interview Questions & Answers

user image Anonymous

posted on 9 Jul 2021

Interview Questionnaire 

1 Question

  • Q1. Introduced your selff

Trainee Interview Questions asked at other Companies

Q1. Ques1: There is a big file of words which is dynamically changing. We are continuously adding some words into it. How would you keep track of top 10 trending words at each moment? Ques2:Write a function that returns the length of the longes... read more
View answer (2)
Contribute & help others!
anonymous
You can choose to be anonymous

Casepoint Interview FAQs

How many rounds are there in Casepoint interview?
Casepoint interview process usually has 1-2 rounds. The most common rounds in the Casepoint interview process are Technical, Resume Shortlist and HR.
How to prepare for Casepoint 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 Casepoint. The most common topics and skills that interviewers at Casepoint expect are Agile, Project Management, Software Development, Software Testing and .Net.
What are the top questions asked in Casepoint interview?

Some of the top questions asked at the Casepoint interview -

  1. What is relation between html css and javascr...read more
  2. How can you identify and delete duplicate rows in a SQL tab...read more
  3. What is the purpose of indexing in a database, and what are the different types...read more

Recently Viewed

INTERVIEWS

Pactera Edge

No Interviews

DESIGNATION

Tell us how to improve this page.

Casepoint Interview Process

based on 7 interviews

Interview experience

4.3
  
Good
View more

HCLTech

A more secure future awaits you

Interview Questions from Similar Companies

Thomson Reuters Interview Questions
4.1
 • 112 Interviews
Apisero Interview Questions
4.3
 • 64 Interviews
Zenoti Interview Questions
3.0
 • 42 Interviews
EPIQ Systems Interview Questions
3.6
 • 13 Interviews
Exterro Interview Questions
4.4
 • 4 Interviews
Discoy Interview Questions
2.6
 • 1 Interview
View all

Fast track your campus placements

View all

Casepoint Reviews and Ratings

based on 125 reviews

3.8/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

3.3

Salary

3.7

Job security

3.9

Company culture

3.4

Promotions

3.5

Work satisfaction

Explore 125 Reviews and Ratings
Financial Planning Analyst

Surat

0-4 Yrs

Not Disclosed

Automation Test Engineer

Surat

0-4 Yrs

Not Disclosed

Security Administrator

Surat

5-10 Yrs

Not Disclosed

Explore more jobs
Software Engineer
56 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
50 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
44 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Tester
39 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Tester
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Casepoint with

Thomson Reuters

4.1
Compare

EPIQ Systems

3.6
Compare

OpenText Technologies

3.7
Compare

I-pro Services Kolhapur

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent