Browsing category

Operators

Program to divide two numbers without using ‘/ ‘ operator in Java

Program to divide two numbers without using ‘/ ‘ operator in Java In this tutorial, we will discuss the concept of Program to divide two numbers without using ‘/ ‘ operator in Java In this topic, we are going to learn how to divide two numbers without using divisional operator in Java language What is…

Java program to Find smallest of three numbers using ternary operator

Java program to Find smallest of three numbers using ternary operator In this program, we will discuss a simple concept of the Java program to Find smallest of three numbers using ternary operator In this topic, we are going learn how to find the smallest number from given three numbers using ternary operator in Java programming…

C program to Find smallest of three numbers using ternary operator

C program to Find smallest of three numbers using ternary operator In this program, we will discuss a simple concept of the C program to Find smallest of three numbers using ternary operator In this topic, we are going learn how to find the smallest number from given three numbers using ternary operator in C programming…

C++ program to Find smallest of three numbers using ternary operator

C++ program to Find smallest of three numbers using ternary operator In this program, we will discuss a simple concept of the C++ program to Find smallest of three numbers using ternary operator In this topic, we are going learn how to find the smallest number from given three numbers using ternary operator in C++ programming…

Java program to find largest of three numbers using ternary operator

Java program to find largest of three numbers using ternary operator In this program, we will discuss a simple concept of the Java program to find largest of three numbers using ternary operator In this topic, we are going learn how to find the biggest number from given three numbers using ternary operator in Java…

Program to find largest of three numbers using ternary operator in C

Program to find largest of three numbers using ternary operator in C In this program, we will discuss a simple concept of the Program to find largest of three numbers using ternary operator in C In this topic, we are going learn how to find the biggest number from given three numbers using ternary operator in…

Find Largest of three numbers using ternary operator in C++

Find Largest of three numbers using ternary operator in C++ In this program, we will discuss a simple concept of the find Largest of three numbers using ternary operator in C++ In this topic, we are going learn how to find the Largest number from given three numbers using ternary operator in C++ programming language….

Multiplication of two floating point numbers in C

Multiplication of two floating point numbers in C In this tutorial, we will discuss the concept of Multiplication of two floating point numbers in C In this topic, we are going to learn how to multiply two floating-point numbers using the multiplication operator in C language What is multiplication The multiplication is a method of…

Java exercise to Divide two numbers

Java exercise to Divide two numbers In this tutorial, we will discuss the concept of Java exercise to Divide two numbers In this topic, we are going to learn how to divide two numbers using the division operator in Java language   What is division The division is a method of splitting a group of…

Operator in Cpp programming language

Operator in Cpp programming language We will learn about Operator in Cpp programming language. C++ provides a rich set of the operator to manipulate variables. We can divide all the C++ operators into the following groups: Arithmetic Operators Assignment Operators Relational Operators Unary Operator Logical Operators Bitwise Operator C++ Arithmetic Operators Arithmetic operators are used…