July 01, 2025
Trending Now
  •    Registration with image upload Java Jdbc(Down...

  •    Touchable shop Pos system using Java...

  •    Build Your First Responsive Login Form Using H...

  •    Java Beans...

  •    Java String Methods...

Click Here to Buy Our Courses

  • Home
  • About Us
  • Java
    • Java for Beginners
    • Java Projects
    • Java Console Application Projects
  • C#.net
  • Angular
  • Reactjs
    • ReactJS Introduction
  • Node JS
  • Android Studio
  • Jsp
  • Servlet
  • python
    • Python for beginners
  • Spring boot
  • Laravel 8
  • Laravel 9
  • Asp.net MVC
  • php
  • Flutter
  • Free Projects
  • Contact us
  • Privacy Policy

Array counting the 0 in Java

By admin
September 9, 2022
in :  Java, Java Console Application Projects
0
271

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); } } above examples  int numbers[] = …

Read More

DataInputStream using Java

By admin
September 9, 2022
in :  Java, Java Console Application Projects
0
397

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; try { System.out.println("Enter the Integer"); …

Read More

Math Function using Java

By admin
September 9, 2022
in :  Java, Java Console Application Projects
0
517

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); } }    

Read More

Student grade Calculation Console using Java

By admin
September 9, 2022
in :  Java, Java Console Application Projects
0
407

Input the Student name,marks for 3 subjects,calculate the avg,grade. In order to calculate the grade using following conditions.

Read More

Employee Gross wage Calculation using Java

By admin
September 9, 2022
in :  Java Console Application Projects
0
291

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.

Read More

Employee Salary Calculation using Java

By admin
September 9, 2022
in :  Java, Java Console Application Projects
0
565

Input the employee name and basic salary calculate and display the netsalary using following condition if the basic salary is more than 50000 then include 10% Tax if the basic salary is more than 30000 then include 5% Tax otherwise no Tax.

Read More

Student Advanced Grade calculation using Java

By admin
September 9, 2022
in :  Java, Java Console Application Projects
0
320

this tutorial on java we are going to teach the advanced student grading system using following condition

Read More

Student Grade Calculate using Java

By admin
September 8, 2022
in :  Java, Java Console Application Projects
0
617

this tutorial will teach you write the java program to calculate and display student grade system.i have written the simple example . Input the Student name,marks for 3 subjects,calculate the avg,grade. In order to calculate the grade using following conditions. if the average is greater than 50 awarded as “Pass” Other wise “Fail”

Read More

Data annotations using Spring Boot

By admin
September 7, 2022
in :  Spring boot
0
542

In this tutorials will teach you @AllArgsConstructor and @NoArgsConstructor @Data annotations.what is the purpose we use this annotations is if we have a class it has Argument Constructor and No Argument Constructor and Getter and Setters and String Method. instead of implementing all of these.

Read More

Id already exists in the database Spring boot Mysql

By admin
September 5, 2022
in :  Spring boot
0
997

In this tutorials will teach you how to do the validation in Spring boot.this tutorials continue from the last article if you are not read in the last article please read and come here . it is checking the employee id is already exists or not. if it is exists display the warning message as   “Employee ID Already Exists” …

Read More
1...181920...50Page 19 of 50

Recent Posts

  • Chat with Claude AI Free – Your Super-Smart AI Buddy
  • Best Festivals UK 2025 [Free Guide Included]
  • Bank Holidays 2025 UK – Plan Your Perfect Long Weekends
  • Master Cursor AI Full Guide for Students & Creators
  • Google Gemini AI Free AI Tool for Students & Creators

© Copyright 2020, All Rights Reserved Powered by Tutussfunny