Month: November 2014

27
Nov
2014

C code for newton-raphson method

Problem: Here we have to find root for the polynomial x^3-8*x-4 upto 6D(decimal places) Solution in C:…

27
Nov
2014

C code using Weddle’s rule

Problem: Here we have to find integration for the (1/1+x*x)dx with lower limit =0 to upper limit…

27
Nov
2014

C code using Trapezoidal Rule

Problem: Here we have to find integration for the (1/1+x*x)dx with lower limit =0 to upper limit…

27
Nov
2014

C code using Simpson’s 3/8 rule or Simpson’s three by eight rule

Problem: Here we have to find integration for the (1/1+x*x)dx with lower limit =0 to upper limit…

26
Nov
2014

C code using Simpson’s 1/3 rule or Simpson’s one third rule

Problem: Here we have to find integration for the (1/1+x*x)dx with lower limit =0 to upper limit…

25
Nov
2014

Assembly:Write a program to (a) Prompt the user (b) Read HELLO and (c) Display them down the left margin

Solution: .MODEL SMALL .STACK 100H .DATA MSG1 DB “Enter five initial : $” .CODE MAIN PROC MOV…