Payroll asp.net Project Part-4.rar
    1.7 MB
  04 Payroll ASP.NET C# SQL Server Bootstrap in Hindi #coderbaba
How to calculate Basic Salary,TA,DA,MA,HRA,Earnings,Deduction in Payroll Management System Project asp.net C# part-4
Video Link: https://youtu.be/vu9Pco36br8
  How to calculate Basic Salary,TA,DA,MA,HRA,Earnings,Deduction in Payroll Management System Project asp.net C# part-4
Video Link: https://youtu.be/vu9Pco36br8
04 Payroll ASP.NET C# SQL Server Bootstrap in Hindi #coderbaba
How to calculate Basic Salary,TA,DA,MA,HRA,Earnings,Deduction in Payroll Management System Project asp.net C# part-4
Video Link: https://youtu.be/vu9Pco36br8
  
  How to calculate Basic Salary,TA,DA,MA,HRA,Earnings,Deduction in Payroll Management System Project asp.net C# part-4
Video Link: https://youtu.be/vu9Pco36br8
YouTube
  
  04 Payroll ASP.NET C# SQL Server Bootstrap in Hindi | Designation Salaries | Calculate Salary
  How to calculate Basic Salary,TA,DA,MA,HRA,Earnings,Deduction in Payroll Management System Project asp.net C#Thanks for watching my video  hit like , subscri...
  Food order system aspdotnet project available on instamojo just Rs 230/-
https://imojo.in/wfusem
and also full video on youtube channel
https://youtu.be/iDkCgw4gtAQ
  
  https://imojo.in/wfusem
and also full video on youtube channel
https://youtu.be/iDkCgw4gtAQ
coderbaba
  
  Online Food Ordering System Website ASP.Net C# SQL Server Final Year Project
  
  05 Payroll ASP.NET C# SQL Server Bootstrap in Hindi | Search Record | CODERBABA
https://youtu.be/D7C8ZA2tzpk
  
  https://youtu.be/D7C8ZA2tzpk
YouTube
  
  05 Payroll ASP.NET C# SQL Server Bootstrap in Hindi | Search Record | CODERBABA
  05 Payroll ASP.NET C# SQL Server Bootstrap in Hindi | Search Record | ---About Project----The purpose of the project is to manage Manager Details,employee de...
  Can you direct access ViewState value of one page in another page in Asp.Net?
  Anonymous Quiz
    74%
    YES
      
    26%
    NO
      
    π©Q-2: What do you know about CTS?
CTS stands for Common Type System. It follows certain rules according to which a data type should be declared and used in the program code. CTS also describes the data types that are going to be used in the application. We can even make our own classes and functions following the rules in the CTS, it helps in calling the data type declared in one program language by other programming languages.
  CTS stands for Common Type System. It follows certain rules according to which a data type should be declared and used in the program code. CTS also describes the data types that are going to be used in the application. We can even make our own classes and functions following the rules in the CTS, it helps in calling the data type declared in one program language by other programming languages.
π©Q-3: What is CLR?
CLR stands for common language run-time, it is an important component of the .NET framework. We can use CLR as a building block of various applications and provides a secure execution environment for applications.
Whenever an application written in C# is compiled, the code is converted into an intermediate language. After this, the code is targeted to CLR which then performs several operations like memory management, security checks, loading assemblies, and thread management.
π©Q-4: Explain CLS.
Common language specification helps the developers to use the components that are inter-language compatible with certain rules that come with CLS. It then helps in reusing the code in other .NET compatible languages.
π©Q-5: What do you know about JIT?
JIT is a compiler which stands for Just In Time. It is used to convert the intermediate code into the native language. During the execution, the intermediate code is converted into the native language.
π©Q-6: Why do we use Response.Output.Write()?
Response.Output.Write() is used to get the formatted output.
π©Q-7: What is the difference between Response.Redirect and Server.Transfer?
π―Response.Redirect basically redirects the userβs browser to another page or site. The history of the userβs browser is updated to reflect the new address as well. It also performs a trip back to the client where the clientβs browser is redirected to the new page.
π―Whereas, Server.Transfer transfers from one page to the other without making any round-trip back to the clientβs browser. The history does not get updated in the case of Server.Transfer.
π©Q-8: What is BCL?
BCL is a base class library of classes, interfaces and value types
It is the foundation of .NET framework applications, components, and controls
Encapsulates a huge number of common functions and make them easily available for the developers
It provides functionality like threading, input/output, security, diagnostics, resources, globalization, etc.
Also serves the purpose of interaction between user and runtime
It also provides namespaces that are used very frequently. for eg: system, system.Activities, etc.
π©Q-9: What is the difference between namespace and assembly?
An assembly is a physical grouping of logical units whereas namespace groups classes. Also, a namespace can span multiple assemblies as well.
π©Q-10: What is MSIL?
MSIL is the Microsoft Intermediate Language, it provides instructions for calling methods, storing and initializing values, memory handling, exception handling and so on. All the .NET codes are first compiled to Intermediate Language.
π©Q-11: From which base class all web Forms are inherited?
All web forms are inherited from "Page" class.
π©Q-12: Explain the different parts of the assembly.
Following are the different parts of assembly:
βοΈManifest: It has the information about the version of the assembly.
βοΈType Metadata: Contains the binary information of the program
βοΈMSIL: Microsoft Intermediate Language Code
βοΈResources: List of related files
π©Q-13: How do you prevent a class from being inherited?
In C#, we can use the sealed keyword to prevent a class from being inherited.
π©Q-14: What are the different types of constructors in c#?
Following are the types of constructors in C#:
1-Default Constructor
2-Parameterized constructor
3-Copy Constructor
4-Static Constructor
5-Private Constructor
π©Q-15: What are the different types of assemblies?
There are two types of assemblies:
π―Private Assembly: It is accessible only to the application, it is installed in the installation directory of the application.
π―Shared Assembly: It can be shared by multiple applications, it is installed in the GAC.
π©Q-16: What is a garbage collector?
Garbage collector feature in .NET frees the unused code objects in the memory. The memory head is divided into 3 generations:
  CLR stands for common language run-time, it is an important component of the .NET framework. We can use CLR as a building block of various applications and provides a secure execution environment for applications.
