tutorial

Python Installation

To install python you first need to download it. To download visit this link on the official website of python https://www.python.org/downloads/. Here you will find multiple options as per your operating system and processor(Whether it is 32 bit or 64 bit). To download python, click on any one of the […]

Python Installation Read More »

Syntax of C++

Syntax of a programming language means the combination of various symbols and keywords to form a meaningful code. According to Wikipedia – “In computer science, the syntax of a computer language is the set of rules that defines the combinations of symbols that are considered to be a correctly structured document

Syntax of C++ Read More »

Python Introduction

What is Python? Python is a high-level, interpreted, general purpose programming language created by Guido Van Rossum and was first released in 1991. Python is a dynamically typed language and it supports multiple programming paradigms including procedural, object-oriented, imperative and functional programming. Python has become the most popular programming language around

Python Introduction Read More »

PHP Variables

A variable can be considered to be a sort of container to store some value or information, just like we use a bucket or drum to store water! At times, there is a need to store some values or information for future usage in programming. For this purpose we use variables.

PHP Variables Read More »

PHP Syntax

Every PHP script executes on a server. When the server process the script, it sent back the output in the form of plain HTML to the browser <?php //Your PHP code ?> Note: You can write your code in a text editor. There are various text editors for PHP like sublime text,

PHP Syntax Read More »

PHP Installation

To install PHP on your system, you can follow any one of these approaches You can either get PHP along with the packages like WAMP Server, XAMPP etc. You can install PHP directly from internet if you already have a testing server installed. First let us understand what these packages

PHP Installation Read More »

Introduction to C++

C++ is a general purpose programming language that has a wide scope of implementations. It was developed by a Danish computer scientist Bjarne Stroustrup at Bell labs, New Jersey. Primarily used in software development, it is also widely used all the way in game development, application programming, compiler design and many

Introduction to C++ Read More »

PHP Introduction

If you want to build a dynamic website, or a shopping cart, or may be your own blog system, then you’ve got to learn a specific server side programming  language and in my personal opinion, PHP would be the best choice. So, what is PHP? To your answer…. PHP is a

PHP Introduction Read More »

C++ Installation

To start programming in C++, you must have a compiler installed in your system. What is a Compiler? A compiler is a computer program or a software which converts source code written in a programming language to the  machine language code. In general, a compiler converts your code into a

C++ Installation Read More »