Author name: SKB

Worlds population facts

World’s population at glance  The world is having around 7+ billion population presently. And it is increasing with rapid speed specially most of the Asian countries. Take a look at below stat for the same. Region Population as of 2016 Asia 4,436,224,473 Africa 1,216,129,815 Europe 738,849,002 Latin America 641,029,306 North America 360,529,324 Oceania 39,901,355 Population …

Worlds population facts Read More »

Share

Population of India

India Census report 2011 As per 2011 census report, the total population of India is 1.21 billion. And most populous state is Uttar Pradesh with 19.9 crore and the least populous state is Sikkim about 60 lakhs. India has 29 States and 7 Union Territories following table shows state wise  population as per 2011 census …

Population of India Read More »

Share

XML

Introduction to XML XML or Extensible Markup Language, can define their own set of tags Make it possible for people or programs to understand these tags. XML Scope and Application Valuable both to the Internet and large corporate intranet environments. Provides interoperability using a flexible, open, standards-based format. Applications can be built more quickly. Easier …

XML Read More »

Share

Namespace and Virtual method in c#

NameSpace NameSpace is the Logical group of types or we can say namespace is a container (e.g Class, Structures, Interfaces, Enumerations etc.). Example: a) System.IO logically groups input output related features. b) System.Data.SqlClient is the logical group of ado.net Connectivity with Sql server related features. In Object Oriented world, many times it is possible that …

Namespace and Virtual method in c# Read More »

Share

OOPs with C#

Object oriented programming with C# Classes: Class is a C# construct to model real-world objects into classes Exa: class Employee { private string _name; private char _gender; private string _qualification; private uint _salary; } Access Modifiers Public:Accessible to the members of the containing class as well as non-members of the class Private:Accessible only to the members …

OOPs with C# Read More »

Share

Basics of C#

Fundamentals of C# Variables: Variables are used to store values of a particular datatype. Syntax: access_modifier datatype VariableName Constants: Constants are used to maintain a value throughout a program. Syntax: const datatype ConstantName = value; Fundamental Types Of C# C# divides data types into two fundamental categories Value Types Represent actual data Just hold a value in …

Basics of C# Read More »

Share
Share
Scroll to Top