David Meador has Published 164 Articles

Beowulf Clusters

David Meador

David Meador

Updated on 26-Apr-2022 08:21:44

3K+ Views

A beowulf cluster is formed using normal computers that are identical. These are arranged into a small local area network (LAN). There are programs that allow these computers to share processing among them.So beowulf clusters form a parallel processing unit using common personal computers.An image that displays the first beowulf ... Read More

Erasable Programmable Read Only Memory (EPROM)

David Meador

David Meador

Updated on 25-Apr-2022 10:19:21

8K+ Views

The Erasable Programmable Read Only Memory is a memory chip that does not lose data even when the power is switched off. This is a non-volatile memory type i.e. it retains data even when the power is switched off. Each EPROM is individually programmed by an electronic device. After that, ... Read More

How to link jQuery from Google CDN?

David Meador

David Meador

Updated on 20-Apr-2022 08:38:13

14K+ Views

jQuery is a JavaScript library primarily designed with the purpose to make it easier to use JavaScript on our website. jQuery wraps many lines of JavaScript code into methods that we can call with a single line of code. Google provides CDN support for jQuery via the googleapis.com domain. The ... Read More

Various Types of Keys in DBMS

David Meador

David Meador

Updated on 30-Dec-2020 16:08:21

21K+ Views

The different types of keys in DBMS are −Candidate Key - The candidate keys in a table are defined as the set of keys that is minimal and can uniquely identify any data row in the table.Primary Key - The primary key is selected from one of the candidate keys and becomes ... Read More

Process Creation vs Process Termination in Operating System

David Meador

David Meador

Updated on 24-Jun-2020 12:23:33

16K+ Views

Process Creation and Process termination are used to create and terminate processes respectively. Details about these are given as follows −Process CreationA process may be created in the system for different operations. Some of the events that lead to process creation are as follows −User request for process creationSystem InitializationBatch ... Read More

Monitors vs Semaphores

David Meador

David Meador

Updated on 24-Jun-2020 11:59:09

4K+ Views

Monitors and semaphores are used for process synchronization and allow processes to access the shared resources using mutual exclusion. However, monitors and semaphores contain many differences. Details about both of these are given as follows −MonitorsMonitors are a synchronization construct that were created to overcome the problems caused by semaphores ... Read More

Interprocess Communication with Sockets

David Meador

David Meador

Updated on 24-Jun-2020 08:28:42

5K+ Views

Interprocess communication is the mechanism provided by the operating system that allows processes to communicate with each other. This communication could involve a process letting another process know that some event has occurred or transferring of data from one process to another.One of the ways to manage interprocess communication is ... Read More

Why Java programs running on Android systems do not use the standard Java API and virtual machine?

David Meador

David Meador

Updated on 22-Jun-2020 15:09:37

515 Views

The standard Java API and virtual machine are mainly designed for desktop as well as server systems. They are not that compatible with mobile devices. Because of this, Google has created a different API and virtual machine for mobile devices. This is known as the Dalvik virtual machine.The Dalvik virtual ... Read More

Operating System Debugging

David Meador

David Meador

Updated on 22-Jun-2020 15:05:15

7K+ Views

Debugging is the process of finding the problems in a computer system and solving them. There are many different ways in which operating systems perform debugging. Some of these are −Log FilesThe log files record all the events that occur in an operating system. This is done by writing all ... Read More

System Calls in Unix and Windows

David Meador

David Meador

Updated on 22-Jun-2020 14:59:06

20K+ Views

The interface between a process and an operating system is provided by system calls. In general, system calls are available as assembly language instructions. They are also included in the manuals used by the assembly level programmers.Unix System CallsSystem calls in Unix are used for file system control, process control, ... Read More

Advertisements