Upload Button Icon Add office photos

Black Knight

Compare button icon Compare button icon Compare

Filter interviews by

Black Knight Interview Questions, Process, and Tips

Updated 13 Feb 2024

Top Black Knight Interview Questions and Answers

View all 27 questions

Black Knight Interview Experiences

Popular Designations

28 interviews found

Interview Preparation Tips

Interview preparation tips for other job seekers - Find what makes you passionate , stay positive,don't care about the negative news on the news paper

Data Entry Operator Interview Questions asked at other Companies

Q1. What is skills matrix of Return center Department?
View answer (44)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2023. There was 1 interview round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Second technical round taken by engineering DBA team.

SQL Database Administrator Interview Questions asked at other Companies

Q1. What is a database management System and what is concept of primary key and foreign key?
View answer (8)
Black Knight Interview Questions and Answers for Freshers
illustration image
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

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

Business System Analyst Interview Questions asked at other Companies

Q1. 3. How will you manage the priority task when overloaded with work.
View answer (2)

Interview Questions & Answers

user image Anonymous

posted on 28 Dec 2021

I applied via Recruitment Consultant and was interviewed in Nov 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Be well prepared about your job role,daily task,what difficulties you have faced what's the solution and what is the new things you have done.you have to be extremely good in communication with street smar...

Interview Preparation Tips

Interview preparation tips for other job seekers - A cyber security analyst is primarily responsible for protecting a company's network and systems from cyber attacks. This involves researching upcoming IT trends, creating contingency plans, reviewing suspicious activities, reporting security breaches, and educating the rest of the company on security measures.

Black Knight interview questions for popular designations

 Indexing Associate

 (3)

 Quality Analyst

 (1)

 Application Developer

 (1)

 Software Test Analyst

 (1)

 Technical Lead

 (1)

 Software Developer

 (1)

 Application Programmer

 (1)

 Test Analyst

 (1)

Interview Questionnaire 

10 Questions

  • Q1. What is dispose and finalize?
  • Ans. 

    Dispose and finalize are methods used for releasing resources in .NET.

    • Dispose is used to release unmanaged resources immediately.

    • Finalize is used to release managed resources when the garbage collector runs.

    • Dispose can be called manually or through the using statement.

    • Finalize is called automatically by the garbage collector.

    • Dispose is implemented by IDisposable interface.

    • Finalize is implemented by Object class.

  • Answered by AI
  • Q2. Explain oops concepts?
  • Ans. 

    OOPs concepts are the principles of Object-Oriented Programming that help in designing and implementing software solutions.

    • Encapsulation - binding data and functions together

    • Inheritance - creating new classes from existing ones

    • Polymorphism - ability of objects to take on multiple forms

    • Abstraction - hiding implementation details

    • Objects - instances of classes that encapsulate data and behavior

  • Answered by AI
  • Q3. What is inheritance and disadavantages of it?
  • Ans. 

    Inheritance is a mechanism in OOP where a new class is derived from an existing class.

    • It allows for code reusability and promotes a hierarchical structure.

    • It can lead to tight coupling and make the code harder to maintain.

    • It can also result in the creation of unnecessary classes and increase complexity.

    • Example: A Car class can inherit properties and methods from a Vehicle class.

    • Example: A Square class can inherit prope

  • Answered by AI
  • Q4. Explicite interface?
  • Ans. 

    Explicit interface is a way to implement multiple interfaces with same method names.

    • Explicit interface is used to avoid naming conflicts when implementing multiple interfaces.

    • It is implemented by prefixing the interface name to the method name.

    • It is useful when implementing COM interfaces in .NET.

    • Example: void IInterface1.Method() and void IInterface2.Method()

  • Answered by AI
  • Q5. Interface vs abstract classes
  • Ans. 

    Interface defines only method signatures while abstract class can have method implementations.

    • Interfaces can be implemented by multiple classes while abstract classes can only be extended by one class.

    • Interfaces are used for achieving multiple inheritance in Java while abstract classes are used for single inheritance.

    • Interfaces cannot have constructors while abstract classes can have constructors.

    • An example of an inter...

  • Answered by AI
  • Q6. Startup method in .net core?
  • Ans. 

    Startup method in .NET Core is used to configure the application's services and middleware.

    • Startup method is defined in Startup.cs file.

    • It includes ConfigureServices and Configure methods.

    • ConfigureServices is used to add services to the dependency injection container.

    • Configure is used to configure the HTTP request pipeline.

    • Example: public void ConfigureServices(IServiceCollection services) { services.AddMvc(); }

    • Example...

  • Answered by AI
  • Q7. What are Http verbs?
  • Ans. 

    HTTP verbs are used to indicate the type of action being performed on a resource.

    • HTTP verbs include GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS

    • GET is used to retrieve data from a server

    • POST is used to submit data to a server

    • PUT is used to update an existing resource on a server

    • DELETE is used to delete a resource from a server

    • PATCH is used to partially update a resource on a server

    • HEAD is used to retrieve only the head...

  • Answered by AI
  • Q8. Questions related to logging in webapi?
  • Q9. Sql profiler?
  • Q10. Explain project architecture?
  • Ans. 

    Project architecture refers to the overall design and structure of a software project.

    • It includes the organization of components and modules

    • Defines the relationships between them

    • Specifies the technologies and tools used

    • Determines the overall performance and scalability

    • Examples include MVC, microservices, and client-server architecture

  • Answered by AI

