Upload Button Icon Add office photos

Black Knight

Compare button icon Compare button icon Compare

Filter interviews by

Black Knight Technical Lead Interview Questions and Answers

Updated 26 Apr 2022

9 Interview questions

A Technical Lead was asked
Q. How do you migrate from one Entity Framework version to another in a project?
Ans. 

To move from one Entity Framework version to another, update the NuGet package and make necessary code changes.

  • Update the NuGet package to the desired version

  • Make necessary code changes to accommodate any breaking changes

  • Test thoroughly to ensure the application still works as expected

A Technical Lead was asked
Q. How does routing work in ASP.NET MVC?
Ans. 

Routing in Asp.Net MVC maps incoming requests to appropriate controller actions.

  • Routing is configured in RouteConfig.cs file.

  • Routes are defined using MapRoute method.

  • Routes can have placeholders for dynamic values.

  • Routes can have constraints to restrict the values of placeholders.

  • Routes can be named for easy reference.

  • Default route is defined as {controller}/{action}/{id}.

  • Attribute routing can also be used to defi...

Technical Lead Interview Questions Asked at Other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to productio ... read more
asked in Infosys
Q2. Managerial: 1) Explain any one past issue and its mitigation stra ... read more
asked in Cognizant
Q3. 1. Type of documentation for computer system validation. 2.Please ... read more
asked in Wipro
Q4. What automation framework have you worked on?
Q5. What is REST API? And the difference between GET, PUT, POST, DELE ... read more
A Technical Lead was asked
Q. Explain the MVC pipeline.
Ans. 

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

  • Model represents the data and business logic

  • View displays the data to the user

  • Controller handles user input and updates the model and view accordingly

  • The pipeline ensures separation of concerns and promotes modularity

  • Example: A user enters data in a form (input), the controller receives ...

A Technical Lead was asked
Q. Given a project requirement, how do you choose between .Net Framework and .Net Core?
Ans. 

Choose .Net Core for cross-platform and cloud-based applications, .Net Framework for Windows-only applications.

  • Consider the target platform and deployment environment

  • Choose .Net Core for cross-platform and cloud-based applications

  • Choose .Net Framework for Windows-only applications

  • Check for compatibility with existing libraries and frameworks

  • Consider performance and scalability requirements

A Technical Lead was asked
Q. How do you approach performance tuning in SQL?
Ans. 

Performance tuning in SQL involves optimizing queries, indexes, and server settings to improve database performance.

  • Identify slow queries using profiling tools

  • Optimize queries by rewriting or adding indexes

  • Adjust server settings such as memory allocation and disk usage

  • Consider partitioning large tables

  • Regularly monitor and analyze performance metrics

A Technical Lead was asked
Q. What are the differences between DROP, TRUNCATE, and DELETE statements?
Ans. 

Difference between drop, truncate and delete.

  • DROP command removes a table from the database

  • TRUNCATE command removes all rows from a table

  • DELETE command removes specific rows from a table

A Technical Lead was asked
Q. How can you create a RESTful service without using the ASP.NET Web API template?
Ans. 

Creating a RESTful service without using Asp.Net Web Api template.

  • Use a lightweight framework like Flask or Express

  • Define routes and HTTP methods for each endpoint

  • Serialize data to JSON format

  • Handle errors and exceptions

  • Test the service using tools like Postman or curl

Are these interview questions helpful?
A Technical Lead was asked
Q. How is WCF different from ASP.NET Web API?
Ans. 

WCF is a framework for building distributed systems while Asp.Net Web Api is for building HTTP services.

  • WCF supports multiple protocols like TCP, HTTP, Named Pipes, etc. while Web Api only supports HTTP.

  • WCF has more configuration options and is more flexible than Web Api.

  • Web Api is more lightweight and easier to use for building RESTful services.

  • WCF is more suitable for building enterprise-level applications with ...

A Technical Lead was asked
Q. How many types of routings are there in ASP.NET MVC?
Ans. 

There are two types of routings in Asp.Net MVC: convention-based routing and attribute routing.

  • Convention-based routing uses default routing rules to map URLs to controller actions.

  • Attribute routing allows developers to define custom routes using attributes on controller actions or at the controller level.

  • Both types of routing can be used together in the same application.

  • Convention-based routing is the default rou...

