Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


write a program to generte a harmonic series
1+1/2+1/3+1/4+1/5 upto 15 terms.



write a program to generte a harmonic series 1+1/2+1/3+1/4+1/5 upto 15 terms...

Answer / upendar

<html>
<head>
<script type="text/javascript">
function hormonicSeries() {
for(var i=1;i<=15;i++) {
if(i == 1) {
var addSeries = 1/i;
} else {
for(var j=2; j<=15;j++) {
if(i == j) {
addSeries = addSeries +"+1/"+i ;
}
}
}
}
var series = addSeries;
document.write(series);
}
</script>
</head>
<body onload="hormonicSeries();">
</body>
</html>

Is This Answer Correct ?    4 Yes 3 No

Post New Answer

More JavaScript Interview Questions

Is javascript insecure?

0 Answers  


what is the difference between wrappers and primitives es: diff between int i=200 in primitives and integeri = new integer(54)

0 Answers  


What does javascript do?

0 Answers  


Explain the unshift() method ?

0 Answers  


How to enabled 'Strict' mode in JavaScript?

0 Answers  


What are the main functions performed by javascript statements?

0 Answers  


Is it safe to use javascript?

0 Answers  


What's the difference methods get and post in html forms?

0 Answers  


What are the valid scopes of a variable in JavaScript?

0 Answers  


Which is better for or foreach in javascript?

0 Answers  


What's the Difference Between Class and Prototypal Inheritance?

0 Answers  


How to add buttons in javascript?

0 Answers  


Categories