Skills evaluated in this interview

Top Black Knight Software Developer Interview Questions and Answers

Q1. What is inheritance and disadavantages of it?
View answer (1)

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)

Get interview-ready with Top Black Knight Interview Questions

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

I applied via Walk-in and was interviewed before Aug 2022. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - You can work here

Indexing Associate Interview Questions asked at other Companies

Q1. What are biomarkers? what is agonist and antogonist? What ia anabolism and catabolism? Name any two vaccines? What is toxic in plant? What is genetic engineering
Add answer

Jobs at Black Knight

View all
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2022. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic details of C#, .net

Skills evaluated in this interview

Application Developer Interview Questions asked at other Companies

Q1. Minimum Cost to Connect All Points Problem Statement Given an array COORDINATES representing the integer coordinates of some points on a 2D plane, determine the minimum cost required to connect all points. The cost to connect two points, (x... read more
View answer (2)

Interview Questionnaire 

1 Question

  • Q1. Basic concepts about security

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on networking and SOC activities related stuffs

IT Security Analyst Interview Questions asked at other Companies

Q1. Are you familiar with nmap? Please write down the nmap syntax for full port TCP Scan.
View answer (1)

Interview Questionnaire 

3 Questions

  • Q1. What challenges you had faced in previous Job and how did you overcome the challenges?
  • Q2. I had explained the challenges with solutions for those challenges.
  • Q3. Prepare well and need to have good communication skills to Ace an interview

Production Support Analyst Interview Questions asked at other Companies

Q1. Write a query using below data to find out last string from emp table?
View answer (1)

Quality Analyst Interview Questions & Answers

user image Debasish Mishra

posted on 25 May 2023

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before May 2022. There were 2 interview rounds.

Interview Preparation Tips

Topics to prepare for Black Knight Quality Analyst interview:
  • General Administration

Quality Analyst Interview Questions asked at other Companies

Q1. How you will maintain the balance between operations and quality so that they do not have any conflicts of interest
View answer (3)
Contribute & help others!
anonymous
You can choose to be anonymous

Black Knight Interview FAQs

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

Some of the top questions asked at the Black Knight interview -

  1. How to move from one entity framework version to another in a proje...read more
  2. Given a project requirement, how to choose between .Net framework and .Net Co...read more
  3. How to create a restful service without using Asp.Net Web Api templa...read more
How long is the Black Knight interview process?

The duration of Black Knight interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

SALARIES

ByteDance

No Salaries

JOBS

ANM COMMUNICATION

No Jobs

JOBS

BITT Polytechnic

No Jobs

JOBS

Design Creation

No Jobs

JOBS

Emerald Jewel Industry India

No Jobs

JOBS

Satyam Educational Society

No Jobs

JOBS

Bajaj Finance

No Jobs

JOBS

Ginteja Insurance Brokers

No Jobs

JOBS

Tata Capital

No Jobs

INTERVIEWS

DAV College Managing Committee

No Interviews

Tell us how to improve this page.

Black Knight Interview Process

based on 22 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

FIS Interview Questions
3.9
 • 482 Interviews
S&P Global Interview Questions
4.1
 • 277 Interviews
Fiserv Interview Questions
3.0
 • 172 Interviews
TransUnion Interview Questions
4.0
 • 89 Interviews
Equifax Interview Questions
3.3
 • 32 Interviews
Experian Interview Questions
3.8
 • 22 Interviews
CoreLogic Interview Questions
4.0
 • 2 Interviews
View all

Black Knight Reviews and Ratings

based on 393 reviews

3.6/5

Rating in categories

3.3

Skill development

3.4

Work-life balance

3.3

Salary

3.4

Job security

3.3

Company culture

3.1

Promotions

3.3

Work satisfaction

Explore 393 Reviews and Ratings
Dot Net Developer with Azure

Bhubaneswar,

Hyderabad / Secunderabad

10-19 Yrs

₹ 7-17 LPA

Dot Net Fullstack Developer

Bhubaneswar,

Hyderabad / Secunderabad

10-20 Yrs

₹ 7-17 LPA

.NET Software Developer

Bhubaneswar,

Hyderabad / Secunderabad

7-12 Yrs

₹ 8-18 LPA

Explore more jobs
Indexing Associate
286 salaries
unlock blur

₹1.2 L/yr - ₹3.5 L/yr

Application Programmer
184 salaries
unlock blur

₹4.1 L/yr - ₹18.4 L/yr

Software Test Analyst
142 salaries
unlock blur

₹2.5 L/yr - ₹13.8 L/yr

Application Programmer 2
53 salaries
unlock blur

₹6.5 L/yr - ₹18 L/yr

IT Security Analyst
52 salaries
unlock blur

₹3.4 L/yr - ₹13.5 L/yr

Explore more salaries
Compare Black Knight with

Fiserv

3.0
Compare

FIS

3.9
Compare

CoreLogic

4.0
Compare

First American Corporation

3.6
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