JavaScript Performans Ödevi Soruları
Soru-1: Klavyeden girilen 2 sayının toplamını hesaplayan ve sonucunu ekrana yazdıran javascript programını yazınız?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <script type="text/javascript"> var s1=parseInt(prompt ("Sayi 1. giriniz:")); var s2=parseInt(prompt ("Sayi 2. giriniz:")); var toplam=s1+s2; document.write("Sayıların toplamı:"+toplam); </script> </body> </html>
Soru-2: Klavyeden Girilen 3 sayının ortalamasını hesaplayan ve bulunan sonuca göre sonuç 50 den büyük ise “geçti” değilse “kaldı” yazan javascript programını yazınız?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <script type="text/javascript"> var s1=parseInt(prompt("1.Notu giriniz:")); var s2=parseInt(prompt("2.Notu giriniz:")); var s3=parseInt(prompt("3.Notu giriniz:")); var ort=(s1+52+53)/3; if (ort>=50) { document.write("geçti"+ort); } else { document.write("kaldı"+ort); } </script> </body> </html>
Soru-3: 1 den 50 ye kadar olan sayıları toplamını hesaplayan programi for döngüsünü kullanarak yapınız?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <script type="text/javascript"> var toplam=0; for (var i=1;i<50;i++) { toplam=toplam+i; } document.write("Sayıların Toplamı:"+toplam ); </script> </body> </html>
Soru-4: While döngüsü kullanarak adınızı 10 defa ekrana yazdıran javascript programını yazınız?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <script type="text/javascript"> var i=0; while(i<10) { document.write("Bilişim<br>"); i++; } </script> </body> </html>
Soru-5: Butonun onclick olayı fonksiyon ile çağrılan ve klavyeden girilen kenar uzunluğuna göre karenin çevresini hesaplayan javascript programını yazınız?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <script type="text/javascript"> function cevre() { var kenar=prompt ("Karenin 1 kenar uzunluğunu giriniz"); var cevre=4*kenar; alert("karenin çevresi"+cevre); } </script> <input name="cevre" type="button" value="Çevre Hesapla" onclick="cevre()" /> </body> </html>
Bu Yazıya Tepkin Nedir?
+1
+1
+1
+1
+1
1
+1
+1
1
<< Önceki Yazı
Sonraki Yazı >>
javascript basit örnekleri, javascript for örnekleri, javascript if örnekleri, javascript kodları, javascript örnekleri, javascript performans soruları, javascript while örnekleri