Mobile Application Technologies(ANDROID). Unknown 09:29 1 Comment Edit What Is ANDROID?? Android is an open source and Linux-based operating system for mobile devices such as smartphones and tablet compute... Read More
How to Use Remote Desktop in Windows 7 Unknown 06:03 Add Comment Edit How to Use Remote Desktop in Windows 7 This article show you how to use your Windows 7 computer to connect to and control a comp... Read More
how to block a website in windows 7 Unknown 00:00 Add Comment Edit We all know that some websites are highly dangerous. So do you want to know how to block these kinds of websites? Now the following are t... Read More
Write a shell script to check whether a given number is an Armstrong number or not. Unknown 21:57 Add Comment Edit echo "Enter a number: " read c x=$c sum=0 r=0 n=0 while [ $x -gt 0 ] do r=`expr $x % 10` n=`expr $r \* $r \* $... Read More
Write a shell script to check whether a given number is prime or not. Unknown 21:30 Add Comment Edit echo "Enter a number: " read num i=2 f=0 while [ $i -le `expr $num / 2` ] do if [ `expr $num % $i` -eq 0 ] then f=1... Read More
Write a shell script to find the sum of the first n numbers. Unknown 21:28 Add Comment Edit echo "Enter a number: " read num i=1 sum=0 while [ $i -le $num ] do sum=`expr $sum + $i` i=`expr $i + 1` done echo... Read More
Write a shell script to find whether a given year(4 digits)is leap year or not. Unknown 21:25 Add Comment Edit echo "Enter the year in 4 digits: " read num if [ $num -ge 1000 -a $num -le 9999 ] then if [ `expr $num % 4` -eq 0 ] ... Read More