Programming Blog

This blog is about technical and programming questions and there solutions. I also cover programs that were asked in various interviews, it will help you to crack the coding round of various interviews

Saturday 6 January 2018

HTML code to find square root

<html> 
<head><title>Random</title></head> 
<body> 
<p>I have randomly selected the number 
<?php $choice=rand(1,1000); echo $choice;?>
Its square root is <?php echo sqrt($choice);?>.</p> 
</body> 
</html> 

No comments:

Post a Comment