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
Ternary Operator in C Programming language

Ternary Operator in C Programming language

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

Instead of writing longer if and else conditional statements, We have ternary operator to minimize the size of Program. This ternary operator is used by most of the programmer, prefer…

Continue ReadingTernary Operator in C Programming language
Do while loop in C with examples

Do while loop in C with examples

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

Do while loop in C is very similar to while loop of C. But only the difference is that in C while loop, first condition is checked then statement inside…

Continue ReadingDo while loop in C with examples
Pointer in C Programming with Examples

Pointer in C Programming with Examples

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

A pointer in c is used to store the address of any variable. It directly points to the memory location.By using a pointer, we can work faster on memory than…

Continue ReadingPointer in C Programming with Examples
Function in C Programming with types and examples

Function in C Programming with types and examples

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

In C Programming Language function is a very useful and important concept. It is a small block of logics that is written to performs some specific tasks. Along with performing…

Continue ReadingFunction in C Programming with types and examples
Transpose matrix in C with example

Transpose matrix in C with example

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

In this tutorial, you will learn a writing program of Transpose matrix in C with example. To learn writing a program for finding transpose of a matrix, you should have…

Continue ReadingTranspose matrix in C with example
What is core java? Explain it

What is core java? Explain it

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

Core Java is the simplest part of Java that contains libraries. It is used to develop a desktop-based application, not a web application. In Sun microsystem terms, core java is…

Continue ReadingWhat is core java? Explain it
Continue Statement in C with Examples

Continue Statement in C with Examples

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

Continue statements in C is required When we want to take the control to the beginning of the loop, bypassing the statement inside the loop, a statement not yet executed,…

Continue ReadingContinue Statement in C with Examples
Why String is immutable in java?

Why String is immutable in java?

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

String is immutable in java because we can't modify or change it once it is created. Basically Immutable itself means unmodifiable or unchangeable. In Java Once we created string object…

Continue ReadingWhy String is immutable in java?
For loop in C with Examples

For loop in C with Examples

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

The for loop in C is an entry-controlled loop that provides a concise loop control structure. It gives you the power to control how much time a code you want…

Continue ReadingFor loop in C with Examples
A real-time example of multithreading in java

A real-time example of multithreading in java

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

In this article we will focus on to know what is the real time example of multithreading in Java. Real time example means we will see where multithreading concept is…

Continue ReadingA real-time example of multithreading in java
Throw and throws in Java with example

Throw and throws in Java with example

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

throw and throws in Java are very important concept of exception handling. It is very useful to handle the both type of exceptions checked and unchecked. As we know that…

Continue ReadingThrow and throws in Java with example
Advantages and disadvantages of oops in java

Advantages and disadvantages of oops in java

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

In java, oops have a very wide level of advantage. Because of this wide level of advantages in today's world oops is now become the first choice for all the…

Continue ReadingAdvantages and disadvantages of oops in java
Application of oops(Object Oriented Programming Language)

Application of oops(Object Oriented Programming Language)?

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

There are various application of Object Oriented Programming Language (OOPs). Applications of OOPs 1. Client-Server Systems Object-oriented Programming is used widely in the design of Client-Server Systems. This Client-Server System…

Continue ReadingApplication of oops(Object Oriented Programming Language)?
Array in C with its types and examples

Array in C with its types and examples

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

An array in C is a collection of elements having the same data type. It also defines the continuous memory location of the variable and which can be referred to…

Continue ReadingArray in C with its types and examples
Call by Value and Call by Reference in java with real-world examples

Call by Value and Call by Reference in java with real-world examples

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

Hello Readers, Welcome back again with this new tutorial in Java. In this tutorial, we will learn Call by Value and Call by reference in depth with good programs and…

Continue ReadingCall by Value and Call by Reference in java with real-world examples
3 simple ways to reverse String in Java

3 simple ways to reverse String in Java

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

There are many possible ways to reverse String in Java. We can use a StringBuffer, StringBuilder, and iteration, etc. In this tutorial we will learn writing the Reverse String Program…

Continue Reading3 simple ways to reverse String in Java
C basic syntax rules and uses

C basic syntax rules and uses

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

C Basic Syntax is very easy. In this tutorial, I have explained it in a systematic manner. We will focus on the syntax and the program structure in C. C…

Continue ReadingC basic syntax rules and uses
Upcasting and Downcasting In Java with examples

Upcasting and Downcasting In Java with examples

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

Casting : Casting means assigning the object of one type to reference variable of another type. Upcasting In an upcasting child class object is assigned to the parent class reference…

Continue ReadingUpcasting and Downcasting In Java with examples
Equals method in Java with example

Equals method in Java with example

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

In Java, there is a equals() method which is used to compare strings. This comparison of strings are based on the content of the string. How the equals() method works…

Continue ReadingEquals method in Java with example
HashMap Implementation in Java

HashMap Implementation in Java

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

In Java, HashMap is a very important and most used concept. It is mostly used in enterprise-level coding for mapping. Also, it is used in e-commerce applications to map orders…

Continue ReadingHashMap Implementation in Java
  • Go to the previous page
  • 1
  • …
  • 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