Author name: vasu

Python Operators

An operator is used to perform some sort of operation on variables and values. For example- a = 4 b = 7 c = a + b print(c) Output 11 Python has the following type of operators     Arithmetic operators Assignment operators Comparison operators Logical Operators Membership Operators Identity

Python Operators Read More »

Variables in C++

In C++, a variable is something that can be used to store some value. The variables can be of different types to store different types of values. For example- An ‘int’ type variable stores an integer value whereas ‘char’ stores character type value. A variable is actually a name given

Variables in C++ Read More »

HTTP and HTTPS

HTTP vs HTTPS

Whenever you visit a website you might have observed HTTP or HTTPS at the starting of the page address. Before we explore what are these two, let’s have a look at what we call a ‘protocol’. In general, a protocol is a set of rules defined to carry out a

HTTP vs HTTPS Read More »

Constants in C

Opposite to variables, constants are those values that do not change throughout the execution of the program. They are also called literals. Like variables, a constant can be of any data type like integer, float, or string. Note: Constants should be declared using upper case names so that they can be distinguished

Constants in C Read More »

What is an Arduino?

Arduino is an open-source hardware and software company. It designs single-board microcontrollers to control electronic devices. The microcontroller board itself is called Arduino and in this article, we will refer to the board itself by the term ‘Arduino’. So what exactly the Arduino is? In simple words, Arduino is a

What is an Arduino? Read More »