Black Knight Technical Lead Interview Experiences

1 interview found

Round 1 - Technical 

(9 Questions)

  • Q1. Explain MVC pipe-line.
  • Ans. 

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

    • Model represents the data and business logic

    • View displays the data to the user

    • Controller handles user input and updates the model and view accordingly

    • The pipeline ensures separation of concerns and promotes modularity

    • Example: A user enters data in a form (input), the controller receives the i...

  • Answered by AI
  • Q2. Howrouting works in Asp.Net MVC?
  • Ans. 

    Routing in Asp.Net MVC maps incoming requests to appropriate controller actions.

    • Routing is configured in RouteConfig.cs file.

    • Routes are defined using MapRoute method.

    • Routes can have placeholders for dynamic values.

    • Routes can have constraints to restrict the values of placeholders.

    • Routes can be named for easy reference.

    • Default route is defined as {controller}/{action}/{id}.

    • Attribute routing can also be used to define ro...

  • Answered by AI
  • Q3. How to move from one entity framework version to another in a project?
  • Ans. 

    To move from one Entity Framework version to another, update the NuGet package and make necessary code changes.

    • Update the NuGet package to the desired version

    • Make necessary code changes to accommodate any breaking changes

    • Test thoroughly to ensure the application still works as expected

  • Answered by AI
  • Q4. How WCF is different from Asp.Net Web Api?
  • Ans. 

    WCF is a framework for building distributed systems while Asp.Net Web Api is for building HTTP services.

    • WCF supports multiple protocols like TCP, HTTP, Named Pipes, etc. while Web Api only supports HTTP.

    • WCF has more configuration options and is more flexible than Web Api.

    • Web Api is more lightweight and easier to use for building RESTful services.

    • WCF is more suitable for building enterprise-level applications with compl...

  • Answered by AI
  • Q5. How to create a restful service without using Asp.Net Web Api template?
  • Ans. 

    Creating a RESTful service without using Asp.Net Web Api template.

    • Use a lightweight framework like Flask or Express

    • Define routes and HTTP methods for each endpoint

    • Serialize data to JSON format

    • Handle errors and exceptions

    • Test the service using tools like Postman or curl

  • Answered by AI
  • Q6. Difference between drop, truncate and delete.
  • Ans. 

    Difference between drop, truncate and delete.

    • DROP command removes a table from the database

    • TRUNCATE command removes all rows from a table

    • DELETE command removes specific rows from a table

  • Answered by AI
  • Q7. How many types of routings are there in Asp.Net MVC?
  • Ans. 

    There are two types of routings in Asp.Net MVC: convention-based routing and attribute routing.

    • Convention-based routing uses default routing rules to map URLs to controller actions.

    • Attribute routing allows developers to define custom routes using attributes on controller actions or at the controller level.

    • Both types of routing can be used together in the same application.

    • Convention-based routing is the default routing ...

  • Answered by AI
  • Q8. How to go about performancetuning in SQL?
  • Ans. 

    Performance tuning in SQL involves optimizing queries, indexes, and server settings to improve database performance.

    • Identify slow queries using profiling tools

    • Optimize queries by rewriting or adding indexes

    • Adjust server settings such as memory allocation and disk usage

    • Consider partitioning large tables

    • Regularly monitor and analyze performance metrics

  • Answered by AI
  • Q9. Given a project requirement, how to choose between .Net framework and .Net Core?
  • Ans. 

    Choose .Net Core for cross-platform and cloud-based applications, .Net Framework for Windows-only applications.

    • Consider the target platform and deployment environment

    • Choose .Net Core for cross-platform and cloud-based applications

    • Choose .Net Framework for Windows-only applications

    • Check for compatibility with existing libraries and frameworks

    • Consider performance and scalability requirements

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why would to like to change your organisation?

Interview Preparation Tips

Interview preparation tips for other job seekers - Always try to be prepared as best as one can.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Black Knight?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Started from c# basics,. net, Design patterns, Current project architecture, Angular questions, Security,

Interview Preparation Tips

Interview preparation tips for other job seekers - basics must be clear

