Q.No.1 - Write a program to find out Simple Interest in Angular JS.
Sol.-
<html>
<head>
<title>Angular JS- Examcomp</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
</head>
<body>
<h2>Find S.I.</h2>
<div ng-app="">
Enter Principal Amount : <input ng-model="princi"> <br><br>
Enter Rate Interset (percent ) : <input ng-model= "rate"> <br><br>
Enter Time Period (year): <input ng-model="ti"> <br>
Your S.I is : <h3> {{ princi*rate*ti/100}}</h3>
</div>
</body>
</html>
OUTPUT: