tutorial

JavaScript Syntax

Syntax of Javascript means the set of rules that needs to be followed while writing javascript code. As you learn JavaScript you would be  using terms like script, variables,functions, comments etc. In this section, i will give you a brief intro about these. Javascript code can be implimented anywhere inside […]

JavaScript Syntax Read More »

C++ comments

Comments in C++ are the explanatory statements that helps a reader to understand the code. We can write single line as well as multi line comments in C++. Anything that is included inside a comment is ignored by the compiler. Single line comment : A single line comment can be

C++ comments Read More »

Python Comments

Comments plays an important role in programming. In programming, a comment is simply a text to describe the working of a single instruction or a set of instructions. Though the comment is written within a program, its not actually a part of it. This means the comment would not be executed along

Python Comments Read More »

Python basic Syntax

Python has many similarities to other programming languages  such as C, Java and Perl. However it has some differences as well. The Python basic syntax tells the rules must followed while writing code in Python. For example, In Python, we use indentation to create blocks like conditional statements or loops.

Python basic Syntax Read More »

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 »