Make Programs
- To find the sum of any three numbers. (Qbasic Code)
- To classify the triangles. (i.e. equilateral, isosceles, or scalene).
- To check a triangle whether it is right angled or not.
- To determine whether a given number is prime or not.
- To display the largest number among any three numbers.
- To find out the largest and smallest number among any three nos.
- To input a word and count total number of alphabet 'A' in the input word.
- To find the roots of a quadratic equation when the value of a, b and c are given. (ax2+bx+c=0).
- To check the given word palindrome or not. (Qbasic Code)
- To read ten numbers using single dimension and find the sum of odd and even numbers separately.
- To find the HCF of two numbers given.
- To find the LCM of two numbers given.
- To sort numbers in ascending order.
- To find simple interest for a given principle, time, rate of interest.
- To input any three different numbers in separate lines and find the highest by using array.
- To check whether the entered number is Armstrong or not.
- A program to input a number and print the multiplication table of the same number upto 10th terms.
- To input number in inches and convert it into feet and inches.
- To find the greatest number from supplied N numbers. (Qbasic Code)
- To find the greatest number from given numbers using DIM method.
- To find the numbers less than or equal to 15 and above 15 as user enters the age from the keyboard.
- To find the numbers divisible by 3 & 5 from the 10 numbers provided. (Ans)
- To find number of a data divisible by 3 and 5 from the given data series. (DATA 5,7,9,13,15,21,35,30)
- To read 5 different numbers and find out even or odd numbers.
- To input 10 numbers into an integer array and display the number of odd and even.
- To convert temperature given in Centigrade into Fahrenheit.
- To find the surface area of a sphere.
- To find the product of first n natural numbers.
- To input different 15 numbers and display the numbers divisible by 5.
- To display the first 100 prime numbers.
- To find prime factors of a number input.
- To input ten numbers and print them in reserve order.
- To display the unique digit integers between 100 and 150.
- To find the installment payment of a loan that is paid in 50
installments where interest rate is 10%. The first installment rate was
Rs.1000 and every second installment the amount increased by 500. Also,
determine the total amount paid (inclusive interest).
- A worker is paid Rs. 1 on his first day of employment. If his salary
is doubled in every second day, in how many days will he earn about
100000 (assume that he does not spend money).
- To check entered character is vowel or consonant. (Qbasic Code)
- To enter any sentence and count total number of vowel, consonant and space.
- To display the multiplication table of given number.
- To find the total and average marks of 10 students for 7 subjects and prints the result.
- To find the sum of series from 1 to N. (Qbasic Code)
- To find the sum of N numbers entered. (Qbasic Code)
- To find the greatest number among N numbers entered. (Qbasic Code)
- To input binary number and print its equivalent decimal number.
- To convert seconds to hour, minutes and seconds and print them by using IF.....THEN.....ELSE statement.
- To input a number and check whether the number is divisible bye 4 or not.
- Program to find the factorial number.
- A program to check whether a given year is leap year. (The year
number divisible by 4 or divisible by 400 is a leap year. The year
number divisible by 4 and 100 but not by 400 is not a leap year)