An internal corporate-wide area network that uses internet technology to connect computers and link employees in many locations and with different types of computers is known as what?.

Answers

Answer 1

An internal corporate-wide area network that uses internet technology to connect computers and link employees in many locations and with different types of computers is known as the intranet.

An intranet is a computer network that shares information, services, and systems within an organization. Intranet utilizes familiar internet protocols so HTTP web services, email, and file transferring can be found there. It can also be considered as a private extension of the internet limited to only a single organization.

Intranets are generally controlled by the communications, HR, or IT departments of the institution.

There are many benefits of intranets, as collaboration is enhanced because the intranet makes data accessible throughout the organization allowing for easier teamwork. In addition to this, it also saves costs as all the information needed for employee manuals, requisition forms and more can be accessed electronically through the intranet. This saves the costs on the likes of printing and distribution.

To learn more about intranets, click here:

https://brainly.com/question/13139335

#SPJ4


Related Questions

you are given an array of strings arr. your task is to construct a string from the words in arr, starting with the 0th character from each word (in the order they appear in arr), followed by the 1st character, then the 2nd character, etc. if one of the words doesn't have an ith character, skip that word. return the resulting string.

Answers

Answer:

const solution = (arr) => {

   const queue = arr

   let res = "";

   // keep looping untill the queue is empty

 while(queue.length>0){

   // taking the first word to enter the queue

   const cur = queue.shift()

  // get and add the first letter of that word

   res+= cur.substring(0, 1);

   // add the word to the queue if it exists

   if(cur!== "") queue.push(cur.slice(1))

 }

 return res ;

}

console.log(solution(["Daily", "Newsletter", "Hotdog", "Premium"]));  

// DNHPaeoriwtelsdmyloiegutmter

console.log(solution(["G", "O", "O", "D", "L", "U", "C", "K"]));  

// GOODLUCK

Explanation:

Using queue data structure in Javascript

This is the very optimal solution to the question

power system protection: fundamentals and applications (ieee press series on power and energy systems)

Answers

An authoritative and comprehensive introduction to power system protection is provided in the book Power System Protection: Fundamentals and Applications (IEEE Press Series on Power and Energy Systems) by John Ciufo.

This book is ideal for new and early-career engineers and technicians. The book provides essentials utilizing an approachable combination of theory and practical application, regardless of the device or manufacturer.

To help the reader comprehend and recall the material contained therein, it provides a variety of examples and simple-to-grasp visuals. This book is also perfect for specifying power system equipment, system operators, and system planning engineers

Learn more about learning for engineer https://brainly.com/question/15016108?

#SPJ4

(a) which algorithm is used to digitize a voice signal for transmission in a digital circuit-switched network? (b) at which data rate is the voice signal transmitted?

Answers

Pulse code modulation (PCM) algorithm is used to digitize a voice signal for transmission in a digital circuit-switched network

An average voice channel in a circuit switched digital telecommunications network uses a 64 kbit/s timeslot. For the purpose of digital transmission, an analogue voice signal is transformed using the pulse code modulation (PCM) technique.

In order to represent sampled analogue signals digitally, one technique is pulse-code modulation (PCM). It serves as the industry standard for digital audio in applications such as digital telephony, compact discs, and computers.

Sampling, quantization, and coding are the three processes in the Pulse Code Modulation process.

The telephone network (POTS) uses PCM (Pulse Code Modulation), a standardised technique, to convert an analogue signal to a digital one. First, an 8-kHz sampling rate is used to sample the analogue signal.

Learn more about voice signal:

https://brainly.com/question/28544369

#SPJ4

Discuss the importance of documenting network problems and solutions. what can be done if a lack of time interferes with the documentation process?

Answers

The following justifies the importance of network documentation:

The right documentation might spare you from conducting time-consuming research to solve persistent issues. Consistency across the network helps to eliminate issues and errors when everything is in place and everyone adheres to the same rules and procedures. In the event that a knowledgeable employee leaves the organization, you won't lose crucial information. You can rapidly onboard new hires thanks to the documentation. When problems arise with your network, you can debug them more quickly.

A technical record of the network's hardware, software, servers, directory layout, user profiles, data, and how everything interacts. Any information that aids administrators and IT specialists in maintaining the network should be included in network documentation.

