Make Programs

  1. To find the sum of any three numbers. (Qbasic Code)
  2. To classify the triangles. (i.e. equilateral, isosceles, or scalene).
  3. To check a triangle whether it is right angled or not.
  4. To determine whether a given number is prime or not.
  5. To display the largest number among any three numbers.
  6. To find out the largest and smallest number among any three nos.
  7. To input a word and count total number of alphabet 'A' in the input word.
  8. To find the roots of a quadratic equation when the value of a, b and c are given. (ax2+bx+c=0).
  9. To check the given word palindrome or not. (Qbasic Code)
  10. To read ten numbers using single dimension and find the sum of odd and even numbers separately.
  11. To find the HCF of two numbers given.
  12. To find the LCM of two numbers given.
  13. To sort numbers in ascending order.
  14. To find simple interest for a given principle, time, rate of interest.
  15. To input any three different numbers in separate lines and find the highest by using array.
  16. To check whether the entered number is Armstrong or not.
  17. A program to input a number and print the multiplication table of the same number upto 10th terms.
  18. To input number in inches and convert it into feet and inches.
  19. To find the greatest number from supplied N numbers. (Qbasic Code)
  20. To find the greatest number from given numbers using DIM method.
  21. To find the numbers less than or equal to 15 and above 15 as user enters the age from the keyboard.
  22. To find the numbers divisible by 3 & 5 from the 10 numbers provided. (Ans)
  23. 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)
  24. To read 5 different numbers and find out even or odd numbers.
  25. To input 10 numbers into an integer array and display the number of odd and even.
  26. To convert temperature given in Centigrade into Fahrenheit.
  27. To find the surface area of a sphere.
  28. To find the product of first n natural numbers.
  29. To input different 15 numbers and display the numbers divisible by 5.
  30. To display the first 100 prime numbers.
  31. To find prime factors of a number input.
  32. To input ten numbers and print them in reserve order.
  33. To display the unique digit integers between 100 and 150.
  34. 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).
  35. 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).
  36. To check entered character is vowel or consonant. (Qbasic Code)
  37. To enter any sentence and count total number of vowel, consonant and space.
  38. To display the multiplication table of given number.
  39. To find the total and average marks of 10 students for 7 subjects and prints the result.
  40. To find the sum of series from 1 to N. (Qbasic Code)
  41. To find the sum of N numbers entered. (Qbasic Code
  42. To find the greatest number among N numbers entered. (Qbasic Code)
  43. To input binary number and print its equivalent decimal number.
  44. To convert seconds to hour, minutes and seconds and print them by using IF.....THEN.....ELSE statement.
  45. To input a number and check whether the number is divisible bye 4 or not.
  46. Program to find the factorial number.
  47. 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)