0% found this document useful (0 votes)
18 views

Teams

Uploaded by

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

Teams

Uploaded by

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

[3/23 12:43 PM] Sima.

Mishra

sima.mishra@techprocompsoft.com,

[3/23 12:43 PM] Sima.Mishra

techsima@123#

[3/30 6:20 AM] Sima.Mishra

For .Net: MVC pipeline, how we inject dependency, serialization and


deserialization, middleware,RBAC,Data Annotation, root file for the objects we
create in .net, system.obj

For sql server: Joins and outer join and sql query where I have to select an
employee for whose name starts with R and doesn't working on any project,
clustering

About azure, cloud and frontend technology, CI/CD pipeline.

[3/30 6:21 AM] Sima.Mishra

[06:18] Sima.Mishra

What is RBAC, and how does it work?


How can you implement RBAC in a .NET application?
What are the benefits of using RBAC in a .NET application?
How do you define roles and permissions in RBAC for a .NET application?
Can RBAC be extended to support dynamic role assignment in a .NET application?
How can you test RBAC implementation in a .NET application?
What are some best practices for RBAC implementation in .NET applications?
How does RBAC improve application security in a .NET application?
How can you enforce RBAC policies in a .NET application?
Can RBAC be used in combination with other access control methods in a .NET
application?

In Sql server Topics --

Joins
Window Analytical Function --1. Row_Number , 2. Rank, 3. Dense_Rank

[Thursday 11:04 AM] Sima.Mishra

My name is Vishal Vishnoi

I have done the MCA in 2023

Now,I am current persueing the training in techpro Compsoft.


where I done the several projects like student management,matrix project

In student management in this project we create a login panel,signup panel,

signup panel,and grid where the records are shows and records are stored in the
database.

matrix project

In this project we create a matrix and four button through which when we click on
any button the json result

show into the matrix on the basis of indexing using

the technologies like MVC,ADO.Net,Jquery ,Azax,Html,Css.

I have also knowledge about the solid pattern ,singleton pattern and factory
pattern.

[Thursday 11:39 AM] Sima.Mishra

My name is jyoti and I have completed my b. Tech in 2019

After that in 2022 I have joined Techpro compsoft as a dot net developer

I have done several projects and one of them is M_power which is the based on the
keeping records of the employees which have severals module in that such as
education, technology, project etc

I have worked as both designer as well as a developer in that project

My name is Jayesh, I came from Ujjain but presently I am staying in Noida.


I have completed my BCA in computer science with 81% respectively.
I have recently been Going Through Training at Techpro-Compsoft,
where i have been working on projects like Student Management System & Ecommerce
site
they were full fledged Project where i used .net MVC for Front end and Ado.net for
Database connectivity,
and Sql server as a Database,Throughout this Journey I have gained Invaluabe
Knowledge
and Skills but what i bring to the table is my ability to think creative , i am a
fast learner and always ready to improve myself that's all from my side Thanks

My name is Jayesh, I came from Ujjain but presently I am staying in Noida.


I have completed my BCA in computer science with 81% respectively.
I have recently been Going Through Training at Techpro-Compsoft,
where i have been working on projects like Student Management System & Ecommerce
site
they were full fledged Project where i used .net MVC for Front end and Ado.net for
Database connectivity,
and Sql server as a Database,Throughout this Journey I have gained Invaluabe
Knowledge
and Skills but what i bring to the table is my ability to think creative , i am a
fast learner and always ready to improve myself that's all from my side Thanks

Html Pseudo Classes


Entity Framework
Project Layers and how to connect each other ,and their Flow structure
Javascript array methods
ajax .done & .complete function
chnage colour of button on hover without javascript
list and ilist
string and String Builder
Passing data from one method to another
Delegate with real life example
Bootstrap with classes for making webpages responsive
linq
Store value even if the page reloads
lifecycle of mvc webpage
2 actionmehtod with same name and same http verb
middleware
exception object methods,how to log errors,throw keyword
diffrence between throw and throwx
solution explorer
how does delete and edit works in grid their flow

[Thursday 10:55 AM] Sima.Mishra

Question: write a query to change the gender in database where gender is male to
female and female to male;.

Here is the answer this query.

Declare @Tbl table (EmpId int, EmName varchar(100), Gender char(1))

Insert into @Tbl (EmpId , EmName , Gender )

values (1,'Ram', 'M'),

(2,'Ram-100', 'M'),

(3,'Shyam', 'F'),