Learn more about documentation https://brainly.com/question/14096715

#SPJ4

a home file should be used for: a. records that are difficult to replace. b. financial records for current needs. c. storing all financial documents and records. d. obsolete financial documents. e. documents that require maximum security.

Answers

A home file should be used for option b. financial records for current needs.

What is a home file?

A house file is known to be a composition of people who are known to have at least a single common interest.

In regards to business, financial records  are known to be documents that show a person where a company's money originates from, where it went, and where it is been used for as at now.

Therefore, A home file should be used for option b. financial records for current needs.

Learn more about home file from

https://brainly.com/question/12982211

#SPJ1

A home file should be used to keep:

A) Records that are difficult to replace.

B) Documents that require maximum security.

C) Financial records for current needs.

D) Obsolete financial documents.

E) All financial documents and records.

Critical thinking: why would the network designers include fragmentation (segmentation) as a function instead of just requiring all packets to be a certain size? be specific.

Answers

The reason why  network designers include fragmentation (segmentation) as a function  instead of just requiring all packets to be a certain size is the fact that it helps to improve security as well as make a predictable traffic flows.

What is Packet fragmentation?

IP fragmentation is known to called an Internet Protocol (IP) process that tends to breaks down packets into little  pieces (fragments), so that the outcome of those pieces can be able to pass through a link with a little maximum transmission unit (MTU) than when compared to original packet size.

Note that by the act of fragmenting data packets and also sending a lot of packet, it is one that tends to have shorter transmission frames, all of the transmission will also be made up a lower probability of having a collision with a Bluetooth packet.

The reducing of the frame size tends to increases the percentage of overhead bits that is used in the transmission.

Therefore, The reason why  network designers include fragmentation (segmentation) as a function  instead of just requiring all packets to be a certain size is the fact that it helps to improve security as well as make a predictable traffic flows.

Learn more about fragmentation from

https://brainly.com/question/26260432

#SPJ1

What would happen if a program tried to access a variable that was defined locally in another part of the program?.

Answers

The thing that would  happen if a program tried to access a variable that was defined locally in another part of the program is that said project would fail or will not succeed.

What are variables and how are they important for a program?

Variables are known to be tools that are used to save information that will be referenced as well as be altered in a computer program.

Note that they also give a method that one can make use of in labeling data with a form of descriptive name, so our programs can be known well and more clearly by the reader.

Therefore, The thing that would  happen if a program tried to access a variable that was defined locally in another part of the program is that said project would fail or will not succeed

Learn more about computer variable from

https://brainly.com/question/27975087

#SPJ1

exercise 1.11 convert the following unsigned binary numbers to decimal. a) 10102 b) 1101102 c) 111100002 d) 00011000101001112 exercise 1.12 repeat exercise 1.11, but convert to hexadecimal.

Answers

1.11 will be converted into 0001100010100111₂ unsigned binary numbers to decimal. Thus, option D is correct.

What is binary numbers?

The base-2 notation, often known as the binary representation, is a way of expressing numbers in mathematics that employs simply two values, mainly "0" and "1."

The  1.11  will be The binary number that can be repeated in the form of 1 and 0 these numbers can be in any coding or any form but there are only two numbers that are being used to create  0001100010100111₂ in the unsigned binary numbers to decimal.

Therefore, option D is the correct option.

Learn more about binary numbers, here:

https://brainly.com/question/28222245

#SPJ1

What is the BEST example of a story that corporate media would likely choose NOT to cover?A.
election results for national races

B.
tax breaks provided to large corporations

C.
stricter requirements for teen drivers’ licenses

D.
poor water quality in underserved communities

Answers

The best example of a story that corporate media would likely choose not to cover is: B. tax breaks provided to large corporations.

What is corporate media?

Corporate media can be defined as a terminology which describes a collection of mass media production, ownership, distribution,  and funding which is typically dominated by large corporations and their top executive management (CEOs).

This ultimately implies that, corporate media is a media system which is more than likely not to serve the public interest in its production and reportage of activities that affects its business and the government. Simply put, corporate media is biased and secretive in its reportage of public issues.

In this context, we can reasonably infer and logically deduce that the best example of a story that corporate media would likely choose not to cover is tax breaks provided to large corporations.

