Skip to content
seoinfotech
  • Trending#
  • AI
  • JavaScriptExpand
    • Node.JS
    • Angular
    • React.JS
    • JSON
  • JavaExpand
    • Core Java
  • Interviews
  • News
  • Courses
seoinfotech

Core Java

Delve into the essence of Core Java, the cornerstone of robust software development. Master the fundamentals, object-oriented concepts, and essential features that pave the way for building powerful and scalable applications.

What is fibonacci number, How to write java code for fibonacci series
Core Java

What is fibonacci number, How to write java code for fibonacci series

ByVed Maurya Updated08-12-202404-05-2025

In mathematics Fibonacci Sequence is the series of numbers as given below 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, … The next number is found by adding up the two numbers before it: For Example : In above series 2 at index 4 is found by adding…

Read More What is fibonacci number, How to write java code for fibonacci seriesContinue

What is greatest common divisor, gcd code example
Core Java

What is greatest common divisor, gcd code example

ByVed Maurya Updated08-12-202404-05-2025

In mathematics, the greatest common divisor (gcd) of two or more integers, which are not all zero, is the largest positive integer that divides each of the integers. The greatest common divisor (also known as greatest common factor, highest common divisor or highest common factor) of a set of numbers…

Read More What is greatest common divisor, gcd code exampleContinue

Find a Longest Common Prefix for multiple string using Java
Core Java

Find a Longest Common Prefix for multiple string using Java

ByVed Maurya Updated08-12-202404-05-2025

A string prefix is a character(s) at the beginning of a string. For Example: in apple, app or ap or apps etc are prefix Problem Find the common longest prefix for strings apple, apps and appster Approach Sort all the string in alphabetical order. Find the small string Loop through…

Read More Find a Longest Common Prefix for multiple string using JavaContinue

How to Reverse Array, Number, String and Word
Core Java

How to Reverse Array, Number, String and Word

ByVed Maurya Updated08-12-202404-05-2025

Reversing an array, number, string and word is very important for interview point of view for all level of expertise. Beginner and Experienced both are asked this question again and again in interview. I will explain each one by one with working code and running it as screenshot. Problem 1…

Read More How to Reverse Array, Number, String and WordContinue

What is prime number, java code for prime number
Core Java

What is prime number, java code for prime number

ByVed Maurya Updated08-12-202404-05-2025

A number that can divide by own or one only. For Example: 13, can be dived by only 1 and 13 only. Other prime numbers are 2, 3, 5, 7 , 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, … 947,…

Read More What is prime number, java code for prime numberContinue

Java Code To Print Pyramid and Patterns
Core Java

Java Code To Print Pyramid and Patterns

ByVed Maurya Updated08-12-202404-05-2025

We will draw half pyramids, inverted pyramids, full pyramids, inverted full pyramids, Pascal’s triangle, and Floyd’s triangle in Java Programming. Half Pyramid of * ** ** * ** * * ** * * * * Code Half Pyramid of Numbers 1 1 2 1 2 3 1 2 3 4…

Read More Java Code To Print Pyramid and PatternsContinue

Remove duplicates from Array in Java
Core Java

Remove duplicates from Array in Java

ByVed Maurya Updated08-12-202404-05-2025

As arraylist can contains duplicates element, so sometime there would be some requirement to remove the duplicate element from the list. For Example: { 10, 12, 23, 10, 2, 21, 78, 90, 12 } after removal it should like { 10, 12, 23, 2, 21, 78, 90 } We would…

Read More Remove duplicates from Array in JavaContinue

What is Armstrong number, Write Java Code for Armstrong
Core Java

What is Armstrong number, Write Java Code for Armstrong

ByVed Maurya Updated08-12-202404-05-2025

Armstrong number is a number that is equal to the sum of cubes of its digits. For example 0, 1, 153, 370, 371 and 407 are the Armstrong numbers. let take an example of the armstrong number 153. Sum of the cube of each digit is equal to the same…

Read More What is Armstrong number, Write Java Code for ArmstrongContinue

Count number of each character in a word
Core Java

Count number of each character in a word

ByVed Maurya Updated08-12-202404-05-2025

Find out each character in a word. For Example: In Programming each character count is p=1 a=1 r=2 g=2 i=1 m=2 n=1 o=1 Problem Write a java code that will print each character and their count. Code

Read More Count number of each character in a wordContinue

What is Factorial & Write Java Code for Factorial
Core Java

What is Factorial & Write Java Code for Factorial

ByVed Maurya Updated08-12-202404-05-2025

A factorial of a positive integer n, denoted by n!, is the product of all positive integers less than or equal to n Let take an example of factorial of 5 Problem Write a java code for factorial. Code Run Code

Read More What is Factorial & Write Java Code for FactorialContinue

What is anagram and write java code for anagram
Core Java

What is anagram and write java code for anagram

ByVed Maurya Updated06-10-202404-05-2025

An anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once. For example : For word CAT anagram are TAC, CTA, ACT, TCA etc. We are going to write a clean code for the anagram….

Read More What is anagram and write java code for anagramContinue

What is Palindrome, Write code for palindrome
Core Java

What is Palindrome, Write code for palindrome

ByVed Maurya Updated07-08-202404-05-2025

An integer is a palindrome when you read from the forward and read from the backward are same. or numeric palindrome, A number that remains the same when its digits are reversed. For Example: 121 is palindrome as from backward it also 121. 313 is number palindrome. 1001 is palindromic number. A String palindrome…

Read More What is Palindrome, Write code for palindromeContinue

  • Software Developer Salary in India vs USA (2025): A Lifestyle, Savings & Quality of Life Comparison
  • When Should a Developer Leave Their Company? Breaking Out of the Comfort Trap
  • From Developer to Freelancer: A Strategic Guide to a Successful Transition
  • How to Change Jobs with a 3-Month Notice Period: A Practical Guide for Software Professionals
  • Why Companies Are Laying Off Employees in 2025 – And How You Can Stay Relevant
  • Privacy Policy
Scroll to top
  • Trending#
  • AI
  • JavaScript
    • Node.JS
    • Angular
    • React.JS
    • JSON
  • Java
    • Core Java
  • Interviews
  • News
  • Courses
Search