Ads block

Banner 728x90px

How to solve windows license expires


Go to command prompt-->Run as Administrator-->slmgr -rearm-->Enter-->Restart your system.. Now enjoy......
Read more »

Power method for finding the eigen value and the eigen vector using Perl Language


#Power method for finding the eigen value and the eigen vector using Perl Language......... =comment     Md. Alamgir Hossain     Dept. of Computer Science &a…
Read more »

How to write multiple line comment in perl language


#How to write multiple line comment in perl language........... =comment Md. Alamgir Hossain Dept. of Computer Science & Engineering Jessore University of…
Read more »

Runge Kutta Method implementation using Perl Lamguage


#Alamgir, CSE, JUST #------------------------------------Start from here............................ #---------Enter the value in this order............ #Ente…
Read more »

How to write a function in perl language


#Alamgir Hossain, CSE, JUST sub bisection { $x=@_; return (($x**3)+(3*$x)-5); } $res=&bisection(50); print $res;
Read more »

How to write a function that takes two value in perl language


#Alamgir, CSE, JUST sub function { ($x,$y) = @_; return ((2*$x)+23+$y); } $res = &function(20,10); print "Resulr is : $res";
Read more »

How to use e^x or exp in perl language


#Alamgir, CSE, JUST $x = 5; $res  = exp($x); print "$res\n\n";
Read more »

How to input and print string with value in perl language


#Alamgir, CSE, JUST print "Enter the value : \n"; $x = <>; print "The entered value is : $x\n\n";
Read more »

If else condition in perl language


#Alamgir, CSE, JUST $x = 10; if($x>10){     print "False\n"; } elsif($x==10){     print "Correct\n"; } else{     print &quo…
Read more »

Runge-Kutta method implementation using CPP language for all order


///Runge-Kutta method implementation using CPP............. /*Md. Alamgir Hossain Dept. of Computer Science & Engineering. Jes…
Read more »

Insertion sort algorithm implementation using CPP language


/*Md. Alamgir Hossain  Dept. of Computer Science & Engineering. Jessore University of Science & Technology.  */ #include<bits/stdc++.h> usi…
Read more »

Numerical Method Analysis


Download link for the Books https://drive.google.com/drive/folders/0B840R4i9P5kwWkMtM0drSjdnc2s?usp=sharing
Read more »

Guass Forward Interpolation Formula implementation using perl language


# Md. Alamgir Hossain #Dept. of Computer Science & Engineering #Jessore University of Science & Technology         #-----------------------Guass F…
Read more »

Newton Rapson method implementation using perl language


#Md. Alamgir Hossain #Dept. of Computer Science & Engineering #Jessore University of Science & Technology #Newton Rapson method implementation us…
Read more »

Optimistic(JAVADREAMS): Matrix multiplication using cpp language


Optimistic(JAVADREAMS): Matrix multiplication using cpp language
Read more »

Matrix multiplication using cpp language


/*Md. Alamgir Hossain Dept. of Computer Science & Engineering Jessore University of Science & Technology */ #include<bits/stdc++.h> using namesp…
Read more »