Accenture i one of everal hundred companie that ha igned on to the United Nation Global Compact (UNGC) Buine Ambition pledge

Answers

Answer 1

It was for the 1.5° Pledge, which was also supported by a large number of other businesses.

What is UN Global Compact Business Ambition?In response to the global climate catastrophe and in the run-up to the next UN Climate Action Summit, a communications and advocacy campaign called Business Ambition for 1.5 °C: Our Only Future is urging businesses to stand up and play their part in limiting global temperature rise to 1.5 °C. We aspire to create the society we want by organizing a global movement of sustainable businesses and stakeholders through the UN Global Compact. That is our goal.The target temperature increase from pre-industrial levels should not exceed 1. 5 Celsius.The company signed the UN Global Compact Business Ambition to demonstrate its participation.It was for the 1.5° Pledge, which was also supported by a large number of other businesses.The pledge's main goal is to forge a business-to-business alliance to manage the climate.They have taken an oath to preserve the Paris Climate Agreement and contribute to keeping global warming below 1.5° Celsius.They are committed to achieving emission oblivion.They also emphasize neutrality while describing the procedure for balancing their carbon emissions. This might potentially aid in reducing the consequences of climate change.

To learn more about UNGC refer to:

https://brainly.com/question/29237338

#SPJ4


Related Questions

As part of clinical documentation improvement, a patient case review resulted in the determination that a patient's previous hospital discharge was inappropriate because the patient was transported back to the hospital via ambulance and admitted through the emergency department within three days of the previous discharge; this process is called a __________ audit.

Answers

Within three days of the previous release; this procedure is known as a readmission audit.

For an osteoporosis diagnosis, which code would be considered a medical necessity?

The WHO classifies ICD-10 code Z13. 820, Encounter for osteoporosis screening, as a medical condition that falls under the heading of "Factors influencing health status and interaction with health services."

What kind of code should be used to record a patient's disease, injury, or medical condition?

The state of the patient and the diagnosis made by the doctor are represented by ICD codes. These codes are employed in the billing procedure to establish medical necessity. Coders must ensure that the procedure they are billing for is appropriate given the provided diagnosis.

To know more about readmission audit visit :-

https://brainly.com/question/29979411

#SPJ4

A new Windows 10 PC is configured to obtain an IP (Internet Protocol) address using DHCP (Dynamic Host Configuration Protocol). You notice that the PC has an address of 169.254.1.20 and cannot connect to network resources. This computer is used on multiple networks and should have a static IP on this network only. What could be configured via the NIC (Network Interface Card) to remedy the PC's connectivity

Answers

The NIC (Network Interface Card) can be set in a different way to fix the PC's connectivity issues.

Which of the following Windows user groups is still in use but is no longer recommended for supporting legacy applications?

Users with access to the power users group on a Windows system can carry out operations that could jeopardize the system. These days, it only still exists to support old software.

Which Windows networking technologies are relevant to the security management of authentication?

The extensions for public key authentication in the Kerberos version 5 authentication protocol are implemented by the Microsoft Windows Server operating systems. The Security Support Provider Interface (SSPI) provides access to the Kerberos authentication client, which is implemented as an SSP (SSPI).

To know more about Network Interface Card visit :-

https://brainly.com/question/13992507

#SPJ4

Objects in an array are accessed with ________, just like any other data type in an array.
O Private
O The class
O Data type
O Subscripts

Answers

Like any other data type in an array, objects in an array can be accessed using Subscripts.

What do subscripts belong in?

A number, figure, symbol, or indicator that is smaller than the typical line of type and is placed slightly above it (superscript) or below it (subscript) is referred to as a superscript or subscript (subscript).

Which technique is applied when the item needs to be destroyed?

It is possible to designate a method that will be executed right before the trash collector completely destroys an object. To make sure that an object terminates correctly, utilize the finalize() method.

To know more about subscripts visit:-

https://brainly.com/question/14291092

#SPJ4

The comparison of the present state of a system to its baseline is known as what?
Question 4 options:
a. Baseline reporting
b. Compliance reporting
c. Baseline assessment
d. Compliance review

Answers

Baseline reporting is the process of comparing the current state of a system to its baseline.

What is the name for a network that is purposefully vulnerable?