Read more on corporate media here: https://brainly.com/question/28097605

#SPJ1

1.1.1 Give two examples of situations where electronic circuits are used

Answers

Answer:

Such digital integrated circuits are ubiquitous in modern electronic devices, such as calculators, mobile phone handsets, and computers.

Explanation:

Many feel that the future of gaming will involve __________ , where humans can experience realistic environments that are simulated by computers.

Answers

Many feel that the future of gaming will involve virtual reality, where humans can experience realistic environments that are simulated by computers.

What is Virtual Reality (VR)?

Virtual Reality (VR) can be defined as a computer technology through which virtual images of any physical environment (realities) and human-machine interactions are displayed, especially through the use of various computer technologies and wearables.

The elements of Virtual Reality (VR).

Generally, some of the elements of Virtual Reality (VR) include the following:

Life interactionSelf projectionTelexistence3D space or model.

In this context, we can reasonably infer and logically deduce that Virtual reality is a computer technology which is designed and developed to simulate a three-dimensional (3D) environment through which humans can explore and interact with realistic environments in games.

Read more on Virtual Reality here: brainly.com/question/26705841

#SPJ1

A computer that is part of the workgroup can exist on the same network but is not authorized to access the domain resources. True or false?.

Answers

Answer:

True.

Explanation:

select the entry that correctly uses mla style for in-text documentation. the student is providing in-text documentation for the following online source, which includes no page numbers:

Answers

The entry that correctly uses MLA (2016) style for in-text documentation is: that of Walker.

What is MLA in-text documentation?

MLA format is known to be one that tends to follows the author-page king or way of in-text citation.

Note that in this method, it implies  that the author's last name as well as the page number(s) from whence the quotation or paraphrase is said to be taken from is one that needs to or must appear in the text, and there is found also a complete reference that need to appear on your Works Cited page or reference.

Therefore, The entry that correctly uses MLA (2016) style for in-text documentation is: that of Walker in the image attached.

Learn more about MLA (2016) style  from

https://brainly.com/question/13959275

#SPJ1

Select the entry that correctly uses MLA (2016) style for in-text documentation.

The student is providing in-text documentation for the following online source, which includes no page numbers:

Walker, Rob. "Stuck on You." The New York Times Magazine, 3 June 2010, www.nytimes.com/2010/06/06/magazine/06fob-consumed-t.html. Accessed 9 June 2010.

Liam noticed someone had accessed his social media account and made several posts without his knowledge. Which of the following practices will keep unauthorized users from gaining access to his online accounts?

Answers

Answer:

Liam could, Change the password,

Explanation:

change the password, so the password would be difficult to guess.

Avoid logging onto social media on public computers or WiFi connections.

Don't giving out account information to friends and avoid opening suspicious links and emails.

DON:T opening suspicious links or emails could allow malware to infect your computer the moment you open them.

HOpe this HelPed

An employee has received a digital photo frame as a gift and has connected it to his/her work pc to transfer digital photos. the primary risk that this scenario introduces is that?

Answers

The primary risk that this scenario introduces is that: B) the photo frame could be infected with malware.

What is a malware?

A malware can be defined as any type of software program or file that is designed and developed to be intentionally harmful to the host computer, server, or network, especially for the purpose of wreaking havoc, damage and destruction after gaining an unauthorized access.

The primary risk which connecting a work pc to transfer digital photos that were received as a gift from an external source without scanning with an antivirus is that the photo frame could be infected with malware.

Read more on malware here: https://brainly.com/question/24811303

#SPJ1

Complete Question:

An employee has received a digital photo frame as a gift and has connected it to his/her work PC to transfer digital photos. The PRIMARY risk that this scenario introduces is that:

A) the drivers for the photo frame may be incompatible and crash the user's PC.

B) the photo frame could be infected with malware.

C) the photo frame storage media could be used to steal corporate data.

D) the employee may bring inappropriate photographs into the office.

Write l for law of enrtia,ll for law of Acceleration and lll for law of enteraction.