(4,'Hari', 'F')

Select * From @Tbl


update @Tbl set Gender = (case Gender when 'M' then 'F'

else 'M' end);

Select * From @Tbl

[Thursday 10:53 AM] Sima.Mishra

Lets have a common session at 3:30 pm on Database, Today we will cover SQL
Concepts and Practical over topics Database, Data Tables, Stored Procedure,
Function and Triggers.

Aggregate Function: COUNT, SUM, AVG, MIN, MAX

Inbuilt Function: Distinct, Group BY, Round, Top

Clauses: Where, Order By , Order By desc, in ,Not in, Having

Joins: Left, Right n Full Outer

MVC
All Question asked in MTSL Interview

1- Html Pseudo Classes

2- Entity Framework

3- Project Layers and how to connect each other and their Flow structure.

4- Javascript array methods.

5- Ajax with complete function.

6- Change the color of button on hover without javascript.

7- list and Ilist.

8- String and Stringbuilder.

9- Passing data from one method to another

10-Delegate with real life example.


11-Bootstrap with classes for making web pages responsive.

12- Linq

13-Store value even if the page reloads

14-lifecycle of mvc web page

15-Action Method with same name and same http verb.

16-Middleware.

17-Exception object methods, how to log errors throw keywords.

18-Difference between throw and throws.

19-Solution explorer.

20-How does delete and edit works in grid their flow.

21-Flow of the ado.net

22-Why we use ajax and how to implement it.

23-Suppose variable a have a value then how we transfer that value in variable b
using Javascript.

24- difference between jquery and javascript.

25-MVC architecture.

26-What is the role of startup.cs file

27-What are the filters and how we perform that.

28- Difference b/w Authorization and Authentication

29- A =10 , B=15 how we pass the value of a in b without code.

30-Declare @i int,@j int


@i=10;
print(@i+@j)
what will be output of this

31-State management with example.

32-How we can pass data from controller to view.

33-Dependency injection use with example.

34- What is MVC

35- What is CLR

36- .net life cycle.

37- Difference b/w Undefined and not defined.


38- Routing

39-

SQL operators: Union and Union All

Target:

1. With the help of above Functions, extract 2nd, nth Highest Salary.

2. Finding duplicate records

Till that time, revise SQL concept.

[Thursday 10:53 AM] Sima.Mishra

Query multiple tables with inner joins, outer joins, and self joins.

Inner joins

Cross joins

Left, right, and full outer joins

Adding filter conditions to outer joins

Combining queries with set operators

UNION

UNION ALL

INTERSECT

EXCEPT

Summarizing data with aggregate functions

COUNT

SUM

AVG
MIN

MAX

Managing NULLs

identifying duplicates

Grouping data

Applying conditions with HAVING

Calculating moving averages

Nesting grouped aggregates

Joins and grouping

Introducing subtotals with CUBE and ROLLUP

Construct recursive common table expressions.

Stored Procedures

Functions

Triggers

SQL Jobs

[7/17 11:45 AM] Sima.Mishra

1)flow of the ado.net

2)why we use ajax and how to implement

3)suppose variable a have a value then how we transfer that value in variable b
using javascript

4) difference between jquery and javascript

5)MVC archietecture

6)what is the role of start up.cs


7)what are the filters and how we perform that

8)authorization and authentication difference

9)a=10 , b=15 how we pass the value of a in b without code

10)declare @i int,@j int

@i=10;

print(@i+@j)

what will be output of this

11)state management with example

12)how we can pass data from controller to view

13)dependency injection use with example

Html Pseudo Classes

Entity Framework

Project Layers and how to connect each other ,and their Flow structure

Javascript array methods

ajax .done & .complete function

chnage colour of button on hover without javascript

list and ilist

string and String Builder

Passing data from one method to another

Delegate with real life example

Bootstrap with classes for making webpages responsive

linq

Store value even if the page reloads

lifecycle of mvc webpage

2 actionmehtod with same name and same http verb

middleware

exception object methods,how to log errors,throw keyword

diffrence between throw and throwx

solution explorer
how does delete and edit works in grid their flow

git mail id -- sima.mishra@techprocompsoft.com,

password -- techsima@123#

[3/30 6:20 AM] Sima.Mishra

For .Net: MVC pipeline, how we inject dependency, serialization and


deserialization, middleware,RBAC,Data Annotation, root file for the objects we
create in .net, system.obj

