In this project we want to focus on Operating System concepts that could be used to develop applications.
These concepts are the main used concepts in the project solution, kindly read the provided resources if any are new to you.
| Concepts | Resources |
|---|---|
| Introduction to Operating System | Documentation of Introduction to Operating System |
| Difference between (Linux, MacOS, and Windows) | Operating Systems Differences Article |
| Understand Class System.getProperty() in Java | Getting OS Details Tutorial |
| Understand System Properties | Oracle Documentation of System Class Properties |
Write a program that prints the operating system information.
Do the implementation of the printOSInfo method, then call it in the main method.
public static void printOSInfo() {
String osName = null;
String osVersion = null;
/* Your code here */
}