___1)Empty grocery cart runs faster than the loaded one.
___2)Using Seatbelt to hold your body from leaning forward when a car you are riding suddenly stops.
___3)While rowing a boat,paddling will cause the bat to moved forward.
___4) A biker slightly presses the brake as his bike travels down on a slope.
___5)lt is easier for you to move a box with relief goods when helped by friends than moving it all by yourself.
___6) A toy truck with loads runs slower compared to a toy truck with empty loads when you pushed them at the same time.
___7) A kid catches a flying boomerang and stopping its motion.
___8)Your hand hurts when you punch someone hard.
___9)Rocket propulsion or when rocket lifts off from a shuttle System.
___10)A cart at rest start moving once someone pushes it forward.

this is for SCIENCE SUBJECT​

PLEASE ANSWER IT PROPERLY BECAUSE I NEED IT UNTIL TOMMOROW MORNING...

Answers

[tex]{ \qquad\qquad\huge\underline{{\sf Answer}}} [/tex]

Statement 1 : ll

Empty grocery cart runs faster than the loaded one.

By Newton's second law ( law of Acceleration ) :

[tex]\qquad \sf  \dashrightarrow \: F = ma [/tex]

If the mass is less, less force will be exerted to move it. hence empty cart runs faster than full cart as it requires more force.

Statement 2 : l

Using Seatbelt to hold your body from leaning forward when a car you are riding suddenly stops.

By Newton's first law ( law of inertia ) :

" An object has tendency to resist change in its state until any external unbalanced force is applied on it. "

So, while driving our state is in motion, and when we apply brake, it's change of state from motion to rest, hence by law of inertia, our body still keep up in motion, that makes us to lean forward.

Statement 3 : lll

While rowing a boat,paddling will cause the bat to moved forward.

By Newton's third law ( law of enteraction ) :

" Every action has an equal and opposite reaction "

when we paddle, we push (apply force on) the water backwards, and hence water exerts a force on us in forward direction that let us move accordingly in water.

Statement 4 : ll

A biker slightly presses the brake as his bike travels down on a slope.

By Newton's second law ( law of Acceleration ) :

[tex]\qquad \sf  \dashrightarrow \: F = ma [/tex]

A biker applies brake when it's a slope, because it's acceleration increases significantly when it goes down the slope and to maintain the speed he applies a brake to slow down. ( increase in Acceleration causes bike to move fast, as more force is exerted )

Statement 5 : ll

lt is easier for you to move a box with relief goods when helped by friends than moving it all by yourself.

By Newton's second law ( law of Acceleration ) :

[tex]\qquad \sf  \dashrightarrow \: F = ma [/tex]

By the given formula we can clearly conclude that, to move a bulky object ( having heavy mass ), greater force is required, so we call for help as we can easily increase the force when there's more than one person pushing it.

Statement 6 : ll

A toy truck with loads runs slower compared to a toy truck with empty loads when you pushed them at the same time.

By Newton's second law ( law of Acceleration ) :

[tex]\qquad \sf  \dashrightarrow \: F = ma [/tex]

If same force is exerted on heavy and light object, Acceleration of that of lighter body will be more than that of bulky body, so.. the truck with load on it has more mass than truck with no load, hence truck with load moves slower.

Statement 7 : l

A kid catches a flying boomerang and stopping its motion.

By Newton's first law ( law of inertia ) :

" An object has tendency to resist change in its state until any external unbalanced force is applied on it. "

When the kid catches the boomerang it was in motion, so it resists to come at rest, Therefore we need to apply a force and with time it comes to rest.

Statement 8 : lll

Your hand hurts when you punch someone hard.

By Newton's third law ( law of enteraction ) :

" Every action has an equal and opposite reaction "

As we hit something hard, it feels painful because when we apply force on that hard object it applies the same force on our palm that results in pain.

Statement 9 : lll

Rocket propulsion or when rocket lifts off from a shuttle System.

By Newton's third law ( law of enteraction ) :

" Every action has an equal and opposite reaction "

In order to go up in the sky, one rocket applies a force download by the process of propulsion and hence by Newton's third law, a force of same magnitude is applied on it that cause Rocket to lift up.

Statement 10 : ll

A cart at rest start moving once someone pushes it forward.

By Newton's second law ( law of Acceleration ) :

[tex]\qquad \sf  \dashrightarrow \: F = ma [/tex]

Acceleration in a body is caused by force acting on it, so to move a car ( Accelerate ) we push it forward ( apply force ).

Which of the following stores data using microscopic light and dark spots?
Flash drive
Compact disc
RAM
Hard disk

Answers

The technology that stores data using microscopic light and dark spots is: B. Compact disc.

What is a compact disc?

A compact disc is also referred to as an optical disc (OD) and it can be defined as a small, circular and digital-disc which is designed and developed to be used for the storage of computer data, especially by using a laser beam (microscopic light) and dark spots technology.

Generally, a compact disc (CD) is able to store digital data because it is manufactured through the use of polycarbonate (a tough-brittle plastic) with one (1) or more metal layers.

In this context, we can reasonably infer and logically deduce that data is typically stored on compact discs (optical discs) by using a laser beam (microscopic light) to either melt the disc material or change the color of embedded dye.

Read more on optical disc here: brainly.com/question/28066311

#SPJ1

you're installing network wiring for a new ethernet network at your company's main office building. the project specifications call for cat 5e utp network cabling and rj45 wall jacks. near the end of the project, you run out of wire before the last few runs are complete. you have a spool of cat 3 network cable in storage. upon closer inspection, it appears very similar to the cat 5e wiring. to finish the project, should you use the cat 3 cabling as a substitute for the cat 5e cabling? no. cat 5e cabling has more twists per inch than cat 3 cabling, reducing crosstalk and supporting higher data rates. no. the sheath surrounding cat 5e cabling is much thicker than the cat 3 sheath, creating an extra layer of shielding that reduces crosstalk and supports higher data rates. yes. you can use cat 3 cabling as a substitute for cat 5e cabling since they're electrically identical. no. cat 5e cabling uses a thicker copper wire than cat 3 cabling, enabling higher data transmission rates.

Answers

In order to finish this project, I would say: A. No. Cat 5e cabling has more twists per inch than Cat 3 cabling, reducing crosstalk and supporting higher data rates.

What is a cable?

A cable can be defined as a type of wired connector which are either made of glass or copper and used for connecting one network device to another, so as to form a computer network and enable the continuous transmission of data between them.

The types of twisted-pair cables.

In Computer networking, there are different types of twisted-pair cables and these include the following:

Cat 3Cat 5eCat 6 (Class E)Cat 6a (Class EA)Cat 7 (Class F)

In order to finish this project, I would say that the Cat 3 cabling shouldn't be used as a substitute for the cat 5e cabling because Cat 5e cabling has more twists per inch.

Read more on Cat 5e cables here: https://brainly.com/question/28402675

#SPJ1

The transition from ipv4 to ipv6 requires that ____________. (check all that apply)

Answers

The transition from ipv4 to ipv6 requires that IPv4 routers still in use must "tunnel" IPv6 datagrams, by fragmenting/encapsulating them in IPv4 datagrams.

The network layer protocol known as the Internet Protocol (IP) is used by the TCP/IP protocol suite to address and route data packets between hosts. The Internet Protocol is also known as the English Internet Protocol and is shortened as IP. -hosted on a computer network using TCP/IP.

IP version 4 (IPv4), which was described in RFC 791 and released in 1981, is now the most extensively used version of IP. However, IP version 6 will eventually take its place.

Learn more about internet protocol https://brainly.com/question/27581708

#SPJ4

you have just upgraded the memory in one of your network servers by adding two 4-gb ecc memory cards. before purchasing the new memory, you made sure that the modules fit in the memory slots (packaging) and the speed (memory frequency) was supported by the memory controller. what did you forget to check that would significantly impact the memory checking of your new ecc memory cards?

Answers

Answer:Whether or not the existing memory modules support

Explanation:

Mixing ECC and non-ECC memory would disable the error correction function on the new memory cards.

_____ is software that is distributed, typically for free, with the source code available so that it can be studied, changed, or improved by its users.

Answers

open-source software is software that is distributed, typically for free, with the source code available so that it can be studied, changed, or improved by its users.

What is a software?

A computer's running applications, scripting languages, and algorithms are collectively referred to it as "software" in this context. It is the antithesis of technology, usually refers to a device's external components.

Open source software can we define does the core code or a source which is available for the people and his accessible to them. They can easily contribute to that by seeing it, modifying it or doing some kind of changes that if field is appropriate.

