adplus-dvertising
frame-decoration

Question

What is the object’s access mask in Windows?

a.

A 64-bit integer that is divided into two 32-bit access flag words

b.

A 32-bit integer that is divided into two 16-bit access flag words

c.

A 16-bit integer that is divided into two 8-bit access flag words

d.

None of the above

Posted under Reverse Engineering

Answer: (b).A 32-bit integer that is divided into two 16-bit access flag words Explanation:The object’s access mask is a 32-bit integer that is divided into two 16-bit access flag words. The upper word contains generic access flags such as GENERIC_READ and GENERIC_WRITE. The lower word contains object-specific flags such as PROCESS_TERMINATE, which allows you to terminate a process using its handle, or KEY_ENUMERATE_SUB_KEYS, which allows you to enumerate the subkeys of an open registry key.

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the object’s access mask in Windows?

Similar Questions

Discover Related MCQs

Q. What is the purpose of naming kernel objects in Windows?

Q. What is the benefit of using a common name for a kernel object in Windows?

Q. What is the purpose of the BaseNamedObjects directory in Windows?

Q. What are the basic structural units in Windows?

Q. What is a process in Windows?

Q. What is the minimum number of threads required for a process to run a program?

Q. What is a thread in Windows?

Q. How does Windows achieve concurrency?

Q. What is the internal data structure of a thread?

Q. Why does a thread in Windows need two stacks?

Q. What are the components responsible for managing threads in Windows?

Q. Can a thread be interrupted while running in kernel mode in the Windows architecture?

Q. Are all Win32 APIs interruptible?

Q. What is the process of achieving concurrency with multiple threads in a multithreaded kernel?

Q. Why do threads frequently give up the CPU on their own volition?

Q. What is one example of a common Win32 API that causes a program to wait?

Q. What happens when a program calls the GetMessageWin32 API and there are no messages in the queue?

Q. What does the kernel do when an application performs a slow I/O operation?

Q. What is preemptive scheduling?

Q. What is a thread's quantum?