In this article, we'll be discussing the meaning of Projection and also see the difference between Parallel and Perspective Projection in computer graphics. What is… Read More
The program prints previous date of the entered input. It validates leap year, month and date to check whether the given date is valid or… Read More
Switch and if else both are conditional statements (selection statements). These statements control the behaviour of a program with the help of condition evaluation. Both… Read More
PRIMARY KEY A primary key is a field that identifies each record in a database table admitting that the primary key must contain its UNIQUE… Read More
There is a predefined function named line which is used to draw a line on the output screen. It takes 4 arguments,first two parameters represent… Read More
Circle function is one of the library function of Graphics.h header file. It draws a circle on to the output screen. It takes three arguments,… Read More
Transformation Transformation can be defined as repositioning of coordinates, size or orientation of an object. There are various types of transformations namely translation, rotation scaling,… Read More
In programming, a function is a set of statements that carries out a specific task. It increases the code readability and reusability. In order to… Read More
Introduction: Terms: Reachable & unreachable objects: Objects that can be accessed by a reference variable are known as reachable object. When there is no reference… Read More
An object without having reachable references is considered to be as unreachable which is later collected by a garbage collector in Java. A Garbage collector… Read More