Skip to content

Make Selenium Easy

And Keep It That Way

  • Home
  • Share
  • Toggle search form

Java Interview Question – Explain System.out.println(arg)

Posted on 02/19/2025 By admin

Printing information while executing program is important. Like any other programming language, Java also provides a way to print desired thing on standard output.

“System.out.println(arguments);” is a java statement to print passed argument on standard output stream which is by default console. We can also print in to a file which we will see later in this post. First we will see why do we write above statement and understand each word of it.

First of all above statement is using chaining concept. Instead of creating reference chaining mechanism is used.


// Using chaining
System.out.println("123");
   
// Without chaining
PrintStream ps= System.out;
ps.println("123");
*Replace 'ps' with 'System.out' for chaining.

Above both statements does the same thing.

Now let’s understand each term of above statement:-

  1. “System”: System is a final class in Java. System class provides facilities for standard input, standard output, and error output streams i.e. reading from standard input (e.g. Keyboard) and printing to standard output( e.g. Console, File) .
  2. “out“: It starts with small “o”. “out” is a final static variable of type class “PrintStream” . It is a standard output stream. This stream is already open and ready to accept output data. Please note that a static member of class can be called using class name.
  3. “println()“: This method is in PrintStream class. “println()” is overloaded method to support all types of arguments. Below are the overloaded methods:-

println() println(boolean) println(char) println(char[]) println(double) println(float) println(int) println(long) println(java.lang.Object)

println(java.lang.String)

Uncategorized

Post navigation

Previous Post: Learn Selenium With Quiz – Basic Level 5
Next Post: API Testing Tutorial Part 12 – Tools For Manual & Automation API Testing

Related Posts

Advanced TestNG Tutorials 35: How To Pass Multiple Group Names to be Run at Runtime in TestNG XML Using Beanshell Uncategorized
REST Assured Tutorial 73 – How to ignore node/s for JSON comparison in JSONassert Uncategorized
Learn Selenium With Quiz 9 – Window Handle in Selenium Uncategorized
#1. Java Program To Check Equality Of Two Arrays Uncategorized
May 9, 2019 – Make Selenium Easy Uncategorized
position in xpath Uncategorized

Recent Posts

  • Getting Started with Selenium 4: What Is New and How to Upgrade from Selenium 3
  • Manual Testing
  • Baby Steps To Become Efficient Selenium-Java Automation Tester
  • Features of Selenium 4.0.0 Release – Java Binding
  • Part 1: Handling Drop-down Created Using SELECT Tag In Selenium

Recent Comments

No comments to show.

Archives

  • April 2026
  • April 2025
  • March 2025
  • February 2025
  • January 2025
  • December 2024
  • November 2024
  • October 2024
  • September 2024
  • August 2024
  • April 2024
  • March 2024
  • February 2024
  • December 2023
  • October 2023
  • August 2023
  • November 2022
  • September 2022
  • August 2022
  • July 2022
  • May 2022
  • March 2022
  • October 2021
  • April 2021
  • March 2021
  • January 2021
  • December 2020
  • October 2020
  • September 2020
  • August 2020
  • June 2020
  • May 2020
  • April 2020
  • March 2020
  • February 2020
  • January 2020
  • December 2019
  • November 2019
  • October 2019
  • September 2019
  • August 2019
  • May 2019
  • December 2018
  • November 2018
  • October 2018
  • September 2018
  • August 2018
  • July 2018
  • January 2018

Categories

  • Getting Started
  • Uncategorized

Copyright © 2026 Make Selenium Easy.

Powered by PressBook Masonry Dark