In this tutorials will teach How to do the student mark calculation in Angular. First you have to add the FormsModule inside the imports. Create the new Components studentmarks studentmarks.component.html <form> <h1>Add Students Marks Calculation</h1> <div> <label >Marks 1</label> <input type = "text" name="num1" [(ngModel)] = "marks1" class="form-control" placeholder="Enter Num 1"> </div> <div> <label >Marks 2</label> <input type = "text" …