Ads block

Banner 728x90px

Online Examination system source code.........


Here is the source code for online exam system using PHP, MYSQL,AJAX, JAVASCRIPT etc.... Source code for Online Exam System
Read more »

Summation of square value up to n in assembly language


;Alamgir, CSE, JUST ;1^2+2^2+3^2+4^2+--------- MOV Cx, 10 ; 10 is your n value MOV bx, 00 myloop:    MOV Ax, Cx MUL Ax ADD Ax, bx MOV bx, Ax LOOP myloop
Read more »

Newtons divided difference interpolation formula implementation using perl language


#-Newtons divided difference interpolation formula implementation using perl language----- =comment -----Input Instruction------ Enter the numbe…
Read more »

Guass Backward Interpolation Formula Implementation Using Perl


#--------Guass Backward Interpolation Formula Implementation Using Perl------------- #Md. Alamgir Hossain #Dept. of Computer Science & Engineering #Jessor…
Read more »

Stirling interpolaltion formula implementation using perl language


#----------Stirlings Interpolation Formula Implementation Using Perl---------- =comment     Md. Alamgir Hossain    Dept. of Computer Science & Engineer…
Read more »

Newton Raphson method in perl language


#Newton Rapson method implementation using perl language...... =comment     Alamgir Hossain, CSE, JUST =cut #---------------------------The given function----…
Read more »

All numerical method analysis theory implementation in perl language.......


1. Bisection method 2. Regula falsi or False position 3.Secant method 4.Newton raphson method 5.Power method for finding eigen vector and maximum valu…
Read more »

Inverse lagrange interpolation formula theory, algorithm and flowchart with a lot of example


Inverse lagrange interpolation formula theory, algorithm and flowchart with a lot of example
Inverse Lagrange’s Interpolation Formula Theory :   . Example : 1. Use Lagrange’s inverse interpolation formula to obtain the…
Read more »