Startertutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.

File Permissions in Unix with Examples

Categories: Unix Programming. No Comments on File Permissions in Unix with Examples

In this article we will look at file permissions in Unix with examples and commands associated with managing file permissions in Unix.   Introduction Every file has a set of permissions associated with it, which determines who can do what with the file. If your directory contains files with sensitive information, we can change their […]

Read the rest of this entry »

What is Unix?

Categories: Unix Programming. No Comments on What is Unix?

In this article you will learn what is Unix and its features.   Source: https://www.ionos.com/digitalguide/fileadmin/DigitalGuide/Teaser/unix-t.jpg   An operating system (OS) acts as an interface between computer hardware and the user. Unix is an example for operating system. Other examples of operating systems are MS-DOS, MS Windows, Linux, MAC OS X, Android, iOS, etc.     […]

Read the rest of this entry »

Java program to find the largest of three numbers

Categories: Computer Science. No Comments on Java program to find the largest of three numbers

In this article we will learn to implement a Java program to find the largest of three numbers. A Java program is provided below which reads three numbers from the user and prints the largest number among them.   Program is as follows: import java.util.Scanner; public class Driver { public static void main(String[] args) { […]

Read the rest of this entry »
Basic networking concepts

Basic Networking Concepts

Categories: Computer Science. 5 Comments on Basic Networking Concepts

This article introduces you with the basic networking concepts which are essential for every person learning about computer science. Hope you have already read about history of computers.   Network A network is a collection of interconnected computers, which are connected using communication media along with communication devices. Examples of communication devices are: modems, routers […]

Read the rest of this entry »