PLT

Tutorials

Fundamentals of programming

Programming Languages Language as we all know is the primary means of communication. Communication is a two way street that should be embraced to understand…

Algorithms-Flowcharts

Programming Logic and Techniques In computer programming we write a set of instructions for the computer to perform a specific action. The actions performed are…

Conditional Checking

Whenever we face a real life scenario, we are bound to make choices in a situation. For example: In school we have different activities from…

Operators

We use various operators for various operations on values that we use as data. These values need to be added mathematically or compared based on…

Variables and Constants

A variable is a value which can change overtime. A constant is a value which cannot change overtime. In real life situations, there are some…

Data Types

While solving a problem, we come across different types of data to be referred to. These types of data are divided under different “Data Types”…

Loops

When we need to perform the same task again and again, we call it looping or iteration. When we go round in a circle, how…

Quiz Time