CTET Percentage Calculator
Enter 10% : Enter 12% : Enter DLED% : Enter CTET mark : Calculate Total % Old Pattern New Pattern
Basic program in C/C++ And Java
Enter 10% : Enter 12% : Enter DLED% : Enter CTET mark : Calculate Total % Old Pattern New Pattern
Description To find all prime numbers in a given range, take a loop and check if number is prime or not. If it is prime print it else skip it.…
Description A year is leap year having 366 days. To implement in program it should follow the below condition -> Year is multiple of 4 and not multiple of 100.…
Description Perfect number is a number which is equal to sum of its divisor. Ex: 6,28,496,8128 C/C++ /* C Program to check Perfect Number*/ //Save it as PerfectNumber.c #include<stdio.h> int…
Description Greatest of 3 number will the number greater than other 2 number. C/C++ /* C Program to find greatest of 3 numbers */ //Save it as Greatest3Numbers.c #include<stdio.h> int…
Description A number is called prime if it is divisible by 1 and number itself. To check the number is prime, check the number is divisible any number from 2…
Description To check entered character is a vowel or not, check that character is any one of lowercase a, e, i, o, u and uppercase A, E, I, O, U.…
Description To check a number is even or odd, divide the number by 2. If it gives remainder 0 then it is even and if it gives remainder 1 then…
Description A number is an Armstrong Number if it is equal to the sum of its own digits raised to the power of the number of digits. Ex: 1,2,3,4,5,6,7,8,9,153,370,371,407,1634,8208,9474 C/C++…
Description Use format specifier to give numeric value of character. %d is used to convert character to its ASCII value. C/C++ /* C Program to Find ASCII value of a…