C++ Program to Solve Quadratic Equations

The C++ program to solve quadratic equations in standard form is a simple program based on the quadratic formula. Given the coefficients as input, it will solve the equation and output the roots of the equation.This is a simple program is intended for intermediate level C++ programmers.The program is compiled using Dev-C++ 4.9.9.2 version installed … Read more

C++ Program to Convert Radian to Degree

The program – “C++ Program to Convert Radian to Degree” is based on a simple mathematical concept. The degree is converted to radian value or radian is converted to degrees for computing trigonometric identities.In this program, we used two formulas for followingThis program – C++ Program to Convert Radian to Degree is intended for beginners of … Read more

DBMS – Basics

This article is first lesson in DBMS tutorial and explains concepts of DBMS such as data abstraction level. data model and query languages.

Derived Logic Gates

There are some logic gates that are derived from the basic gates such as AND, OR and NOT by combining them into single unit. These kinds of logic gates are very important for creating complex logic circuits and called Derived logic gates.Types of Derived Gates. Here is a list of derived gate types. Each of … Read more

Logic Gates

In this lesson, you will learn about -logic gates. The logic gates are building blocks of digital circuit to which voltage and current are applied to as binary logic 0 or 1. Voltage or current applied to analog circuits such as telephone systems as analog signals with continuous range from 0 to 5 V.Binary Logic … Read more

C Do-While Loop

The  C do-while loop is a different kind of loop which checks for exit conditions instead of entry condition. So it is very useful if you want a loop that keeps iterating until an exit criterion is met.In a C program, the do-while loop will let you execute your code first and then checks for … Read more

C For Loop

The loop is a simpler version of the while loop that we learned in the previous lesson. It has the same components as while loop.For Loop BasicsThe for loop is more popular because all conditions for loop is declared in one place.Before the for loop starts. Loop variable – It is used for initializing the … Read more

C While Loop

In C programming, we like to repeat some instructions over and over again with or without updated information. C language provides loops for this purpose.The type of loop, you want to use depends on how you want to use the loop – C while loop, C for or C do-while loop.Read: C Programming Tutorial – … Read more

Binary-Coded Decimal

In the previous lesson, we learned about binary codes and how they are used for representing a distinct discrete element of information using 1s and 0s.People use the decimal system for everything and it’s easier for them to use decimal numbers on a computer than binary numbers. But binary is what the computer understands.So we … Read more

Ads Blocker Detected!!!

We have detected that you are using extensions to block ads. Please support us by disabling these ads blocker.

Exit mobile version