It is basically designed or produced by the community or a group of people. This gives some great variable to the viewer and the user.

Learn more about software, here:

https://brainly.com/question/985406

#SPJ1

Some cmos setup programs allow you to control the ata security mode feature set, also commonly referred to as?

Answers

Some CMOS setup programs allow you to control the data security mode feature set, also commonly referred to as drive lock.

What is set up programs?

A set of a program is being defined as a program that is being installed in the computer through which the setup of various apps all the data is being done.

You can manage the information security protection functionality, often known as drive lock, using some CMOS configuration applications.

Drive lock is required by the software or a laptop in this hard drives are being encrypted so that no viruses or any sort of practices is being done with the hard drive properties or data tape.

Learn more about set up programs, here:

https://brainly.com/question/14652195

#SPJ1

Which wi-fi standard uses beamforming to allow an app to send data to multiple devices simultaneously?

Answers

Answer: 802.11n

Explanation: uses only MIMO technology. In this, signal send by separate antennas and sends multipath signals. The signals slightly goes out of the range. So we cannot send data in multiple devices simultaneously.

feature of super computer short​

Answers

Answer:

Characteristics of Supercomputer

They can support more than a hundred users at a time.

These machines are capable of handling the massive number of calculations that are beyond the human capabilities, i.e., the human is unable to solve such extensive calculations.

Many individuals can access supercomputers at the same time.

These are the most expensive computers that can ever be made.

Answer:b

Explanation:

In order to connect to the internet via the web you will need communications hardware, browser software and a(n)_____,

Answers

In order to connect to the internet via the web you will need communications hardware, browser software and a(n) Internet Service Provider.

What does internet service provider mean?

An ISP (internet service provider) is known to be called any firm or a company that tend to carry out or give people and organizations access to the internet as well as  other linked services.

Note that an ISP is said to possess the equipment as well as the telecommunication line access that is known to be needed to have a  place of presence on the internet.

Therefore, In order to connect to the internet via the web you will need communications hardware, browser software and a(n) Internet Service Provider.

Learn more about Internet Service Provider from

https://brainly.com/question/23902843

#SPJ1

Which objective data is most helpful to monitor in the debilitated client with terminal liver cancer?

Answers

The objective data is most helpful to monitor in the debilitated client with terminal liver cancer is Present weight.

Can terminal liver cancer cured?

The liver cancer is known to be one that tends to affect the liver and this type is said to be one that is at the end or critical stage.

Note that it is seen as  a kind of cancer that may not be possible to cure and here the patient will be losing a lot of weight.

Therefore, The objective data is most helpful to monitor in the debilitated client with terminal liver cancer is Present weight.

Learn more about terminal liver cancer from

https://brainly.com/question/10071925
#SPJ1

Which pathway includes implementing computer systems and software and database
management?

Answers

The Information Support and Services Pathway (technical) includes implementing computer systems and software and database management.

What is the Technical pathway about?

This is known to be the pathway where the Employees that can be seen in the Information Support as well as Services Pathway tends to implement computer systems as well as software, they provide some measures of assistance and handles  information systems

Therefore, The Information Support and Services Pathway (technical) includes implementing computer systems and software and database management.

Learn more about database management from

https://brainly.com/question/24027204
#SPJ1

Which statement best describes the type of computer found in everyday
appliances?
A. They can be programmed with many applications to perform
varied functions.
B. They are interchangeable with desktop computers, smartphones,
or tablet computers.
C. They are housed in their own cases and paired with monitors,
keyboards, and mice.
D. They can manipulate information and are able to store, retrieve,
and process it.

Answers

A statement which best describes the type of computer found in everyday appliances is that: D. They can manipulate information and are able to store, retrieve, and process it.

What is a computer?

A computer can be defined as an electronic device that is designed and developed to receive data in its raw form as an input and it processes these data into an output (information), which can be used to perform a specific task through the use of the following computer parts:

KeyboardNetworkMonitor screenMouseHard-disk drive

Generally, a computer is a type of sophisticated electronic device that can be to store, retrieve, and process data into an output (information) that is meaningful and useful.

In conclusion, we can reasonably infer and logically deduce that a statement which best describes the type of computer found in everyday appliances is that they can manipulate information and are able to store, retrieve, and process it.

Read more on computers here: brainly.com/question/14614871

#SPJ1

Answer:

They can manipulate information and are able to store, retrieve, and process it.

1.3.2

Explanation:

A new programmer often uses the vi editor to create scripts and often has a need to view lines as numbered in the vi editor. What advice do you provide?

Answers

Answer: Press ‘ESC’ and then ‘:’ and type ‘set number’

-> :set number

Explanation:
ESC being you into command mode and the colon specifies the command and you want to “set” line “number” so you type :set number. To remove line numbers, simply do the same thing but type nonumber instead of number.

Cheers.

the concept of stack is extremely important in computer science and is used in a wide variety of problems. this assignment requires you to write a program that can be used to evaluate ordinary arithmetic expressions that contains any of the five arithmetic operators ( , -, *, /, %). this exercise requires three distinct steps, namely:- 1.verify that the infix arithmetic expression (the original expression), that may contain regular parentheses, is properly formed as far as parentheses are concerned. 2.if the parenthesized expression is properly formed, convert the expression from an infix expression to its equivalent postfix expression, called reverse polish notation (rpn) named after the polish mathematician j. lukasiewics. 3.evaluate the postfix expression, and print the result.

Answers

The premises are:

1. the expression has been tokenized2. no syntax error3. there are only binary operators

Input:

list of the tokens, for example:

  (, (, a, *, b, ), +, c, )

Output:

set of the redundant parentheses pairs (the orders of the pairs are not important),

for example,

  0, 8

  1, 5

The data structure:

a stack, each item records information in each parenthese pair

the struct is:

  left_pa: records the position of the left parenthese

  min_op: records the operator in the parentheses with minimum priority

 left_op: records current operator

Read more about stack here:

https://brainly.com/question/23860276

#SPJ1

Other Questions
The nurse is performing a health assessment and physical examination on a newly admitted patient who complains of a sore throat and fever. this information is? many states determine the order of water rights according to which users of the water hold a recorded beneficial use permit. this allocation of water rights is determined by Traveling to a foreign country with the goal of having sex with prostitutes is termed __________. The Apollo 13 article contained a lot of scientific vocabulary words and their meanings might have been determined by readers who used: Completa. Read about Estela and her best friend, then write the correctform of the verb ser or estar to complete the sentences.Maja y yoLa mejor amiga de Estelasimptica y graciosa. Ellaamigas. Ellade Espaa. Nosotrasmuy contentas, porque ella y yoen las mismas clases. Ella es muy estudiosa y lista!D Yo ____ doce aos.Group of answer choicestenemostengotienetienesPlease help! Thanks In advance Solve for y 11x+y= 18x describe atleast 2 types of tests you could perform to determine if a substance was a metal or non metal Cartilage tears, particularly in the meniscus, is capable of healing itself if given rest and anti- inflammatory drug therapy. a. true b. false Which form of international expansion involves the development of a mutually beneficial partnership with a company in a foreign country? an active sentence is one in which: group of answer choices a. the cart comes before the horse. b. the verb comes before the subject. c. the actor comes before the action. d. the action comes before the actor. e. the sentence addresses activities for the reader. What is the definition of specialization During which stage do children begin making plans and showing inventiveness in their behaviors? group of answer choices Use inductive reasoning to find the next two terms in the sequence. What are the next two terms? 3/4, 2/3, 5/8, 3/5 What is the probable cause of excessive knee valgus during a squat assessment? What is the author's main purpose in the article? A. to list the steps to take in order to throw a coming-of-age ceremony B. to explain the advantages and disadvantages of coming-of-age ceremonies C. to compare and contrast the merits of different coming-of-age ceremonies D. to expose the reader to different coming-of-age ceremonies in different cultures 4. (a) Analyze In paragraphs 1-3, why does Amar emphasize theimportance of the Preamble's use of the word ordain? Explain, citing textevidence. as jean tyler plans to set aside funds for her young children's college education, she is setting a short-term goal. Laine reads 200 pages in 240 minutes. If Laine reads 25 pages at the same rate, how long will it take her? Are proteins or rna molecules that act as catalysts to speed up reactions in living organisms.