answersLogoWhite

0

Make sure a password has been set on the computer and make sure its one that you know is easy to memorize but hard for others to find out. firewall - software firewall is a program that is stored into the computer which protects the computer from unauthorized incoming and outgoing data. virus protection program - that helps stop or detect and fix virus problems from happening.

User Avatar

Wiki User

8y ago

What else can I help you with?

Related Questions

How does c give access to low level memory?

Define 'low level memory' first.


How does C programming give access to low level memory?

Define 'low level memory' first.


What is called pointers-c plus plus?

Yes, C++ has pointers, which are references to memory locations. which are variables that store memory addresses, or NULL (zero). If the pointer is non-NULL, the pointer is said to dereference the object (or variable) residing at the stored memory address, which permits indirect access to that object so long as the object remains in scope.


What allows faster access- RAM ROM or virtual memory a. ROM b. Virtual Memory c. RAM d. All of the above?

rom


What type of computer memory is used to load programs and transfer files during your work sessions A desktop backup drive B Random Access Memory RAM C Quick Memory QM?

virtual


What is the purpose and functionality of the address operator in C?

The address operator in C is denoted by the symbol "" and is used to retrieve the memory address of a variable. This allows programmers to access and manipulate the memory location of a variable directly, enabling more efficient and precise control over memory management in their programs.


How does memory cache speed up computer processing A Cahce memory doesn't need to be refreshed so access time is faster B Cache memory refreshes instantly so acess time is faster. C Cache memory uses?

A


What is memory corruption in C?

Memory corruption in C refers to situations where a program unintentionally alters the contents of memory locations that it is not supposed to access or modify. This can lead to unexpected and potentially dangerous behavior, such as crashes, data corruption, or security vulnerabilities. Memory corruption in C is often a result of issues like buffer overflows, uninitialized variables, or improperly managed memory allocations.


Is c a low level language?

C language is a middle level language, a middle language is one which somehow allows you to access your computer memory directly. Where as Java and C# are completely highlevel language as they dont allow you to directly access your computer memory, Assembly Language is said to be the low level language as it allow the the direct access of memory. you can read more on C language here: http://thetechnofreaks.com/2011/08/23/the-basics-welcome-to-the-world-of-programming/ Actually, there are no 'middle level languages', machine code and Assembly is low level, everything else is high level. And of course you cannot break out from your virtual memory space using C (or any other language). It is called 'protected mode' for a reason.


Mention any two features omitted from java but present in c?

# Manual memory allocation/deallocation # (Semi-) direct access to registers


What is the memory management operator in c plus plus?

There is no memory management operator in C++ -- it is an unmanaged language. You use the C++ new operator to allocate memory, and use the C++ delete operator to release previously allocated memory.


What is a dangling pointer in C and C plus plus?

A dangling pointer is one that points to a memory location but the memory itself has been freed or released back to the system. The memory may still contain valid information, but the system can overwrite the data at any time so any attempt to access that memory via the dangling pointer could prove disastrous. As soon as memory is released, the pointer is invalid -- because the memory it points to is potentially invalid. To prevent this, always nullify pointers (set them to point at memory address zero) when they are no longer required, immediately after releasing the memory they point to. There are occasion when this is not necessary, such as when releasing a member pointer in a class destructor, but if a pointer is re-used, it must be initialised before being accessed again.