Ads block

Banner 728x90px

Numerical method analysis using perl language


Go to the youtube link------------ https://www.youtube.com/playlist?list=PLhGaMw0JdiTIGrB37dcb_Kpv20JiLTTM6
Read more »

Gregory-Newton Backward Interpolation Formula in perl language


#----------------Gregory-Newton Backward Interpolation Formula-------------- =comment ----------------Input Instructions-------------     Md. Alamgir Hossain…
Read more »

Do-while loop example in perl language


$a = 10 ; # do...while loop execution do { printf "Value of a: $a\n" ; $a = $a + 1 ; } while ( $a < 20 );
Read more »

How to connect oracle database from java


import java.sql.*; import javax.swing.JOptionPane; public class ConnectionClass {     public static Connection dbconnect()     {         try {             Cla…
Read more »