Author name: vasu

C Basic Syntax

The C basic syntax specifies the rules for things to be written in a specific sequence to form meaningful instructions for the compiler. For example, how a variable should be declared, how to start a line of code, how to end it, where to put quotes, where to put braces, […]

C Basic Syntax Read More »

Python Type Casting

At times, we need to specify the data type of a predefined variable, or we need to change the data type of a variable. This is known as type casting. In computer programming, type casting (or simple ‘casting’) or type conversion is changing the data type of any entity. Example of type

Python Type Casting Read More »

C Installation

To start programming in C, you must have a compiler installed in your system. 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 form that your computer

C Installation Read More »

Introduction to artificial intelligence

What is Artificial Intelligence?

Artificial Intelligence (often abbreviated as AI) is the intelligence acquired by machines in resemblance to human intelligence. In the general case, a machine is not intelligent, or it can not do stuff like ‘thinking’, ‘learning’, ‘solving a problem’, ‘error finding’. AI is the science of making intelligent machines that work

What is Artificial Intelligence? Read More »

Python Strings

In programming, a string is a series or a sequence of characters. A character is a symbol or a letter or even a number enclosed in quotes. Some example of strings may be – sagar, roll12, %#@!&. How to create a string in python – In python, a string can

Python Strings Read More »

Introduction to C

Introduction C is a general-purpose high-level programming language originally developed by Dennis Ritchie at AT & T’s Bell Laboratories (USA) in 1972. It was mainly developed as a system programming language to build an operating system. One of the main features of C includes low-level memory access, a set of

Introduction to C Read More »

JavaScript Variables

Like any other programming language, variables in JavaScript are containers for storing different types of values. A variable can be thought of as a container. We can store data into a variable and can refer the data with the help of that variable later. Variable declaration Before using a variable, we

JavaScript Variables Read More »