A honeynet is a network that has been intentionally set up with flaws and is hosted on a phony server to draw in hackers. The main goal is to simulate assaults in order to test network security.

What alternative term would you use to describe a security weakness?

A security vulnerability is a weak point, fault, or mistake discovered in a security system that could be used by a threat agent to penetrate a protected network.

To know more about Baseline visit :-

https://brainly.com/question/30193816

#SPJ4

A new resident in Virginia desiring to register his / her vehicle must obtain a vehicle ____________ certificate and verification of the vehicle ______________ number.

Answers

The starting system enables the driver to switch on an electric motor, solenoid switch, wiring, and battery by turning the ignition key. The lighting, safety systems, and accessories are all powered by the accessory circuits.

What are danger lights used for?

The danger lights on your car perform a crucial job in terms of safety. These lights serve as a warning to other vehicles when used properly. Most of the time, when you flash your danger lights, other drivers assume that your car is stationary and that they should avoid it.

What do yellow warning lights do?

When driving on slick roads, yellow or amber lights frequently signal a lower-level hazard or warning, such as the activation of the traction control system. White, blue, and green lights just indicate the activation of a device, such as the headlights.

To know more about accessories visit:-

https://brainly.com/question/28082899

#SPJ4

For this assignment, you will create a calendar program that allows the user to enter a day, month, and year in three separate variables as shown below.

Please enter a date
Day:
Month:
Year:
Then, your program should ask the user to select from a menu of choices using this formatting:

Menu:
1) Calculate the number of days in the given month.
2) Calculate the number of days passed in the given year.
If a user chooses option one, the program should display how many days are in the month that they entered. If a user chooses option two, the program should display how many days have passed in the year up to the date that they entered.

Your program must include the three following functions:

leap_year: This function should take the year entered by the user as a parameter. This function should return 1 if a year is a leap year, and 0 if it is not. This information will be used by other functions. What is a Leap Year? (Links to an external site.)
number_of_days: This function should take the month and year entered by the user as parameters. This function should return how many days are in the given month. (Links to an external site.)
days_passed: This function should take the day, month, and year entered by the user as parameters. This function should calculate the number of days into the year, and return the value of number of days that have passed. The date the user entered should not be included in the count of how many days have passed.
Hints
Start by defining your variables, using comments. You will need a separate variable for day, month, and year that store numbers input from the user.
Make sure to name your three functions exactly as they are named above, and pass the parameters exactly in the order specified below:
leap_year(y)
number_of_days(m, y)
days_passed(d, m, y)
Once you have a function that calculates whether a year is a leap year, that function should be called within your number_of_days() function. February can have either 28 or 29 days, so your number_of_days() function needs to take into account whether or not it is a leap year.
Once you have a function that calculates the number of days in a given month, that function should be called within your days_passed() function. Different months have different numbers of days, so your days_passed() function needs to take into account what month of the year it is.

Sample Run 1
Please enter a date
Day: 5
Month: 5
Year: 1984
Menu:
1) Calculate the number of days in the given month.
2) Calculate the number of days passed in the given year.
1
31

Sample Output 1
Please enter a date
Menu:
1) Calculate the number of days in the given month.
2) Calculate the number of days passed in the given year.
31

Sample Run 2
Please enter a date
Day: 21
Month: 6
Year: 2016
Menu:
1) Calculate the number of days in the given month.
2) Calculate the number of days passed in the given year.
2
172

Sample Output 2
Please enter a date
Menu:
1) Calculate the number of days in the given month.
2) Calculate the number of days passed in the given year.
172

Answers

Answer:

hummm i have the same work i got a A

is this it is

Explanation:

For this assignment, you will create a calendar program that allows the user to enter a day, month, and year in three separate variables as shown below. Please enter a date Day: Month: Year: Then, your program should ask the user to select from a menu of choices using this formatting: Menu: 1) Calculate the number of days in the given month. 2) Calculate the number of days passed in the given year. If a user chooses option one, the program should display how many days are in the month that they entered. If a user chooses option two, the program should display how many days have passed in the year up to the date that they entered. Your program must include the three following functions: leap_year: This function should take the year entered by the user as a parameter. This function should return 1 if a year is a leap year, and 0 if it is not. This information will be used by other functions. What is a Leap Year? (Links to an external site.) number_of_days: This function should take the month and year entered by the user as parameters. This function should return how many days are in the given month. (Links to an external site.) days_passed: This function should take the day, month, and year entered by the user as parameters. This function should calculate the number of days into the year, and return the value of number of days that have passed. The date the user entered should not be included in the count of how many days have passed. Hints Start by defining your variables, using comments. You will need a separate variable for day, month, and year that store numbers input from the user. Make sure to name your three functions exactly as they are named above, and pass the parameters exactly in the order specified below: leap_year(y) number_of_days(m, y) days_passed(d, m, y) Once you have a function that calculates whether a year is a leap year, that function should be called within your number_of_days() function. February can have either 28 or 29 days, so your number_of_days() function needs to take into account whether or not it is a leap year. Once you have a function that calculates the number of days in a given month, that function should be called within your days_passed() function. Different months have different numbers of days, so your days_passed()

origin encountered an issue loading this page. please try reloading it – if that doesn’t work, restart the client or try again later. I have reinstalled it multiple times, but still have same issue. Any solution?

Answers

Accessing the Origin data folder and deleting the cached files there is one of the most effective fixes for the "Origin Encountered an Issue Loading this Page" error.

Why won't my Origin page load?

Do a Clean Boot and restart your modem and router. Check to see if your UAC is activated and configured to notify. Install the client by downloading the most recent version of Origin and running the setup file with administrative privileges. Specify the Origin in firewall and antivirus exclusions, and open the required ports.

How do I resolve Origin has trouble loading this page?

Try to access the Origin data folder and remove the cache files inside if you want to get rid of the "Origin Encountered an Issue Loading this Page" error.

What happens when the Origin cache is cleared?

Older content is replaced by new content after clearing the origin cache. This occurs as a result of the origin server having fresh data. Therefore, the proxy servers start to cache new content.

To know more about encountered visit:

https://brainly.com/question/30168732

#SPJ4

To change rows for which a specific condition is true, use the ____ command
a. ​CHANGE b. MODIFY c. UPDATE d. ​ALTER

Answers

Use the update command to modify any rows for which a specified condition is true. As a result, choice (c) is the appropriate response to the question.

In what command are the rows modified?

The existing records in a table can be changed using the SQL UPDATE query. To only update the chosen rows rather than all the data, we can use the WHERE clause with the UPDATE query.

What command should I use to change the data in a table?

ALTER is a Data Definition Language (DDL) statement and a SQL command used in Relational DBMS. ALTER can be used to modify the database's table's structure (like add, delete, drop indexes, columns, and constraints, modify the attributes of the tables in the database).

To learn more about update command visit:

brainly.com/question/15497573

#SPJ1

Using what you know about variables and re-assignment you should be able to trace this code and keep track of the values of a, b, and c as they change. You should also have a sense of any possible errors that could occur. Trace the code, and choose the option that correctly shows what will be displayed

Answers

According to the question, option a: 10 b: 17 c: 27 accurately depicts what would be revealed.

Which 4 types of coding are there?

It's usual to find languages that are chosen to write in an extremely important, functional, straightforward, or object-oriented manner. These coding dialect theories and models are available for programmers to select from in order for them to meet their demands for a given project.

Is coding difficult?

It is common knowledge that programming is one of the most difficult things to master. Given how different coding is from long - established teaching techniques, which would include higher education degrees in computer science.

To know more about Code visit :

https://brainly.com/question/8535682

#SPJ4

The Complete Question :

Using what you know about variables and re-assignment you should be able to trace this code and keep track of the values of a, b, and c as they change. You should also have a sense of any possible errors that could occur.

Trace the code, and choose the option that correctly shows what will be displayed.

1 var a = 3;

2 var b = 7;

3 var c = 10;

4 a = a + b;

5 b = a + b;

6 c = a + b;

7 console.log("a:"+a+" b:"+b+" c:"+c);

Computer file have name that conit of which two part?
bae file name and file name prefix
long file name and hort file name
bae file name and file creation date
bae file name and file name extenion

Answers

Windows file names consist of the file name, a period, and the file extension (suffix). A three- or four-letter shorthand known as the "extension" designates the type of file.

What is a file name the two parts of a filename?Windows file names consist of two parts: the file name and a three- or four-character extension that indicates the file type. These two sections are separated by a period. within costs. For instance, in the file name expenses.xlsx, the file extension is.xlsx.The file's extension informs your computer which programme created or can open the file and which icon to use. For instance, the docx extension instructs your computer to display a Word symbol when you examine the file in File Explorer and that Microsoft Word may open it.The majority of file name extensions work with many programmes that you have installed. The only thing that will change when you change a file's extension is the file name; nothing else will be altered.

To learn more about extension refer :

https://brainly.com/question/28578338

#SPJ4

gabriel just got hired to be in charge of all social media presence for Gibson's doughnut shop

Answers

Gabriel should be building deeper customer relationships and positive word-of-mouth communication. Building deeper customer relationships means creating a connection with the customers that goes beyond just selling them doughnuts.

It can involve getting to know them, understanding their needs and preferences, and creating a sense of community. By fostering deeper relationships with customers, Gibson's doughnut shop will be able to retain their customers and attract new ones through positive word-of-mouth communication. Positive word-of-mouth communication refers to when customers talk about their experiences with the shop to their friends and family, which can have a significant impact on the shop's reputation and success.

The missing part in the question is shown below.

Gabriel just got hired to be in charge of all social media presence for Gibson's doughnut shop. His two ultimate goals for the shop's social media presence (according to your text) should be building deeper customer relationships and

Post humorous content

Get more retweets

Responding to complaining customers

Get more followers

Positive word-of-mouth-communication

Learn more about social media, here https://brainly.com/question/29036499

#SPJ4

The process of sending print jobs from the print queue to the printer is called? a. spooling b. queuing c. redirecting d. printing.

Answers

Printing is the action of sending print jobs from the print queue to the printer.

Which of the following describes a print server's role?

By establishing a network connection with the server, computers may interact with nearby printers. The print server guards printers from overloads. It manages the allocation of ’s due to devices and queues them in order to maintain orderly operation and avoid overloading printer hardware.

The message is produced using the print() method to a standard output device, such the screen. The message can be a phrase or any other object, and the object will be converted to a string before it is presented on the screen.

To know more about Print server's, refer:

brainly.com/question/29738751

#SPJ4

c = 7

while (c > 0):
  print(c)
  c = c - 3

Answers

The three of the following will be printed c = 7, while (c > 0):, print(c), c = c - 3 are 0, 1, 7. The correct options are a, b, and g.

What is the output?

Input and output are terms used to describe the interaction between a computer program and its user. Input refers to the user providing something to the program, whereas output refers to the program providing something to the user.

I/O is the communication between an information processing system, such as a computer, and the outside world, which could be a human or another information processing system.

Given: c = 7 while(c > 0): print(c) c = c-3 In the first iteration: 7 is printed after that c becomes 4 Now 4 is greater than 0.

Therefore, the correct options are a. 0 b. 1 and g. 7.

To learn more about output, visit here:

https://brainly.com/question/14582477

#SPJ1

The question is incomplete. Your most probably complete question is given below:

Which three of the following will be printed?

c = 7

while (c > 0):

  print(c)

  c = c - 3

Group of answer choices

0

1

3

4

5

6

7

When checking to see whether a particular name is registered on the Internet, your computer accesses a database that is kept on a(n) ________ server.

Answers

Answer: DNS

Explanation:


1.Explain five measures that protect users in the computer laboratory (10mks)

Answers

This chapter covers safe lab techniques, fundamental workplace safety precautions, proper instrument usage, and computer disposal.

What security precautions are in place in the computer lab?

When you are through using the device, turn it off. Never connect external devices without first checking them for malware. Since there are numerous devices and they might rapidly overheat in a lab, it is important to maintain a cool temperature in the space.

What safety measures in laboratories are most crucial?

Put on safety lab gear: As soon as you enter the lab, make sure you are wearing PPE. Before entering the lab, put on a lab coat with long sleeves, closed-toe shoes, and safety goggles. Keep your hair long if you have long hair.

To know more about computer laboratory visit:-

https://brainly.com/question/14751939

SPJ1

If data takes up more than one line in a cell, ____.
a. you must manually reconfigure the cell height
b. some text will not appear
c. Word automatically wraps the text to the next line and increases the height of the row
d. Word moves the text into a new cell

Answers

c. Word automatically moves the text to the following line and makes the row taller.

Can you type while dragging the entry point to the a cell in a table to enter data?

Moving the entry point to a column and typing allow you to input data into a table.The easiest way to pick a specific area of a table is to drag the mouse pointer over the columns and rows.The insertion point changes to a new spot on the horizontal ruler when users press the Tab key, which is known as a tab stop.

How can I ignore several mistakes in Excel?

Launch your Excel workbook.Pick out the cell (and cells) that the error messages are displayed in.When the cells are chosen, click the caution icon which appears next to them.Choose Ignore Error from the drop-down menu.

To know more about Word visit:

https://brainly.com/question/28611

#SPJ4

To analzye various alternative scenarios, a manager would use _______.
a. the spreadsheet's 'what-if' capability
b. the graphing features of spreadsheet software
c. the reporting feature of a BI tool
d. a data visualization tool

Answers

The 'what-if' feature of the spreadsheet would be used by the management to assess numerous potential scenarios.

used to search through enormous amounts of data for hidden patterns that can be utilized to forecast future trends?

Large data sets are sorted through using a technique called data mining to find patterns and relationships that may be used to analyze data and find answers to business challenges. Businesses can foresee future trends and make more educated business decisions thanks to data mining techniques and tools.

Which of the following will be a fact measure in a data cube utilized at a chain retail establishment?

The revenue for a chain retail business is typically the fact measure in a data cube (example: Indiana's second-quarter revenue of $900 from sales of pants).

To know more about spreadsheet visit :-

https://brainly.com/question/8284022

#SPJ4

2. State eight typing keys (8mks)​

Answers

     On a keyboards, the main sequence is the central row where the keys are located. When beginning to write, you rest your fingertips on the home keys. F, D, S, and A are the main keys, and J, K, L, and ; (semicolon) are located on the right side of the keyboard.

Given the set of element {a, b, c, d, e, f} stored in a list, show the final state g of the list, assuming we use the move-to-front heuristic and

Answers

Self-Organizing list according to a certain sequence applying move-to-Front algorithm. Output of the different states of the list including the final state is shown.

Python code

from __future__ import print_function

#Define variables

inpt = 'abcdefacfbde'

seq = list('abcdef')

sq, p = [], seq[::]

ss = 0

if __name__ == '__main__':

   print("Self-Organizing Lists applying move-to-Front algorithm")

   print("Define sequence pattern: ", seq[:])

   print("")

   print("Access sequence")

   for s in inpt:

       ss+=1

       for x in seq:

 #applying move-to-Front algorithm

           idx = p.index(x)

           sq.append(idx)

           p = [p.pop(idx)] + p

           if p[0] == s:

 #output sequence

               print("seq:",ss, ": ", p)

               lst = (p[len(p)-1])

               sp = p

   sp.append(lst)

   print("Final state of the list: ", sp )

   

To learn more about Self-Organizing list see: https://brainly.com/question/6362941

#SPJ4

 

g Shift registers and counters use hardware _____________________ for their internal data storage.

Answers

A series of core registers coupled together to generate a clock-driven data shift is known as shift register counters. Johnson counters and ring counters are two of the most popular types of these.

What is the purpose of a shift register?

Shift registers are widely used in converters that convert parallel data to serial data or vice versa. Shift registers can also be employed as delay circuits and digital pulse extenders.

Can data be stored in a shift register?

A shift register is represented by a pair of terminals that are placed next to one another, vertically on either side of the loop boundary. When an iteration is finished, data is stored in the terminal on the right side of the loop, which has an up arrow.

To know more about shift register here:-

brainly.com/question/14096550

#SPJ4

The statement int[ ] list = {5, 10, 15, 20};
O initializes list to have 5 int values
O initializes list to have 20 int values
O initializes list to have 4 int values
O declares list but does not initialize it
O causes a syntax error because it does not include "new int[4]" prior to the list of values

Answers

Option 3 is correct ( initializes list to have 4 int values) The syntax here implies direct setup of integer array named list with 4 initial values. there is no need to mention size for this kind of syntax.

Describe an array.

An array is a group of related data items kept in close proximity to each other in ram. The sole way to retrieve each data element direct is using its index number, making it the most basic data structure.

How do arrays function?

A linear data structure called an array contains elements of the same data type in contiguous and nearby memory regions. Arrays operate using an index with values ranging from zero to (n-1), where n is the array's size.

To know more about array visit :

https://brainly.com/question/15048840

#SPJ4

Select the best reason to include height and width attributes on an tag.
A.they are required attributes and must always be included
B.to help the browser render the page faster because it reserves the appropriate space for the image
C.to help the browser display the image in its own window
D.none of the above

Answers

The best reason to include height and width attributes on a tag is to aid the browser in rendering the page more quickly since it reserves the proper space for the image.

Which of the following justifications for adding height and width attributes to an IMG tag is the best?

Because omitting them will prevent the browser from displaying the image, width and height dimensions for images should always be coded. The page will load quicker and the browser will be more effective.

while entering values for an image's height and width attributes?

Height indicates an image's height in pixels. The term width = specifies an image's width in pixels. Use the to set values for an image's height and width attributes.

To know more about attributes visit:-

https://brainly.com/question/28163865

#SPJ4

A network administrator wants to ensure that connections between two servers are split according to usage. Which of the following devices can be used to best accomplish this?
A. bandwidth shaper
B. content switch
C. proxy server,
D. load balancer

Answers

The goal of a network administrator is to make sure that connections between two servers are divided based on utilization. The best way to do this is by using load balancer equipment.

What purposes serve load balancers?

The client's sole point of contact is a load balancer. The load balancer splits up incoming application traffic among many targets, like EC2 instances in various Availability Zones. Your application will be more accessible as a result. Your load balancer receives one or more listeners that you add.

What are load balancers and how do they differ?

The following types of load balancers are supported by elastic load balancing: application load balancers, network load balancers, and classic load balancers. These kinds of load balancers are compatible with Amazon ECS services. HTTP/HTTPS traffic is routed via application load balancers.

To know more about network administrator visit :-

https://brainly.com/question/14093054

#SPJ4

Joe, a user, wants his desktop RAID configured to allow the fastest speed and the most storage capacity. His desktop has three hard drives. Which of the following RAID types should a technician configure to achieve this?
A. 0
B. 1
C. 5
D. 10

Answers

For Joe, the technician has to set up RAID 0. By dividing data into many copies, RAID 0, also known as the striped volume or stripe set, is set up to provide the highest performance and greatest storage space.

How does a RAID function?

Data is duplicated across two drives in the array using RAID 1 (mirrored disks), which offers complete redundancy. The identical data is always stored on both drives at the same time. As long as one disk remains, no data is lost.

Why could someone utilize RAID?

Redundant Array of Independent Disks, or RAID, is a technology that combines many hard disks to increase performance. RAID configuration might affect how quickly your computer operates.

To know more about RAID visit:

https://brainly.com/question/14669307

#SPJ4

A technician is setting up a SOHO and has configured the WAP with WPA2, While configuring the network card on the laptop. WPA2 is not listed as an option. Which of the following should the technician do NEXT?
A. Install the latest wireless NIC software
B. Install the latest WAP firmware
C. Install the latest wireless NIC firmware
D. Install the latest WAP software

Answers

(B)  Install the latest WAP firmware

Installing the latest WAP firmware is the next step the technician does.

Choose two features from the list below that WPA2 on a wireless network offers.

On a wireless network, which of the following features is provided by WPA2? For wireless networks, Wi-Fi-protected access (WPA) offers user authentication and encryption.

To connect to your modem, which interface on a wireless SOHO router is used?

Network Interface Card (NIC) for Wireless: A wireless network interface card is required for every machine you want to add to the network. It is an Ethernet card with an integrated antenna that aids in connecting the device to the access point.

What encryption techniques are employed by Wi-Fi Protected Access 2 WPA2 to secure the wireless network?

When protecting privacy and integrity, the WPA2 protocol, which uses the Advanced Encryption Standard (AES) encryption and comes to protecting both privacy and integrity, the WPA2 protocol, which uses the Advanced Encryption Standard (AES) encryption together with robust message authenticity and integrity checks, outperforms the WPA protocol, which uses RC4-based TKIP. AES and AES-CCMP are examples of slang names.

To know more about integrity visit:

https://brainly.com/question/14710912

#SPJ4

Can someone explain this question & answer to me?

var list = [11, 35, 6, 0];
var sum = 0;

for (var i = 0; i < list.length; i++) {
sum = sum + list[i];
}
sum = sum/list.length;
console.log(sum);

Answers

The code iterates through the list of numbers and adds them up.
The sum is then divided by the length of the list to get a percentage.
The code will iterate through the list of numbers and add them up.
The sum variable is then divided by the number of items in the list to determine the average value.

Match the term to its definition. 1 . Boot partition The process of installing a new version of software to improve performance 2 . File allocation system Section of a hard drive used for file storage 3 . Upgrade The process of putting software on the computer for use 4 . Installation Method of storing files used by Microsoft 5 . Device driver Section of the hard drive where the operating system program is stored 6 . NT file system Method of storing files used by many different types of computers 7 . Partition Two separate standards used together that define how data is sent and received across a network 8 . System partition Section of the hard drive where the boot loader program is stored 9 . Transmission Control Protocol/Internet Protocol Program that controls a piece of hardware

Answers

A computer is an electronic device that transforms raw data and outputs information.

What is the purpose of electronic computer?Nearly all cutting-edge scientific tools in the realm of modern science use electrical technology. Computers are frequently utilised abroad to facilitate testing, production, and design. Chinese researchers also use electronic computers to do a vast number of difficult computations that are beyond the capacity of humans.These digital computers may be categorised into four groups based on the size and nature of the device: Micro, Mini, Mainframe, and Super computers.A computer is an electronic device that converts unprocessed data into information. An electrical device that takes data as input and changes it in response to a set of specialised instructions known as programmes to create the required output (referred to as Information).

Matched the term to its definition :

1 . NT file system : Method of storing files used by Microsoft

2 . Installation : The process of putting software on the computer for use

3 . Boot partition : Section of the hard drive where the boot loader program is stored

4 . Upgrade : The process of installing a new version of software to         improve performance

5 . File allocation system : Method of storing files used by many different types of computers

6 . Transmission Control Protocol/Internet Protocol : Two separate standards used together that define how data is sent and received across a network

7 . Device driver : Program that controls a piece of hardware

8. Partition : Section of a hard drive used for file storage

9. System partition : Section of the hard drive where the operating system program is stored

Learn more about computer refer to :

https://brainly.com/question/24540334

#SPJ4

______ is a set of function and call programs that allow clients and servers to intercommunicate. Select one: a. IaaS b. SQL c. API d. Middleware

Answers

Clients and servers can connect with one another thanks to the IaaS suite of function and call programs. (Selection a)

Is there such a thing as intrapersonal?

A key concept in psychology is what is known as the intrapersonal, which refers to internal elements that affect a person, such as their attitudes, self-esteem, self-regulation, and decision-making. The word intrapersonal communication frequently makes use of it.

Are those who are intrapersonal intelligent?

Knowing one's inner self, including one's sentiments, range of emotional reactions, thought processes, and capacity for self-reflection, is a key component of the SELF SMART approach. We can take a step back and view ourselves objectively thanks to this intellect.

To know more about Intercommunicate visit:

https://brainly.com/question/8178248

#SPJ4

To accomplish self-regulation, a highly complex and integrated communication control system or network is required. This type of network is called a(n)

Answers

A very intricate and comprehensive communication control system or network is needed to achieve self-regulation. A feedback control loop is the name for this kind of network.

The homeostatic control system is what?

Homeostasis controls an organism's internal environment and upholds a steady state of variables like pH and temperature.

Why is it referred to as homeostasis?

Homeostasis, which derives from the Greek meanings for "same" and "steady," is any method used by living creatures to actively maintain the relatively consistent conditions required for survival.

To know more about control system visit:-

https://brainly.com/question/28380332

#SPJ4

You are working on a computer with a host name of nntp-9.BoutiqueHotel. What is the NETBIOS name of this computer

Answers

NetBIOS domain name: The DNS domain name is often the parent domain of the NetBIOS domain name. For instance, the NetBIOS domain name is contoso if the DNS domain name is contoso.com.

Windows 10: Where can I locate my NetBIOS name?

You may verify NetBIOS and your Active Directory domain FQDN with a few straightforward command prompt commands. Information is seen when you type nbtstat -n. There will be numerous entries under Name, and one of the Group types will be NetBIOS.

How many characters may a fully qualified domain name (FQDN) have in total?

The host name and fully qualified domain name (FQDN) are limited to 63 bytes per label and 255 characters per FQDN, respectively.

To know more about DNS visit:-

https://brainly.com/question/17163861

#SPJ4

Other Questions
Walt Whitman called his most famous poem 'Song of Myself'. What does he actually say about who he is, and what do we learn about him Write a procedure ConvertToBinary that takes an input as a number from 0 to 16 (including 0 but not 16) and converts it to a binary number. The binary number should be returned as a list. A year in the modern Gregorian Calendar consists of 365 days. In reality, the earth takes longer to rotate around the sun. To account for the difference in time, every 4 years, a leap year takes place. A leap year is when a year has 366 days: An extra day, February 29th. The requirements for a given year to be a leap year are: 1) The year must be divisible by 4 2) If the year is a century year (1700, 1800, etc.), the year must be evenly divisible by 400 Some example leap years are 1600, 1712, and 2016. Define a function called OutputLeapYear that takes an integer as a parameter, representing a year, and output whether the year is a leap year or not. Then, write a main program that reads a year from a user, calls function OutputLeapYear() with the input as argument to determines whether that year is a leap year. coral code 30 PTS: Please help meYou can earn money by shoveling your neighbors' driveways in the winter and get paid $10 per hour. What is a function that would define this situation? Define the domain and range of this function and describe reasonable values for each. What is one of the main differences between a 401(k) and a Roth 401(k)? O A. A Roth 401(k) is offered by banks, while a 401(k) is offered by an employer. B. The amount you can contribute depends on your age. C. Contributions are taxed differently. D. You have to be different ages in order to withdraw money. The stomach is the only part of the alimentary canal with three muscular layers. Why does the stomach need three layers of muscle How does smoking weaken damage the respiratory system? The number cube with sides labeled 1 through 6 is rolled. Which events are likely to occur? Select all that apply. Multiple select question. A) rolling a 1 or a 2 B) rolling an odd number C) rolling an even number D) rolling a a number less than 6 E) rolling a number greater than 2 LMNP is a rectangle. Find the value of x and the length of each diagonal. 5 realizations , thoughts or ideas you can get from the graph Factor each polynomial completely.a. 5ac - 3ad + 5bc-3bdb. x^2n+ 6x^n +9 Put the letters into the correct order to make worlds. Then match them to the definitions oiffce psorin hlostipa ctotgae fcatyor gtues-hsoue1. A room or building where people work at desks..2. A small hotel that is not very expensive3. A building where people are sent if they have committed a crime..4. A building where people go if they ill..5. A building where people make things, often using machines6. A small attractive house in the country.*************1. A: Excuse me, can you tell me (1) the way to how far for the station?B: Yes, sure. (2) Take/Turn left at the traffic lights and you'll see the station (3) in front / byfront of you.2. A: Excuse me, (4) is it far / can you direct to the museum?B: No. Just go (5) straight off / straight on for about half a kilometre and the museum is(6) on / at your right. What is an example of mood in poetry? A moving sidewalk carries people at a rate of 400 feet per minute. How long is this moving sidewalk if it takes 4 minutes to travel from one end to the other? A 25 feetB 100 feetC 404 feet D 1600 feet *process A scale model of a building is 16 inches long. The actual building is 62 feet long. In the model, the door is 2.4 inches tall. How tall is the actual door? What did Roosevelt do during the war? The patients weight is 245 lbs. If the patient loses 1 kg every week for 5 weeks:a. How much will the patient weight in pounds?b. How much will the patient weight in kilograms? Is the area of an equilateral triangle is 9 root 3 cm square then the semi perimeter of the triangle is? Find the slope of the line passing through the points (3, 4) and (8, -3). Which of the following is NOT a service design technique used to increase service efficiency?a) Modularizationb) Increase customer interactionsc) Limit the optionsd) Delay customizatione) Automation