Featured
- WRITE A PROGRAM TO FIND THE ROOTS OF AN EQUATION.
- Write a program to find the roots of equation ( x(Square) – sin x – 0.5) using bisection method
- Write a program that accepts an upper limit from the user and it should display the following series up-to the upper limit specified in a n variable. 1 2 3 0 5 6 7 0 9……………..n
- Write a program that accepts an upper limit from the user and it should display the following series up-to the upper limit specified in a n variable. 1 3 9 27 81…………………n
- Write a program that asks the user to input two numbers in two variables x and n. Now find and properly display the sum of following series. X+X²+X³…………………Xᴺ
- Write a program using for loop to find the sum of the squares of the integers from 1 to n. Where n is a positive value entered by user.
- Write a program in assembly language to sort array elements in ascending order.
- Write a program to Multiply Two matrices using Matrix Multiply Algorithm.
- Write a program to print the fibonacci series till a given number in c++.
- Write a program to multiply two matrices of 3 * 3 order without using loop in assembly language .