Gray Code Gray Code Gray Code is a binary numbering system where two successive numbers differ in only one bit . The Gray Code […]
Read moreCategory: Important
Access Specifiers in C++
Access Specifiers in C++ Access Specifiers in C++ Access specifier used to implement an important aspect of OOPs known as data hiding . Access […]
Read moreASCII CODE
ASCII CODE ASCII CODE ASCII Code stands for American Standard Code for Information Interchange and is pronounced as “ask-ee” . ASCII code is universally […]
Read moreBCD CODE
BCD CODE BCD CODE BCD Code is stand for Binary Coded Decimal . Binary code is the best way to represent the decimal digit […]
Read moreDestructors in C++
Destructors in C++ Destructors in C++ DESTRUCTOR A Destructor is also a special member function like a constructor .Β A destructor destroys the class […]
Read moreSome programs of loop in Python
Program of loop in Python Python program to print a multiplication table of a given number. # if the given range is 10 given_number […]
Read moreTypes of Constructor in C++
Types of Constructor in C++ Types of Constructor in C++ There are three types of Constructor : 1. Default Constructor 2. Parameterized Constructor 3. […]
Read moreConstructor in C++
Constructor in C++ Constructor in C++ Constructor is a member function of a class , whose name is the same as the class name […]
Read moreConcepts of OOPs in C++
Concepts of OOPs in C++ Concepts of OOPs in C++ There are some basic concepts of OOPs : Class Object Encapsulation Abstraction Polymorphism Inheritance […]
Read moreLoop in Python
Loop in Python In Python, loops are used to iterate over a sequence (like a list, tuple, dictionary, set, or string) or to repeat an […]
Read more
Recent Comments