Kristi Castro has Published 104 Articles

Storage Area Networks

Kristi Castro

Kristi Castro

Updated on 22-Jun-2020 08:02:02

1K+ Views

Storage Area Networks are typically used to provide access to data storage. These make sure that storage devices such as disks, tape drives etc. can be accessed by an operating system as system storage devices.Storage Area Networks are quite cheap and so are used both by large conglomerates and small ... Read More

Symmetric Multiprocessing

Kristi Castro

Kristi Castro

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

5K+ Views

Most computer systems are single processor systems but multiprocessor systems are increasing in importance nowadays. These systems have multiple processors working in parallel that share the computer clock, memory, bus, peripheral devices etc.There are mainly two types of multiprocessor systems. These are −Symmetric Multiprocessor SystemAsymmetric Multiprocessor SystemIn symmetric multiprocessing, multiple ... Read More

Memory Management

Kristi Castro

Kristi Castro

Updated on 21-Jun-2020 17:01:03

2K+ Views

Memory management plays an important part in operating system. It deals with memory and the moving of processes from disk to primary memory for execution and back again. Some basic concepts related to memory management are as follows −Virtual Address Space and Physical Address SpaceThe address generated by the CPU ... Read More

Peer to Peer Computing

Kristi Castro

Kristi Castro

Updated on 21-Jun-2020 13:07:32

13K+ Views

The peer to peer computing architecture contains nodes that are equal participants in data sharing. All the tasks are equally divided between all the nodes. The nodes interact with each other as required as share resources.A diagram to better understand peer to peer computing is as follows −Characteristics of Peer ... Read More

Volatile Storage vs Non-Volatile Storage

Kristi Castro

Kristi Castro

Updated on 20-Jun-2020 16:43:19

2K+ Views

Volatile and Non-Volatile storage are the two forms of storage in any computer system.Volatile StorageThis is a type of computer memory that remains while there is power and the data is lost when power is switched off. A prime example of volatile memory is RAM. It is a type of ... Read More

Random Access Memory (RAM)

Kristi Castro

Kristi Castro

Updated on 20-Jun-2020 16:30:07

980 Views

Random access memory (RAM) is a type of primary storage. It allows the user to randomly access any part of the data regardless of its position in roughly the same time. This is not possible using other storage devices such as hard disks, CD’s etc. because they have physical constraints ... Read More

How to check whether a string contains a substring in jQuery?

Kristi Castro

Kristi Castro

Updated on 20-Jun-2020 15:56:41

2K+ Views

The jQuery :contains() Selector is used to check whether a string contains a substring in jQuery.Set the substring you are searching for in the contains() method as shown below:$(document).ready(function(){    $("p:contains(Video)").css("background-color", "blue"); });Now, let us see the complete code to check whether a string contains a substring or not:Example Live Demo ... Read More

How to make a textarea and input type read only using jQuery?

Kristi Castro

Kristi Castro

Updated on 20-Jun-2020 15:45:47

2K+ Views

To make a textarea and input type read only, use the attr() method .For readonly, set the input type text and textarea as read only as shown below:$('input[type="text"], textarea').each(function(){    $(this).attr('readonly', 'readonly'); });The following is the code to set readonly to textarea and input type:Example Live Demo jQuery Example   ... Read More

How to disable/ enable checkbox with jQuery?

Kristi Castro

Kristi Castro

Updated on 20-Jun-2020 15:45:00

4K+ Views

fTo disable and enable checkbox, use the attr() method.Initially set the input type checkbox and disable it −MaleNow on the click of a button, toggle between disabled and enabled checkbox −$("#button1").click(function() {    $("#sName").attr('disabled', !$("#sName").attr('disabled')); });Example Live Demo jQuery Example               $(document).ready(function() {   ... Read More

How to add a new row in a table using jQuery?

Kristi Castro

Kristi Castro

Updated on 20-Jun-2020 15:37:29

2K+ Views

Use event delegations to include both add a new and delete a table row on a web page using jQuery.Firstly, set a button in HTML to add new row    Add new Row Now under the button click event, set the code:$("#newbtn").click(function () { }Example Live Demo ... Read More

Advertisements