answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is the purpose of an execute disable bit?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Does SGID allow users to execute a binary compiled program?

Not, the execute bit does that.00100 - execute for user00010 - execute for group00001 - execute for others04000 - set-uid02000 - set-gid


Whats the meams of 32 bit computer?

32-bit or 64-bit CPUs/processors or operating systems indicate the address size for memory. A 64-bit address obviously can allow the computer to allocate much more than a 32-bit one. Otherwise there's not much differences (except CPUs in which most 64-bit CPUs have execute-disable bits that help prevent unauthorized programs from running)


Is a Q6600 processor 32 bit or 64 bit?

Q6600 is a 64 bit processor, but it can execute in 16 and 32 bit modes.


What is the purpose of using the IF function?

To execute condition code blocks.


What the purpose of the exucitive branch government?

To "execute" laws passed by congress.


What was the purpose of a gas chamber?

To execute mass killings of humans quickly.


What is the purpose of the administrative agency?

An administrative agency refers to a bureaucracy. The purpose is to have centralized organizations and execute the laws of the administration.


How do you make vb in 32 byte run in 64 byte OS?

You mean 32-bit and 64-bit, not 32 byte and 64 byte. A byte is an aggregate of (usually) 8 bits. 32-bit programs will execute in a 64-bit environment without any modification. 64-bit programs can also execute in a 32-bit environment, but this requires emulation through a 64-bit virtual machine.


What kind of power of attorney do you need so your son can sign your closing agreement on your real estate purchase?

You can execute a limited POA for that purpose only and have that limited purpose recited clearly in the POA document. You can have it drafted by the attorney who will be handling the purchase/sale on your behalf.


What general-purpose computer must have to run other programs?

A general-purpose computer requires an operating system to load and execute other programs.


What is the purpose of having a pet?

to have a bit of company


Why i can't enable and disable interrupts of my AVR for several times?

It's impossible :o) You can disable and enable any interrupt source by setting or clearing corresponding bit in proper control register. Show me your code - we will see what can be done wrong. Asar fotousa@interia.pl You can set bit I on SREG by 1 to enable global interrupt or by 0 to disable it. in c programming you can write #asm ("sei") //to enable global interupt #asm ("cli") //to disable global interupt M. Wicaksono A.