Ricky Barnes has Published 121 Articles

Kernel Data Structures

Ricky Barnes

Ricky Barnes

Updated on 22-Jun-2020 11:08:15

12K+ Views

The kernel data structures are very important as they store data about the current state of the system. For example, if a new process is created in the system, a kernel data structure is created that contains the details about the process.Most of the kernel data structures are only accessible ... Read More

I/O Systems and Subsystems

Ricky Barnes

Ricky Barnes

Updated on 22-Jun-2020 11:06:34

10K+ Views

I/O devices are very important in the computer systems.They provide users the means of interacting with the system. So there is a separate I/O system devoted to handling the I/O devices.The different Components of the I/O systems are −I/O HardwareThere are many I/O devices handled by the operating system such ... Read More

Supervisor Mode (Privileged Mode)

Ricky Barnes

Ricky Barnes

Updated on 22-Jun-2020 08:16:07

2K+ Views

Supervisor mode or privileged mode is a computer system mode in which all instructions such as privileged instructions can be performed by the processor. Some of these privileged instructions are interrupt instructions, input output management etcThe privilege levels of different components in a system is given as follows −The kernel ... Read More

Symmetric Multiprocessing Architecture

Ricky Barnes

Ricky Barnes

Updated on 22-Jun-2020 08:00:38

971 Views

In symmetric multiprocessing, multiple processors work in parallel and share resources like system bus and memory. It is a type of multiprocessing system and much more complex than asymmetric multiprocessing system.Symmetric Multiprocessing ArchitectureThe image depicting symmetric multiprocessing architecture is as follows −Some points explaining the above figure are −All the ... Read More

Asymmetric Multiprocessing

Ricky Barnes

Ricky Barnes

Updated on 22-Jun-2020 07:46:29

2K+ Views

Asymmetric multiprocessor systems are a part of multiprocessor systems along with symmetric multiprocessor systems. Multiprocessor systems have multiple processors working in parallel that share the computer clock, memory, bus, peripheral devices etc.Features of Asymmetric MultiprocessingSome of the key points about asymmetric multiprocessing are explained with the help of the following ... Read More

How to add easing effect to your animation with jQuery?

Ricky Barnes

Ricky Barnes

Updated on 21-Jun-2020 13:14:24

469 Views

To add easing effect to your animation, use the animation speed properly to form it a perfect animation for the web page. Do not speed up animation and you should know where to stop it while using animate().Here for our example, we have a button that takes you to a ... Read More

How to globally disable an animation using jQuery?

Ricky Barnes

Ricky Barnes

Updated on 21-Jun-2020 12:44:58

666 Views

To globally disable an animation using jQuery, use the jQuery.fx.off() method.To enable animation:$("#enable").click(function(){    jQuery.fx.off = false; });To disable animation, set jQuery.fx.off() as true:$("#disable").click(function(){    jQuery.fx.off = true; });You can try to run the following code to globally disable an animation using jQuery:Example Live Demo The jQuery Example     ... Read More

Structure of a Client Server System

Ricky Barnes

Ricky Barnes

Updated on 21-Jun-2020 12:37:22

5K+ Views

In client server computing, the clients requests a resource and the server provides that resource. A server may serve multiple clients at the same time while a client is in contact with only one server.The different structures for two tier and three tier are given as follows −Two - Tier ... Read More

Dynamic Random Access Memory (DRAM)

Ricky Barnes

Ricky Barnes

Updated on 20-Jun-2020 16:29:45

3K+ Views

Dynamic RAM (DRAM) is a type of semiconductor memory that uses capacitors to store the bits. The charging and discharging of the capacitor represents 0 and 1 i.e. the two possible values that can be stored in a bit.The DRAM is a volatile memory i.e. the data in memory is ... Read More

Block of PL/SQL in Oracle DBMS

Ricky Barnes

Ricky Barnes

Updated on 20-Jun-2020 08:55:16

3K+ Views

PL/SQL is a block structured language i.e the code of PL./SQL is written in the form of blocks. PL/SQL also contains the robustness, security and portability of the Oracle database.Each block of PL/SQL contains the following subparts −Declarations -  This section contains all the items that needs to be declared ... Read More

Advertisements