Technical Lead Interview Questions Asked at Other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to productio ... read more
asked in Infosys
Q2. Managerial: 1) Explain any one past issue and its mitigation stra ... read more
asked in Cognizant
Q3. 1. Type of documentation for computer system validation. 2.Please ... read more
asked in Wipro
Q4. What automation framework have you worked on?
Q5. What is REST API? And the difference between GET, PUT, POST, DELE ... read more

Interview Questionnaire 

1 Question

  • Q1. How to read property file from spring XML configuration? What is the count of word in a sentence ? Bean scopes of spring? Agile method ? Prime numbers ? Internal working of hashmap.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and answer questions with examples.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All related to the technical queries based on the profile and project required skill set

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good at the technical point of view and project management with time line delivery as they have client facing interviews and one has to visit client side for work.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. Questions spring, design patterns.
  • Q2. Tools used like jira, questions on agile scrum.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview questions on Core java, java 8 streams, two coding questions java, questions on spring boot, Rest api.

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

Interview Questionnaire 

1 Question

  • Q1. Profile related JD perspective questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and professional
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Builder design pattern in java
  • Ans. 

    Builder design pattern is a creational design pattern used to construct complex objects step by step.

    • Builder pattern separates the construction of a complex object from its representation.

    • It allows the same construction process to create different representations of the object.

    • Useful when there are multiple ways to construct an object or when the object creation process is complex.

    • Example: StringBuilder in Java allows ...

  • Answered by AI
  • Q2. Docker, MQ series involved
  • Q3. JOIN Query with country , emp name
  • Ans. 

    JOIN query to retrieve country and employee name

    • Use JOIN keyword to combine data from multiple tables

    • Specify the columns to select from each table

    • Use ON keyword to specify the relationship between the tables

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - we need to work in depth in Design patterns , Micro services concepts

Skills evaluated in this interview

Are these interview questions helpful?
Round 1 - Technical 

(1 Question)

  • Q1. Core java basic questions, SPring , Rest service, Hashap working, contract of hashmap and equals
Round 2 - HR 

(1 Question)

  • Q1. Why do you want to join Citiustech

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well. Rejection rate is higher
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. SQL, Unix , basics on Java
Round 2 - Technical 

(1 Question)

  • Q1. About Project, SQL Query
Round 3 - HR 

(1 Question)

  • Q1. Strength and weakness
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response
Round 1 - Coding Test 

If you know basi concept you can easily crack this there is no dsa questions

Round 2 - HR 

(3 Questions)

  • Q1. Drop the idea if you are shortlisted by Hr Trupti Palshetkar even if you clear all round of interview you won't get offer after waiting for month or two she collectiong details like ctc,ectc, np, before in...
  • Q2. I would recommend please clarify everything in initial Hr discussion about hr policies, ctc,ectc,np everything this is ultimatly client based role so don't wait for offer more than 10 days post clearing in...
  • Q3. Good for nothing Hr & policies

Black Knight Interview FAQs

How many rounds are there in Black Knight Technical Lead interview?
Black Knight interview process usually has 2 rounds. The most common rounds in the Black Knight interview process are Technical and HR.
What are the top questions asked in Black Knight Technical Lead interview?

Some of the top questions asked at the Black Knight Technical Lead 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

Tell us how to improve this page.

Black Knight Technical Lead Salary
based on 10 salaries
₹18.3 L/yr - ₹21 L/yr
At par with the average Technical Lead Salary in India
View more details

Black Knight Technical Lead Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Indexing Associate
287 salaries
unlock blur

₹1.2 L/yr - ₹3.5 L/yr

Application Programmer
166 salaries
unlock blur

₹4.2 L/yr - ₹18.4 L/yr

Software Test Analyst
126 salaries
unlock blur

₹4 L/yr - ₹16.2 L/yr

Application Programmer 2
55 salaries
unlock blur

₹6.5 L/yr - ₹17 L/yr

Business System Analyst
49 salaries
unlock blur

₹3.2 L/yr - ₹13.5 L/yr

Explore more salaries
Compare Black Knight with

ITC Infotech

3.7
Compare

3i Infotech

3.4
Compare

Xoriant

4.1
Compare

CitiusTech

3.3
Compare
write
Share an Interview