Uncategorized

Copy files or directories in Linux

Copy files & directories in Linux Members Public

In Linux, we copy files as we do in any other operating system available today. We open up a file manager, select a file to copy, and paste it anywhere we want. But what if you want or need to copy files or directories in Linux through the command line

sohail
sohail
Linux Tutorials
Zorin Grid

Zorin OS to release Zorin Grid for centralized management of Linux desktops Members Public

Zorin OS 15 lite came out in December last year with a great number of updates. In each release, the team is focusing on making it way easier to hop on to it from Windows, and I congratulate the team that it has done it so well. Zorin OS is

sohail
sohail
Uncategorized
Public Private Protected Access Modifiers and No Modifiers in Java

Public, Private, Protected Access Modifiers and No Modifiers in Java Members Public

Levels of AccessPrivateNo ModifierProtectedPublicSame ClassYesYesYesYesSame Package Sub ClassNo YesYesYesSame Package Non-Sub ClassNoYesYesYesDifferent Package Sub ClassNoNoYesYesDiffernt Package Non-Sub ClassNoNoNoYes Note – In this table, Sub Class means a child-parent relationship is involved between the two classes. If you do not understand the above table, do not worry because you will understand it

sohail
sohail
Java
Interfaces in Java

Interfaces in Java Members Public

We have already learned about the class. A class is a way of defining how an object would look and behave. A class contains variables and methods. Variables define how an object looks and feels. Methods inside a class define how an object behaves. An interface is a special type

sohail
sohail
Java
new switch assert keywords in java

new, switch and assert keywords in Java Members Public

As we talked about abstract, for and continue keywords in our last article. We will be talking about the new, switch, and assert keyword in Java. new When we create a class in Java and decide to use this class, we need to make an object of this class and

sohail
sohail
Java
java keyword for

Java Is A Language of 50 Keywords 'for' Members Public

As discussed in the previous article, we will be talking about 50 important keywords of Java. We have about the abstract keyword last time. This time we will discuss ‘for’ keyword. For The ‘for‘ a keyword is a loop keyword among several other loopings keywords. The other looping keywords are

sohail
sohail
Java
java is a language of keywords

Java Keywords - Java Is A Language of 50 Keywords Members Public

Freshly we have studied Object Oriented Programming Concept, and this time we will be discussing the necessary keywords in Java programming. In any programming language, the number of keywords is huge, but some keywords come into use very frequently. Today, we will be talking about those keywords. Please have patience

sohail
sohail
Java
Object Oriented Programming Concepts

Object-Oriented Programming Concepts Members Public

Object-Oriented Programming Concepts, as you know, we are going to learn Java programming language. Java is an object-oriented programing language. Don’t worry about it if you do not understand what it is because I will explain it to you. Object-Oriented programming has two main things * Object * Class Note – An

sohail
sohail
Java