For sql server: Joins and outer join and sql query where I have to select an
employee for whose name starts with R and doesn't working on any project,
clustering

About azure, cloud and frontend technology, CI/CD pipeline.

[3/30 6:21 AM] Sima.Mishra

[06:18] Sima.Mishra

What is RBAC, and how does it work?


How can you implement RBAC in a .NET application?
What are the benefits of using RBAC in a .NET application?
How do you define roles and permissions in RBAC for a .NET application?
Can RBAC be extended to support dynamic role assignment in a .NET application?
How can you test RBAC implementation in a .NET application?
What are some best practices for RBAC implementation in .NET applications?
How does RBAC improve application security in a .NET application?
How can you enforce RBAC policies in a .NET application?
Can RBAC be used in combination with other access control methods in a .NET
application?

In Sql server Topics --

Joins
Window Analytical Function --1. Row_Number , 2. Rank, 3. Dense_Rank

What is RBAC, and how does it work?


How can you implement RBAC in a .NET application?
What are the benefits of using RBAC in a .NET application?
How do you define roles and permissions in RBAC for a .NET application?
Can RBAC be extended to support dynamic role assignment in a .NET application?
How can you test RBAC implementation in a .NET application?
What are some best practices for RBAC implementation in .NET applications?
How does RBAC improve application security in a .NET application?
How can you enforce RBAC policies in a .NET application?
Can RBAC be used in combination with other access control methods in a .NET
application?

[5/13 4:14 PM] Sima.Mishra

1. What is .NET? Explain its key components.

2. What is the difference between value types and reference types in .NET?

3. What are the different types of memory management in .NET?

4. Explain the concept of boxing and unboxing in .NET.

5. What are delegates in C#? How are they different from interfaces?

6. What is the difference between an abstract class and an interface?

7. What is the purpose of the `finally` block in exception handling?

8. Explain the difference between `StringBuilder` and `String` in .NET.

9. What is the purpose of the `using` statement in C#?

10. What are the advantages of using LINQ in .NET?

11. What is the difference between `IEnumerable` and `IEnumerator` in C#?

12. Explain the concept of polymorphism in object-oriented programming.

13. What is the purpose of the `async` and `await` keywords in C#?

14. How does garbage collection work in .NET?

15. Explain the concept of inversion of control (IoC) and dependency injection (DI)
in .NET.

16. What are the different types of collections in .NET?

17. Explain the concept of multithreading in .NET and how it can be achieved.

18. What is the difference between `const` and `readonly` in C#?

19. What are attributes in .NET? How are they used?

20. Explain the difference between a class and a struct in .NET.

[5/13 4:15 PM] Sima.Mishra

[3:52 PM] vikas.jha

C# Execution Life Cycle:

1. Explain the different stages of the execution life cycle of a C# application.


2. What happens during the loading stage of the C# execution life cycle?

3. What is the role of the Common Language Runtime (CLR) in executing a C#


application?

4. How does exception handling work in C# during the execution life cycle?

5. Describe the process of object instantiation and memory management in a C#


application.

6. How does a C# application terminate and what cleanup tasks can be performed
during termination?

Dependency Injection (DI):

1. What is Dependency Injection (DI) and why is it used in software development?

2. Explain the benefits of using DI in a C# application.

3. What are the different types of DI patterns available in C#?

4. How would you implement DI in a C# application without using any DI framework?

5. What is the role of an Inversion of Control (IoC) container in DI, and can you
provide an example of one?

`lock` Keyword:

1. What is the purpose of the `lock` keyword in C#?

2. How does the `lock` keyword ensure thread safety in a multi-threaded


environment?

3. What is the difference between using `lock` and using `Monitor` for
synchronization in C#?

4. Can you explain the potential issues or pitfalls of using the `lock` keyword?

5. Are there any alternatives to using `lock` for synchronization in C#?

[5/16 12:45 PM] Sima.Mishra

Interview Questions

1.Diff b/w addsingleton and static classes.

2. Is making DbContext a singleton in a web application a good idea?

3. Lock statement
- Can we wrap asyn code in lock statement?

1. Lock statement

- Can we wrap async code in lock statement?

2. Async -await

.configurewaite(true/false)

.result

.wait

C# Execution Life Cycle:

1. Explain the different stages of the execution life cycle of a C# application.

2. What happens during the loading stage of the C# execution life cycle?

3. What is the role of the Common Language Runtime (CLR) in executing a C#


application?

4. How does exception handling work in C# during the execution life cycle?

