answersLogoWhite

0


Best Answer

A local revision focuses on word choice and language; a global revision addresses organization and other larger elements.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar
User Avatar

NoLuvTrii

Lvl 1
1y ago
A local revision more likely addresses language and specific details.
More answers
User Avatar

Augusto Cassiá

Lvl 5
2y ago

A local revision focuses on specific words, phrases, and sentences; a global revision addresses larger aspects of the work.

This answer is:
User Avatar
User Avatar

Ona Wuckert

Lvl 1
2y ago
great answer thankss!
User Avatar

Jaquelin Jast

Lvl 1
2y ago
great answer thank you!
User Avatar

Norris Bernhard

Lvl 1
2y ago
can you explain how you got that

User Avatar

Kayln Whitefield

Lvl 5
2y ago

a local revision more likely addresses language and specific details.

This answer is:
User Avatar

User Avatar

Draco Dominguez

Lvl 4
1y ago

Focuses on word choice

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What best explains the difference between a local and a global revision?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is the difference between static function and global static function?

'global static'?! There is no such thing.


What is the difference between a global scope and a local scope?

Scope refers to the accessibility of an object. A globally scoped object is available globally (to the entire program) while a locally scoped object is only available locally (to the containing function or class). In general, you want to avoid global objects whenever possible as it tends to introduce dependencies.


What is the difference between extern and global?

Extern and Global are the storage space in C program. Global provides us to access the variables from anywhere inside the program only whereas Extern provides us to access the variables from outside that program, i,e., some other program.


What is global object in c plus plus?

A global object is any object instantiated in the global namespace. The global namespace is anonymous, so if we don't explicitly specify a namespace prior to instantiating an object, that object will be instantiated in the global namespace: int x; // global namespace n { int x; // non-global }; To refer to the non-global, we must use namespace resolution: x = 42; // assign to the global n::x = 42; // assign to the non-global


What are the five advantages and five disadvantages of using global variables?

The only case where a global variable is advantageous is when that global is a constant variable and it represents a truly global concept. The value of PI, for instance, is a truly global concept and it has a constant value. The exchange rate between dollars and Sterling is also a truly global concept, but it is non-constant and should not be declared global. Global (non-constant) variables are problematic because it can be difficult to track down all the places that interact with a global, especially if the global has external linkage. Even if that is not a problem in itself, a global cannot cater for both single-threaded and multi-threaded applications. If intended purely for single-threaded applications then there will be no synchronisation mechanism, thus it cannot be used in a multi-threaded application as this could lead to a data race. Conversely, if intended purely for multi-threaded applications, it will have a synchronisation mechanism but this could lead to performance issues on single-threaded applications where synchronisation is not required. In trivial applications, global variables can often be useful because the scope of a global can be well-defined. But in non-trivial applications, it becomes more difficult to limit the scope of a global. One way to limit the scope is to declare the global variable static, thus limiting its scope to the translation unit in which it is declared (static global variables cannot have external linkage). However, by limiting the scope, the variable is no longer a truly global concept.