Wednesday, October 24, 2018

How inheritance is related with constructor

...

Saturday, October 13, 2018

Friend Function and Friend class in C++

Friend Function:- A friend function of a class will be the friend of that class. It will not be the member of that class but it has authority to access all the member of that class even they are private or protected. A friend function can be written in any scope of the class like private, protected and public.  A friend function declaration will be in the class preceded by friend keyword and its declaration will be outside.  A friend function is not a member function  (not a...

Nested Class in C++

Nested Class:- If a class declared inside another class is known as nesting of classes. The outer class is known as enclosing class and the inner class is known as nested class. A nested class is a member of outer or enclosing class so all the so it will have same access right as other member function contains.  Inner class object must be preceded the outer class name with scope resolution operator(: :).                       ...

Friday, October 12, 2018

Attributes of HTML tags

Attributes in HTML:- Attributes is an additional information of a HTML tags or HTML elements. By the tags of HTML we can only write text but by the attributes we can do formatting on HTML contents.We can change color, style and different type of formatting to a HTML contents.   * Attribute always comes in name and value pair.* It always written with starting tag.* It provides additional information to a HTML tag that means each and every tags may contains there own different attributes. Attributes...

Thursday, October 11, 2018

Structure of HTML

Structure of HTML:- HEAD TAG:-  In this section title is written in title open and close tag. In this section we also write java script code and code for connecting CSS(Cascading Style Sheet). BODY TAG:- In this section we write the the content of the HTML page.    HTML ELEMENT:- All HTML tag are the predefined keyword written within the angle brackets ('<' and '>') . Each tag has a specific meaning. So for writing the HTML code we must remember these predefined...

Tuesday, October 9, 2018

static keyword in C++

Static keyword description:- A static keyword can be applied with member variable as well as member function of the class. If we define a variable is static then that variable will be global that means variable will be the part of class not of the object. Memory allocation for the static variable will be done by only once. Static variable will be shareable to each and every object and its memory will be allocated only once at the time of class creation.  The variable and the function...

Characteristic of HTML and Introduction of Client Server Architecture

Characteristics of HTML:- 1. It is easy to understand because it does not require any programming language to write the code. 2. It is platform independent that means it can be displayed on any platform like Windows, Linux, and BOSS etc. 3. It can run on any web browser (like Mozilla, Firefox, Opera, and Internet Explorer etc) that means it is not dependent on web browsers. 4. It provides flexibility to add audio, video, animation, 3D-picture for making our page...

Monday, October 8, 2018

Html Description

About Html:- Html stands for hyper text markup language. It is not a programming language. It is used to design static web pages. A web server is a collection of web pages and these web pages are html pages. These web pages are connected with each other with the hyperlinks.                                                      History of Html:- Tim Berners-Lee...

Font and Basefont tag of html in a very easy way.

Difference between font and basefont tag in html:- Font tag is a container tag. Basefont tag is empty tag. We can apply font tag in a ...