How to add two numbers in ReactJS
In this tutorials will teach How to add two numbers in ReactJS.
How to add two numbers in ReactJS Read More »
In this tutorials will teach How to add two numbers in ReactJS.
How to add two numbers in ReactJS Read More »
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
How to do the student mark calculation in Angular Read More »
In this tutorials will teach How to add two numbers in Angular. First you have to add the FormsModule inside the imports. Create the new Components addnumbers addnum.components.html <form> <h1>Add Two Numbers</h1> <div> <label >Number 1</label> <input type = “text” name=”num1″ [(ngModel)] = “num1″ class=”form-control” placeholder=”Enter Num 1″> </div> <div> <label >Number 2</label> <input type
Angular How to Add Two Number Read More »
in this tutorial help you to learn Swagger Configuration. in earlier spring testing purpose we used postman tool. this tool is good but we have to install and and every testing need open and check it.instead of we can Swagger . it is best one just only add the dependencies in to the pom.xml file
Spring boot Swagger Configuration Read More »
create a 3 element integer to calculate and following min numbers max numbers total average
max,min,total,average calculation using java Read More »
Create a 10 element integer array and store some integer values display as the counting of 0. public class JavaEx { public static void main(String args[]) { int numbers[] = {10,15,0,0,6,0,0,1,6,4}; int x,count,len; count = 0; len = numbers.length; for(x= 0; x < len; x++) { if(numbers[x]==0) { System.out.println(numbers[x]); count++; } } System.out.println(count); } }
Array counting the 0 in Java Read More »
in this tutorials you will be learning DataInputStream using Java.input the integer number and float number and press enter key then show output as readable integer number and float number. import java.io.DataInputStream; public class JavaEx { public static void main(String args[]) { DataInputStream in = new DataInputStream(System.in); int Intnum = 0; float Floatnum = 0.0f;
DataInputStream using Java Read More »
Assume that we have to compute and print the square root of the number. public class JavaEx { public static void main(String args[]) { double a = 10; double b; b = Math.sqrt(a); System.out.println(“b ” + b); } }
Math Function using Java Read More »
Input the Student name,marks for 3 subjects,calculate the avg,grade. In order to calculate the grade using following conditions.
Student grade Calculation Console using Java Read More »
input employee number,hourly rate calculate and display the gross payment using following condition. if the employee work more than 40 hours then he will be paid the hours work over 40 at the rate of two times than the normal rate others get the normal payment.
Employee Gross wage Calculation using Java Read More »