Sunday 19 March 2023

Syllabus


BCA-604 Introduction to .NET 
UNIT
 An overview of the .NET framework. Common Language Runtime (CLR), the .NET 
Framework class library (FCL), ASP.NET to support Internet development and ADO.NET to 
support database applications. Languages supported by .NET., An introduction to Visual Studio 
.NET. 
UNIT
An introduction to C#, Program structure., Basic IO, including output to the console and 
messages boxes., Data types, Arithmetic operations and expressions, Relational and logical 
operations, Control structures. These include "if", "while", "do-while", "for", and "switch", 
Namespaces and methods supplied by the FCL. Writing methods. Recursion and overloading 
Scoping rules.Arrays and data representation.Class definitions.Properties, indexers, and access 
control.Inheritance and polymorphism.Delegates.Exception handling. 
UNIT 3 
GUI Programming. This section will involve the use of forms to build GUI applications. The 
concept of event handling will be introduced. The creation of various dialog boxes and menus 
will be discussed. 
UNIT
Files. This is an important topic beyond its obvious purpose. The same tools that allow us to 
access file data also allow use to read data from internet sites and databases. 
UNIT 5 
The Framework Class Library (FCL) , Containers. Multithreading. Graphic programming.

No comments:

Post a Comment

Draw Circle in C#

 Here's an example program in C# that uses the `System.Drawing` namespace to draw a circle on a Windows Form: // Mohit Kumar Tyagi using...