Whenever an application written in C# is compiled, the code is converted into an intermediate language. After this, the code is targeted to CLR which then performs several operations like memory management, security checks, loading assemblies, and thread management.
π©Q-4: Explain CLS.
Common language specification helps the developers to use the components that are inter-language compatible with certain rules that come with CLS. It then helps in reusing the code in other .NET compatible languages.
π©Q-5: What do you know about JIT?
JIT is a compiler which stands for Just In Time. It is used to convert the intermediate code into the native language. During the execution, the intermediate code is converted into the native language.
π©Q-6: Why do we use Response.Output.Write()?
Response.Output.Write() is used to get the formatted output.
π©Q-7: What is the difference between Response.Redirect and Server.Transfer?
π―Response.Redirect basically redirects the userβs browser to another page or site. The history of the userβs browser is updated to reflect the new address as well. It also performs a trip back to the client where the clientβs browser is redirected to the new page.
π―Whereas, Server.Transfer transfers from one page to the other without making any round-trip back to the clientβs browser. The history does not get updated in the case of Server.Transfer.
π©Q-8: What is BCL?
BCL is a base class library of classes, interfaces and value types
It is the foundation of .NET framework applications, components, and controls
Encapsulates a huge number of common functions and make them easily available for the developers
It provides functionality like threading, input/output, security, diagnostics, resources, globalization, etc.
Also serves the purpose of interaction between user and runtime
It also provides namespaces that are used very frequently. for eg: system, system.Activities, etc.
π©Q-9: What is the difference between namespace and assembly?
An assembly is a physical grouping of logical units whereas namespace groups classes. Also, a namespace can span multiple assemblies as well.
π©Q-10: What is MSIL?
MSIL is the Microsoft Intermediate Language, it provides instructions for calling methods, storing and initializing values, memory handling, exception handling and so on. All the .NET codes are first compiled to Intermediate Language.
π©Q-11: From which base class all web Forms are inherited?
All web forms are inherited from "Page" class.
π©Q-12: Explain the different parts of the assembly.
Following are the different parts of assembly:
βοΈManifest: It has the information about the version of the assembly.
βοΈType Metadata: Contains the binary information of the program
βοΈMSIL: Microsoft Intermediate Language Code
βοΈResources: List of related files
π©Q-13: How do you prevent a class from being inherited?
In C#, we can use the sealed keyword to prevent a class from being inherited.
π©Q-14: What are the different types of constructors in c#?
Following are the types of constructors in C#:
1-Default Constructor
2-Parameterized constructor
3-Copy Constructor
4-Static Constructor
5-Private Constructor
π©Q-15: What are the different types of assemblies?
There are two types of assemblies:
π―Private Assembly: It is accessible only to the application, it is installed in the installation directory of the application.
π―Shared Assembly: It can be shared by multiple applications, it is installed in the GAC.
π©Q-16: What is a garbage collector?
Garbage collector feature in .NET frees the unused code objects in the memory. The memory head is divided into 3 generations: