1.[ ] Basics 2.[ ] Operators , Precedence and Associativity 3.[ ] Pattern Printing 4.[ ] Conditional Statements 5.[ ] Loops 6.[ ] Array 7.[ ] String and StringBuilder 8.[ ] Functions And Methods 8.[ ] OOPS Concepts 9.[ ] Randoms 10. [ ] Core Java 11. [ ] Data Structure and Algorithms
- Print Hello World
- Sum of 2 Numbers
- Data Types in Java
- Taking Input from User
- Operators in Java
- Precedence
- Associativity
- Hollow Rectangle.
- Right angle triangle with a number.
- Write a Java program to input week number(1-7) and print day of week name using switch case.
- Write a Java program that takes a year from the user and print whether that year is a leap year or not.
- To Check Whether a Number is Positive or Negative.
- Program to Solve Quadratic Equation.
- Program to Check Tax Eligibility
- Write a program that reads a set of integers, and then prints the sum of the even and odd integers.
- Write a Program to find Factorial of any Numbers
- Program to Print Multiplication Table of Number
- Program to Print Reverse Multiplication Table of Number
- Sum of n Even Integer
- Average of Elements of Array.
- Performing Binary Search
- Program to Create a Copy of Array.
- DSA TrappingWater Incomplete
- Kadane Algorithm (-ve = 0 else add)
- To Find Maximum and Minimum Element of Array.
- Number of Element Greater than Giver Number.
- Program to Find Sub Pairs of Array
- To Find Reverse of an Array
- To Rotate Array to it's Right n times
- Best Time to Buy and Sell Stocks
- To Find Max Sum of Sub Array using Brute Force Method
- To Find Max Sum of Sub Array using Prefix Array Method
- Program to Find Sub Pairs of a Array
- To Find Target Sum (Double)
- To Find Target Sum (Triple)
- Bubble Sort
- Insertion Sort
- Selection Sort
- Sort() Method
- Find Element in Matrix
- Basic Functions of Matrix
- Max and Min Element of Matrix
- To Print Spiral Matrix
- To Reverse a String
- String Builder and It's Methods
- String Methods
- SubStrings
- Write a Java method to compute the average of three numbers..
- Write a method named isEven that accepts an int argument. The method should return true if the argument is even, or false otherwise. Also write a program to test your method.
- Write a Java program to check if a number is a palindrome in Java? ( 121 is a palindrome, 321 is not) A number is called a palindrome if the number is equal to the reverse of a number e.g., 121 is a palindrome because the reverse of 121 is 121 itself. On the other hand, 321 is not a palindrome because the reverse of 321 is 123, which is not equal to 321.
- Search about(Google) & use the following methods of the Math class in Java:
- a. Math.min( )
- b. Math.max( )
- c. Math.sqrt( )
- d. Math.pow( )
- e.Math.avg( )
- f. Math.abs( )
Free reading resource (https://www.javatpoint.com/java-math) Please feel free to look for more resources/websites on your own.
- Write a Java method to compute the sum of the digits in an integer. (Hint : Approach this question in the following way : a. Take a variable sum = 0 b. Find the last digit of the number c. Add it to the sum d. Repeat a & b until the number becomes 0 )