answersLogoWhite

0


Best Answer

i think programmable read-only memory are chips programmed with content that cannot be erased and erasable programmable read-only memory are chips programmed with content that cannot be erased but can be replaced by using electrical devices with strong ultra violet rays

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What Difference between programmable read-only memory erasable programmable read-only memory and electrically erasable read-only memory?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Natural Sciences
Related questions

Whats the difference between static and constant?

The value of a static readonly field is set at runtime; therefore, the value can be modified by the containing class. On the other hand, the value of a const field is set to a compile-time constant. In the case of static readonly, the containing class is allowed to modify the value only: * in the variable declaration (via a variable initializer) * in the static constructor (or instance constructors for non-static)Typically, static readonly is used either when the value is unknown at compile time or if the type of the field is not allowed in a const declaration. Also, instance readonly fields are allowed. Note: for reference types, in both cases-static and instance-the readonly modifier only prevents assignment of a new reference to the field. It does not specifically make the object pointed to by the reference immutable.


What is constant and readonly keyword in c?

It's 'const', example:const double pi = 3.1415926;


How do you make readonly CD?

All CD's and DVD's are read-only unless they are specified "re-writable".


What is SIGBUS?

SIGBUS is an event that occurs when a program or application tries to do something with memory it doesn't own or memory that is readonly. It is a "bus error", related to bad memory handling. See the related link for detailed information.


Is System.String a class or a struct?

System.String is a class. However, it is somewhat unique in that it is immutable, meaning that it is readonly. So if you change the contents of a string, behind the scenes it creates a new string object and destroys the old one.


Which is the keyword of shell 1.shift 2.readonly 3.unset 4.ls?

answer is ls.. ls is command outside of the unix kernel.. To identify this if you do locate <command> or which<command> you can identify the source of the program.. if you do locate<keyword> or which<keyword>.. you can't identify the source of the program... :)~ss


What is the difference between program and data memory?

When the program is compiled and linked different parts of the program is organised in separate segments. That is our code will be in one segment code means the instructions to be executed this is called as code segment or program memory this is usually readonly. Then there are data which on which the code operates,these data get stored in a segment called data segment. Stack memory is a part of programs memory which will be used as stack in case of function calls to store the IP and parameters variables of the current function. The three types of memory specified above are owned by the corresponding process or program the linker will give info abt where to store which data to the loader, based on these infos loader will load the corresponding image i.e executable in the memory.


The Role of Multiple Delete Locks in Azure Resource Management?

What are Delete Locks? Types of Delete Locks Delete locks are pivotal safety measures in Azure. They prevent accidental deletion or modification of essential resources. These locks come in two primary forms: CanNotDelete and ReadOnly. Importance of Delete Locks Implementing delete locks ensures the integrity and security of critical Azure resources. The CanNotDelete lock prohibits deletion, while the ReadOnly lock allows viewing but not modification. Managing Delete Locks Proper management of these locks involves assigning them An Azure Resource can have Multiple Delete Locks to specific resources, granting controlled access for safeguarding against unintended alterations. Can Azure Resources Have Multiple Delete Locks? Azure's infrastructure enables the application of multiple delete locks on a single resource, thereby intensifying its protection. Case Studies Examining real-world scenarios demonstrating the practical application and benefits of employing multiple delete locks.


How can you write a thread programming in net?

This should get you started: using System; using System.Threading; namespace Flurp { public class ThreadTest { private static readonly Random _Random = new Random(); private static void RunThread() { for ( int i = 0; i < 20; i++ ) { string name = Thread.CurrentThread.Name; Console.WriteLine( "{0}: {1}", name, i ); Thread.Sleep(_Random.Next(1000)); } } public static void Main() { Thread thread1 = new Thread( RunThread ); Thread thread2 = new Thread( RunThread ); thread1.Name = "Thread 1"; thread2.Name = "Thread 2"; thread1.Start(); thread2.Start(); } } }


What is the program for inputting two integers where the second integer is greater than the first integer and add all the numbers from the first integer to the second integer?

If you are talking about e.g. 7 as 1st int, 12 as 2nd int, output as 7+8+9+10+11+12, there is no program, though you coyuld easily make noe out of js, by: -Put three imput boxes, the third as readonly, and make a button that sais submit. -Use the (this.pauser) to send the information after it is clicked from the imput boxes to a function -the function could be (with an i=1 loop) you could say i loops from imputone to imput two -done.


What are the functions under dos h in c plus plus language?

Quote from the Microsoft Visual Studio 2010 version of dos.h: "Defines the structs and unions used for the direct DOS interface routines; includes macros to access the segment and offset values of far pointers, so that they may be used by the routines; and provides function prototypes for direct DOS interface functions." However, this description bears little resemblance to the file content. The structure, _diskfree_t, is declared and the standard definitions for file attributes (normal, readonly, hidden, etc) are also defined. But that's all. No macros, no unions, no function prototypes whatsoever. The actual definitions are contained in crtdefs.h (the common runtime definitions), which is included in dos.h.


How do you remove write protection from your Kingston usb flash drive dt 100?

Click startClick RunType "CMD"Hit Enter - A black screen should now appearType "diskpart"Wait until you get "DISKPART>" then type in "select volume (blank)" fill in the blank with the letter of the drive you are trying to remove write protection fromNow type "attributes volume clear readonly"