0% found this document useful (0 votes)
8 views4 pages

Interview Questions 2023 PDF

.NET and Angular cover various programming concepts including dependency injection, service lifecycle, and SOLID principles. The document discusses key features of .NET Core, differences between ASP.NET Core and ASP.NET Framework, as well as Angular lifecycle and data handling. Additionally, it touches on SQL operations, including queries, indexing, and temporary tables.

Uploaded by

kahal.engineer
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views4 pages

Interview Questions 2023 PDF

.NET and Angular cover various programming concepts including dependency injection, service lifecycle, and SOLID principles. The document discusses key features of .NET Core, differences between ASP.NET Core and ASP.NET Framework, as well as Angular lifecycle and data handling. Additionally, it touches on SQL operations, including queries, indexing, and temporary tables.

Uploaded by

kahal.engineer
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

.

NET
Dependency Injection
Dependency injection service life cycle
how to inject service in startup file
add transient/singleton/scope
loosely coupled code benefit
difference b/w cons dependency and method dependency
app.run and app.use
app.run vs app.map
Web api controller VS normal controller
How to handle global exception in core
Filter in controller
.Net 6 feature
.Net core and framework difference
what is appsetting.json file
startup file
microservice how they interact with each other
Interface implement multiple inheritance
generic collection and non generic collection
how jwt recognised token valid or not
private constructor
Custom middleware
Agile methodology
caching in core
array and arraylist
generic class
solid principles
Readonly and constant
how to secure web api
yield keyword
== and equals
can we handle multiple exp in single try block
API
Httpverbs
http post and put
why json use in web api
how we define staging and production when deploy
why we use abstract class
access modifier
difference between asp.net core and asp.net framework
how core is platform independent
crystal server
all json file in core
unity of work in project
Tracing in code
test case in asp.net core
bypass the request without authorize
pripert in entity framework
delegate use
find nth number in array
join in lambda expression ,
linq , entity , getenumerator
as iqueryable operator in
1st 3 rd and max number in c#
code first or db first
how review code
how estimate times
what should be project structure
how garbage collector works
logerror in .net core
code quality
agile concept
singleton
access modifier
private constructor
what is assembly

SOLID
single respo -- a single class should be create for single reason
open and closed principle - if i making a method like add customer and done with unit testing
then i will not not it till any issue is fine id i have to
notify the customer then i will cerate a new method

interface seperation -> we cannot force a class to use all method of that interface , if i creating a
interace to sending email if add add send message also ,
and suppose i am client i need only send email so y i implement that interface for that i can
create new one

dependency inversion-> high level should not depend on low level, loosely coupled, create
interface for this , non concrete class

Angular
package json and package lock json
observable and promise
multicasting angular
DOM in angular
http put and post main difference
find array of first duplicate value
directive in angular
Service
life cycle angular
how angular application works
transform data in child node angular
choose 3rd largest number in array
host binding and listener
drawback of view
debounce in angular
map and map filter
formarray and formgroup
authentication and authorization in angular
best way to store token in angular
session and cookie in angular
find duplicate in array
subject and behavior difference
metadata
async pipe

SQL
3rd highest salary
procedure and function
temp table and tmp variable
primary key and candidate key
index in sql
truncate delete and drop
sql
indexing benefit
CTE
Write a single query to calculate the sum of all positive values of x and he sum of all negative
values of x.
select empName from Employee order by 2 desc;
select dName,sum(salary) as Avg(Salary) from Employee inner join Department dept on
Employee.deptId=dept.deptId
group by DeptId
seo
nth salary
pssql and store procedure
using cte find nth salary
Rank and Desrank
temp table and variable
cursor
paging in sql
reoccuring key
indexscan in sql
temp table and temp variable and user define variable

You might also like