5. Describe the process of object instantiation and memory management in a C#


application.

6. How does a C# application terminate and what cleanup tasks can be performed
during termination?

Dependency Injection (DI):

1. What is Dependency Injection (DI) and why is it used in software development?


2. Explain the benefits of using DI in a C# application.

3. What are the different types of DI patterns available in C#?

4. How would you implement DI in a C# application without using any DI framework?

5. What is the role of an Inversion of Control (IoC) container in DI, and can you
provide an example of one?

`lock` Keyword:

1. What is the purpose of the `lock` keyword in C#?

2. How does the `lock` keyword ensure thread safety in a multi-threaded


environment?

3. What is the difference between using `lock` and using `Monitor` for
synchronization in C#?

4. Can you explain the potential issues or pitfalls of using the `lock` keyword?

5. Are there any alternatives to using `lock` for synchronization in C#?

1. What is .NET? Explain its key components.

2. What is the difference between value types and reference types in .NET?

3. What are the different types of memory management in .NET?

4. Explain the concept of boxing and unboxing in .NET.


5. What are delegates in C#? How are they different from interfaces?

6. What is the difference between an abstract class and an interface?

7. What is the purpose of the `finally` block in exception handling?

8. Explain the difference between `StringBuilder` and `String` in .NET.

9. What is the purpose of the `using` statement in C#?

10. What are the advantages of using LINQ in .NET?

11. What is the difference between `IEnumerable` and `IEnumerator` in C#?

12. Explain the concept of polymorphism in object-oriented programming.

13. What is the purpose of the `async` and `await` keywords in C#?

14. How does garbage collection work in .NET?

15. Explain the concept of inversion of control (IoC) and dependency injection (DI)
in .NET.

16. What are the different types of collections in .NET?

17. Explain the concept of multithreading in .NET and how it can be achieved.

18. What is the difference between `const` and `readonly` in C#?


19. What are attributes in .NET? How are they used?

20. Explain the difference between a class and a struct in .NET.

[5/16 12:48 PM] Sima.Mishra

what is using, namespace, CLR, IL, MIL

[5/16 12:49 PM] Sima.Mishra

entry and terminating point in c#

[5/16 12:56 PM] Sima.Mishra

REPL

[5/23 5:25 PM] Sima.Mishra

What is Encapsulation?

what is wrapping up method in dot net

What is abstraction

IFS?

IIS hosting ?

what is inheritance

what is Polymorphism?

what is solid principal?

Design pattern ?how many types

what are interface?

what is box and unboxing

What Data abstraction ?

What is Access modifiers in C#

what is serialization?

how may types of serialization?

how can I achieve serialization

what is adam & ldap


What is events?

what is delegates?

what is ASP .net life cycle ?

what is joints? and type?

what is left join ?

what is processor?

What is trigger?

what is magics table?

what is delete And transmits?

What is primary key ?

What is composer key? what is unique key ,

what is composite key?

What is normalization ?

What is indexing and types?

What is CTE?

What is View's?

[5/24 2:50 PM] Sima.Mishra

https://techprodevcenter.co.in/nazox/

TechPro

code for open modal popup

[5/26 11:23 AM] Sima.Mishra

C:\Users\91916\Desktop\MPower clone\Techpro-Compsoft\MPower\backend

link for M_Power old

[5/26 5:24 PM] Sima.Mishra

https://www.youtube.com/watch?v=XStpo9VlzCI

Top 20 WEB API Interview Questions in HINDI - YouTube


1. Full .NET Interview Course (with PDF Book)C# / ASP.NET Core / MVC / API - Top
500 Interview Questionshttps://www.udemy.com/course/csharp-oops-mvc-asp-dotn...

[5/31 4:56 PM] Sima.Mishra

builder.Services.AddDbContext<Tpsc.TestEngine.Data.AppDbContext>(option =>
{

option.UseSqlServer(builder.Configuration.GetConnectionString("SqlServerConnStr"));
});

1)flow of the ado.net


2)why we use ajax and how to implement
3)suppose variable a have a value then how we transfer that value in variable b
using javascript
4) difference between jquery and javascript
5)MVC archietecture
6)what is the role of start up.cs
7)what are the filters and how we perform that
8)authorization and authentication difference
9)a=10 , b=15 how we pass the value of a in b without code
10)declare @i int,@j int
@i=10;
print(@i+@j)
what will be output of this
11)state management with example
12)how we can pass data from controller to view
13)dependency injection use with example

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy