Skip to content
Tutorial World
  • Coding Problems
    • C Coding Problems
      • If-Else Program in C
      • While Loop Program in C
      • For Loop Program in C
      • Switch Program in C
      • Array Program in C
      • Pointer Program in C
      • String Program in C
      • Matrix Program in C
      • Linked List Program in C
    • Java Coding Problems
      • If-Else Programs in Java
      • While loop Programs in Java
      • For loop Programs in Java
      • String Programs in Java
      • Array Programs in Java
      • Switch Programs in Java
      • Matrix Programs in Java
      • Linked List Program in Java
    • Python Coding Problems
      • If-Else Program in Python
      • While Loop Program in Python
      • For Loop Program in Python
      • String Program in Python
      • Array Program in Python
      • Switch Program in Python
      • Matrix Program in Python
      • Linked List Program Python
  • Tutorials
    • C Tutorial
    • Java Tutorial
    • Java 8 Tutorial
    • Spring Boot Tutorial
  • Interview Prep
    • Java Interview
    • Spring Boot Interview
  • Cheatsheet
    • Java Program Cheat Sheet
    • Spring Boot Cheat Sheet
    • Spring Boot Annotations Cheat Sheet
  • Colleges
  • Toggle website search
Menu Close
  • Coding Problems
    • C Coding Problems
      • If-Else Program in C
      • While Loop Program in C
      • For Loop Program in C
      • Switch Program in C
      • Array Program in C
      • Pointer Program in C
      • String Program in C
      • Matrix Program in C
      • Linked List Program in C
    • Java Coding Problems
      • If-Else Programs in Java
      • While loop Programs in Java
      • For loop Programs in Java
      • String Programs in Java
      • Array Programs in Java
      • Switch Programs in Java
      • Matrix Programs in Java
      • Linked List Program in Java
    • Python Coding Problems
      • If-Else Program in Python
      • While Loop Program in Python
      • For Loop Program in Python
      • String Program in Python
      • Array Program in Python
      • Switch Program in Python
      • Matrix Program in Python
      • Linked List Program Python
  • Tutorials
    • C Tutorial
    • Java Tutorial
    • Java 8 Tutorial
    • Spring Boot Tutorial
  • Interview Prep
    • Java Interview
    • Spring Boot Interview
  • Cheatsheet
    • Java Program Cheat Sheet
    • Spring Boot Cheat Sheet
    • Spring Boot Annotations Cheat Sheet
  • Colleges
  • Toggle website search

Author: publisherpk

This author has written 150 articles
Java Program to find sum of array elements

Java Program to find sum of array elements

  • Post author:publisherpk
  • Post published:
  • Post category:Java Coding

In this tutorial, you are going to learn to write a java program to find the sum of all array elements. We will see various approaches to perform the summation…

Continue ReadingJava Program to find sum of array elements
Reverse Array without using Second Array in Java

Reverse Array without using Second Array in Java

  • Post author:publisherpk
  • Post published:
  • Post category:Java Coding

In this tutorial, we will learn to write a program in java to reverse an array without using any other array. This array reversal is also known as in place…

Continue ReadingReverse Array without using Second Array in Java
Java program to Reverse array elements

Java program to Reverse array elements

  • Post author:publisherpk
  • Post published:
  • Post category:Java Coding

In this tutorial, We will learn writing to reverse the array elements. To reverse the array element in java there are multiple ways to achieve it. Our program will first…

Continue ReadingJava program to Reverse array elements
Java Program to print all negative elements in an array

Java Program to print all negative elements in an array

  • Post author:publisherpk
  • Post published:
  • Post category:Java Coding

In this tutorial, we will be learning the writing a java program to print all negative numbers present in an array. To check the negative number in java there are…

Continue ReadingJava Program to print all negative elements in an array
Java Program to count negative number in an array

Java Program to count negative number in an array

  • Post author:publisherpk
  • Post published:
  • Post category:Java Coding

In this tutorial, we will be learning the writing a java program to count the negative number present in an array. To check the negative number our logic will be,…

Continue ReadingJava Program to count negative number in an array
Java Program to Count Even and Odd Elements in Array

Java Program to Count Even and Odd Elements in Array

  • Post author:publisherpk
  • Post published:
  • Post category:Java Coding

In this tutorial, we are going to learn to write a java program to count the total even and the odd number present in an array. There are multiple ways…

Continue ReadingJava Program to Count Even and Odd Elements in Array
Java Program to count total number of elements in array

Java Program to count total number of elements in array

  • Post author:publisherpk
  • Post published:
  • Post category:Java Coding

In this tutorial, we will be learning a java program to count the total number present in the given array. This program is a basic program. To count the array…

Continue ReadingJava Program to count total number of elements in array
Java Program to take input and print elements of array

Java Program to take input and print elements of array

  • Post author:publisherpk
  • Post published:
  • Post category:Java

In this tutorial, we are going to see the very first and basic program of the array in Java. Here we will learn to take the input of array elements…

Continue ReadingJava Program to take input and print elements of array
Step By Step Guide to Install Maven on Windows

Step By Step Guide to Install Maven on Windows

  • Post author:publisherpk
  • Post published:
  • Post category:Spring Boot

Introduction about Maven Apache Maven is a build-automation tool that is basically used in Java projects. It is designed to provide a comprehensive and easy-to-use way of developing Java applications.…

Continue ReadingStep By Step Guide to Install Maven on Windows

Building work-space has encountered a problem in STS

  • Post author:publisherpk
  • Post published:
  • Post category:Spring Boot

If you are trying to start learing spring boot and building project and you are using Maven then there is the chance you migh get the error in you STS IDE…

Continue ReadingBuilding work-space has encountered a problem in STS
Java Program to find the Common factor of two number

Java Program to find the Common factor of two number

  • Post author:publisherpk
  • Post published:
  • Post category:Java

Finding common factor of two number is also know as finding the GCD or HCF. GCD is a mathematical term stands for greatest common divisor (GCD). GCD is a largest non-zero positive…

Continue ReadingJava Program to find the Common factor of two number
Java program to generate a deck of cards

Java program to generate a deck of cards

  • Post author:publisherpk
  • Post published:
  • Post category:Java

In this Java Program tutorial, we will learn writing program to print a deck of cards. We all know that there are 52 cards in the deck. And Each of…

Continue ReadingJava program to generate a deck of cards
Java Enhanced For Loop Explanation

Java Enhanced For Loop Explanation

  • Post author:publisherpk
  • Post published:
  • Post category:Java

Java Enhanced For Loop was introduced in Java 5. It is also know as for each loop. It is a simpler way to iterate through all the elements of a…

Continue ReadingJava Enhanced For Loop Explanation
Storage Classes in C: auto, extern, static, register with Example

Storage Classes in C: auto, extern, static, register with Example

  • Post author:publisherpk
  • Post published:
  • Post category:C Tutorial

A storage Classe represents visibility as well as the location of a variable. It distinguishes what part of code we can access a variable. A storage class is used to…

Continue ReadingStorage Classes in C: auto, extern, static, register with Example
String in C Program with Example

String in C Program with Example

  • Post author:publisherpk
  • Post published:
  • Post category:C Tutorial

We can define the C Programming String as it is a Character's arrays. Basically String in C program means that a complete string is a combination of characters. And this…

Continue ReadingString in C Program with Example
Structure in C Programming Language With Example

Structure in C Programming Language With Example

  • Post author:publisherpk
  • Post published:
  • Post category:C Tutorial

In C Programming Language Structure is a very useful and most used concept and data type. Actually we all know that C Programming Language has no sign of Classes and…

Continue ReadingStructure in C Programming Language With Example
Union in C Programing with Example

Union in C Programing with Example

  • Post author:publisherpk
  • Post published:
  • Post category:C Tutorial

C Union is a derived data type which is very similar to the structure data type. But there is some difference between them is the allocation of memory. The union…

Continue ReadingUnion in C Programing with Example
While loop in C with Examples

While loop in C with Examples

  • Post author:publisherpk
  • Post published:
  • Post category:C Tutorial

The While loop in C Programing language is a control loop statement in C programming language. It works on validating the test condition which is given to it. While loop…

Continue ReadingWhile loop in C with Examples
Goto Statement in C with example

Goto Statement in C with example

  • Post author:publisherpk
  • Post published:
  • Post category:C Tutorial

In this tutorial We will learn how to use goto statement in C Programming Language with the help of an examples. In C programming language, goto is a special type…

Continue ReadingGoto Statement in C with example
What is the importance of C language?

What is the importance of C language?

  • Post author:publisherpk
  • Post published:
  • Post category:C Tutorial

It does not matter how fast our technology is moving and how much new language is coming in the market but still, In today's world, we can't ignore the C…

Continue ReadingWhat is the importance of C language?
  • Go to the previous page
  • 1
  • …
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • Go to the next page

Categories

  • C Coding (53)
  • C Tutorial (23)
  • Cheatsheet (2)
  • Colleges (30)
  • HTML (7)
  • Java (44)
  • Java 8 (4)
  • Java Coding (77)
  • Java Interview (5)
  • Jobs (1)
  • Python Coding (10)
  • Spring Boot (13)
  • Spring Boot Interview (1)

Recent Posts

  • Finalize method in java with explanations
  • What is printStackTrace in Java? Detailed Explanation
  • Calculate max integer value in java
  • C Program To Check A Given Number Is Perfect Or Not Using While Loop
  • C Program to Print Armstrong Numbers using While Loop between 1 to n
  • Check if number is divisible by 3 using python if-else
  • Print the Maximum Number Among Three Using Python If-Else
  • C Program to Check Armstrong Numbers using While Loop
  • List of All Spring Boot Annotations, Uses with examples
  • Sum Of Prime Numbers Between 1 to n using While Loop C Program
  • Check Given Number Is Prime Or Not Using While Loop in C
  • Print Natural Numbers In Reverse Using While Loop C Program

Categories

  • C Coding
  • C Tutorial
  • Cheatsheet
  • Colleges
  • HTML
  • Java
  • Java 8
  • Java Coding
  • Java Interview
  • Jobs
  • Python Coding
  • Spring Boot
  • Spring Boot Interview
Copyright - WordPress Theme by OceanWP