HTML5

HTML5 is Hypertext Markup Language (HTML).One of the major changes in HTML5 is in respect to how HTML addresses Web applications.Other new features in HTML5 include specific functions for embedding graphics, audio, video, and interactive documents.

Saturday, 30 January 2016

Snake Game in C++ with Loading

Free Download Decrption:                 This is Snake game Project in C++ with amazing Functionality of loading it also tells the Score of the Snake the game will terminate when it hits the wall or itse...

Friday, 29 January 2016

Telephone Directory Project in cpp

Free Download ...

Tic Tac Toe

Free Downlo...

Shooting Game in cpp

Free Download...

Thursday, 28 January 2016

Make your blog just like Website by just Adding Template

How to add Template to your blog...

Tuesday, 26 January 2016

How to get Traffic to your Websites/Blogs more than 1000+ Daily

...

Inheritance in c++

Inheritance Defination:                In General,Inheritance means that inherit something from parents like inherited property, inherits eyes color from your parents etc.In Programming , inheritance mean define a class in term of other class it will increase the Re-useability of functionality of that class...

Encapsulation,Data Hiding & Abstraction

Encapsulation Binding(or wrapping) code and data together into a single unit is known as Encapsulation. For Example:                   Capsule, it is wrapped with different Medicines Classes Encapsulate (.. i.e wrap) attributes and member functions into objects and this is known as Encapsulation. Data...

Abstract Class

What is Abstact Class? Ans: The Classes whose object cant be created is called Abstract Class.These classes are just used for Inheritance.if we create any pure Virtual function in class then it becomes an Abstract Class.if we dont overide the pure virtual function in Derived class then it becomes Abstract class. ...

Monday, 25 January 2016

Second Lecture

Understanding OOP with Program: first of all we are going to discuss about classes , we know the defination of class now am gonna show you Class in Programming point of view,You can name your class what ever you wanna name it like Cat, Dog, Vehical, People etc                      There is one...

What is OOP?

Defination of OOP: Oop is an Object Oreinted Programming Language, basically it consist of Objects and Classes first we need to know the meaning of Object Object:            Objects are key to understanding object-oriented technology....

Friday, 22 January 2016

Date Object

¨The Date object is used to work with dates and times. ¨Date objects are created with new Date(). ¨There are four ways of instantiating a date: var d = new Date(); var d = new Date(milliseconds); var d = new Date(dateString); var d = new Date(year, month, day, hours,...

Math Object

¨The Math object allows you to perform mathematical tasks. ¨All properties/methods of Math can be called by using Math as an object, without creating it. Syntax: var x = Math.PI; // Returns PI var y = Math.sqrt(16); // Returns the square root of 16 ...

Form Validation

Limit minimum length if (document.form1.password.value.length < 6) { alert("Please give a Password more than 5 characters");                 document.form1.password.focus();                 return...

Validations using javascripting

Form Validation  ¨No field should be left blank ¨ Email should contain asterik & dot or period symbols ¨Limit minimum length ¨Confirm Password ¨Restrict a field to accept Numeric or Alphabet No field should be left blank. var name = document.ContactForm.Name; if (name.value == "")     {        ...

Thursday, 21 January 2016

Using Form Data

Personalising an alert box <form name="alertform"> Enter your name: <input type="text" name="yourname"> <input type="button" value= "Go" onClick="window.alert('Hello ' + ® document.alertform.yourname.value);"> </form> ................................. Naming...