14/05/2020
My ebook on Python programming for beginners is now available on Amazon
PyForSchool Computer Science with Python - XI
PyForSchool Computer Science with Python - XI eBook: Singh, Deepak Raj: Amazon.in: Kindle Store
08/03/2015
check it out!!!
Our new java tutorial website
Java Tutorial for Beginners
This tutorial will introduce you to variables, data types, primitive type variables, reference variables, objects, strings, input/output
23/08/2014
C++ Hangman Game
In the game of Hangman, the computer chooses a word at random from a given list of words. This word is the answer. The player then tries to guess the word, by guessing one letter at a time. Whenever the user guesses a letter that is in the answer, all occurrences of that letter are revealed to the u…
17/08/2014
C++ Tic Tac Toe Game project
Tic Tac Toe program that will allow two users to play tic-tac-toe. The program asks for moves alternately from player X and player O.
08/08/2014
C++ Virtual Functions Abstract Class and Polymorphism
In C++, a pointer variable of a base class type can point to an object of its derived class. It means base class pointer can not access the additional member function of its derived class .
23/07/2014
C++ Tutorial for Beginners
C++ tutorial for school students and beginners : Tutoial starts with the fundamentals of the language, including expressions, variables, functions, and definitions and then covers the most common C++ features.
17/07/2014
C++ Operator Overloading
C++ Operator Overloading : operator overloading is giving new functionality to an existing operator. In fact, you cannot create new operators – so they must be overloaded. There are several other rules we must follow
29/06/2014
C++ Separate Header and Implementation Files Example
Class declarations are stored in a separate file. A file that contains a class declaration is called header file. The name of the class is usually the same as the name of the class, with a .h extension.