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.

Answers

Answer 1

Answer:function ConvertToBinary(n) {

console.log(n.toString(2).split(''));

}

ConvertToBinary(13);

Explanation:


Related Questions

Some critics say that flash mobs: O A. exploit people's talents. O O B. should not be inclusive. C. cost too much money. D. invade public space. ​

Answers

Answer: D. invade public space.

Explanation:

Flash mob refers to the group of people who gather in a public place, and then perform for a brief time and then leave after they perform. The performance is typically meant for satire, entertainment, satire, or can be a form of artistic expression. An example of flash mob is people gathering to sing a song, choreography or people involved in a pillow fight.

Some critics of flash mobs believes that flash mobs invade public space and can sometimes be out of control when there are a large number of people who are participating.

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()

___ requires a password when connecting to your router and makes your wireless transmissions unreadable by hackers

Answers

Wi-Fi encryption (such as WPA2 or WPA3) requires a password when connecting to your router and makes your wireless transmissions unreadable by hackers. Wi-Fi encryption is a method of securing wireless communications by encoding the data being transmitted over the airwaves.

This encoding makes it difficult for anyone who intercepts the data to read or understand it. The two most common forms of Wi-Fi encryption are WPA2 (Wi-Fi Protected Access 2) and WPA3. WPA2 uses a process called Temporal Key Integrity Protocol (TKIP) to encrypt the data. TKIP generates a unique encryption key for each packet of data that is sent, making it difficult for hackers to crack the encryption.

WPA3 is the latest version of Wi-Fi encryption. It is more secure than WPA2, and it uses a process called Simultaneous Authentication of Equals (SAE) to encrypt the data.

Learn more about WPA2 here https://brainly.com/question/29588370

#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.

After reviewing device security logs, you learn that a malicious user in an airport terminal seating area was able to connect wirelessly to a traveling employee's smartphone and downloaded her contact list. Which type of attack has taken place

Answers

Answer:

This appears to be a type of wireless network attack known as a Man-in-the-Middle (MiTM) attack. In this type of attack, the malicious user can intercept and modify data passing between two parties. In this case, the malicious user intercepted the employee's data by connecting to her smartphone via a wireless connection.

Explanation:

An attacker has discovered that they can deduce a sensitive piece of confidential information by analyzing multiple pieces of less sensitive public data. What type of security issue exists

Answers

A data mining approach called an inference attack involves examining data to obtain knowledge about a subject or database for improper purposes.

What kind of application has the ability to intercept sensitive data?

Among the most frequent dangers to internet users is spyware. Once installed, it keeps track of login details, analyzes internet activities, and eavesdrops on confidential data. Typically, the main purpose of spyware is to collect passwords, financial information, and credit card numbers.

What approach may be used to safeguard sensitive data?

Any business that handles highly private information should think about encrypting it to guard against illegal access. To prevent data from being stolen or leaked, cryptographers encode the data using sophisticated algorithms and ciphers.

To know more about data mining visit :-

https://brainly.com/question/28561952

#SPJ4

You must perform preventive maintenance procedures using appropriate tools. What should you schedule to ensure that your hard drives perform optimally without regard for data integrity

Answers

You should schedule defragmentation to guarantee that your hard drives operate as efficiently as possible without respect to data integrity.

How Are Windows HomeGroups Operated?

The names and IP addresses of machines on the local network are determined by HomeGroups using the Peer Network Resolution Protocol (PNRP), which is based on IPv6. Then, computers can publish resources and make them accessible to other hardware.

Why should you perform the eight types of preventative maintenance?

The fundamental benefit of preventative maintenance checklists is that they aid in preventing unforeseen industrial maintenance. Due to the necessity to diagnose the issue, as well as get parts and repair instructions, unplanned maintenance necessitates that professionals spend additional time on the repair. Additional overtime expenses may result.

To know more about defragmentation visit :-

https://brainly.com/question/28150707

#SPJ4

When the terminals of a control transformer have to be linked by wire, the manufacture-recommended wire types and sizes should be used.

Answers

A control transformer is a transformer that steps down the voltage in order to supply electricity to a machine's or circuit's control devices. Technicians operating on the equipment are significantly safer thanks to the lower voltage.

What is the process of a control transformer?

A control transformer is made to deliver the recommended output voltage at maximum VA. The output voltage rises as the load falls. On the other hand, higher loads will lead to lower output voltages.

What distinguishes a transformer from a control transformer?

The isolation transformer shields the electrical equipment from interference from the power supply's harmonics while the control transformer supplies power for the control system during operation of the electrical equipment.

To know more about control transformer visit:-

https://brainly.com/question/4195445

#SPJ4

Which of these is not an example of a transition

Answers

Answer: post the picture

Explanation:

1. Take the picture

2. Post it on brainly

3. Get your answer

what type of movement does the output produce

Answers

It creates effect.
These effects include filters, delay, distortion, reverb, compressor, and more.

To achieve server scalability, more servers may be added to a configuration and make use of:
Choose matching definition
1. Inbound packets are traversing the active firewall and return traffic is being sent through the passive firewall
2. load balancers
3. RAID
Clustering
Load balancing

Answers

To achieve server scalability, more servers may be added to a configuration and make use of: 2. load balancers

How does a load balancer operate?

A load balancer serves as the "traffic cop" in front of your servers, distributing client requests among all servers equipped to handle them in a way that maximizes speed & capacity utilization and makes sure that no server is overloaded, which can result in performance degradation.

What is load balancing at Layer 4?

Without needing to see the content of messages, Layer 4 load balancing controls traffic based on network metadata like protocols and application ports.

To know more about  server scalability visit:

https://brainly.com/question/29869699

#SPJ4

true or false : a file must always be opened before using it and closed when the program is finished using it.

Answers

Answer:

I would say true. afile must be opened before using it

Which of the following examples is the result of mining raw data to produce useful information?
1.A printout of all sales taken from the register at the end of the day
2.An Excel spreadsheet listing all employees and their annual salaries in a random order
3.Raw data from questionnaires given at the mall
4.Netflix providing you with a list of videos you might enjoy

Answers

The example that is the result of mining raw data to produce useful information is Netflix providing you with a list of videos you might enjoy. This is because Netflix uses data mining techniques to analyze the data it has on users' viewing habits and preferences in order to make recommendations for new content. The other examples listed are not necessarily the result of data mining, although they may involve the use of data in some way.

Which of the following is not a benefit that can be provided by using IP telephony. A. Decrease network utilization. B.increase user productivity

Answers

Reduced network use cannot be achieved by using IP telephony. Technologies that exchange voice, fax, and other sorts of information via a multitude of protocols are known as "IP telephony" (Internet Protocol telephony).

WHAT IS IP telephony?

Technologies that exchange voice, fax, and other sorts of information via a multitude of protocols are known as "IP telephony" (Internet Protocol telephony). Typically, these technologies use the Public Switched Telephone Network (PSTN).

The call is sent as a sequence of packets over a LAN or the Internet to avoid PSTN fees.

In the middle to late 1990s, changes in the telephone and communications sectors were first influenced by the Internet and the TCP/IP protocol.

The Internet Protocol has essentially replaced all other data communication methods.

Today, all providers of communication services, whether fully or in part, employ IP infrastructure for their voice services. The bulk of firms have already switched from PSTN to VoIP for internal communications (Voice over IP).

Hence, Reduced network use cannot be achieved by using IP telephony.

learn more about IP TELEPHONY click here:

https://brainly.com/question/14255125

#SPJ4

Students who watch 5 or more hours of television score higher on tests. Please select the best answer from the choices provided T F

Answers

The statement "Students who watch 5 or more hours of television score higher on tests" is false.

What are the effects of watching television on students' academic performance?

Watching television for prolonged periods of time can have a negative impact on students' academic performance. Studies have shown that excessive television viewing is associated with poor academic performance, lower grades, and decreased attention span. This is because prolonged television viewing can lead to less time spent on homework, studying, and other activities that are essential for academic success. Additionally, the content of the programs that students watch can also have an impact on their academic performance.

What are the effects of watching television on children's cognitive development?

Excessive television viewing can have a negative impact on children's cognitive development. Studies have shown that children who watch television for prolonged periods of time have a harder time paying attention, have lower reading comprehension skills, and have lower academic achievement. Additionally, the content of the programs that children watch can also have an impact on their cognitive development. For example, programs with fast-paced action and violence can desensitize children to violence and make it harder for them to distinguish between fantasy and reality.

To know more about academic achievement visit:

brainly.com/question/29795187

#SPJ4

Complete Question is :

Students who watch 5 or more hours of television score higher on tests. Please select the best answer from the choices provided,True or  False.

You are working on a project that requires virtualizing an operating system (OS) for an end user to test an application. It has been requested that you use a type-2 hypervisor to accomplish this. Which of the below would fulfill that requirement

Answers

You are need to carry out this task using a type-2 hypervisor. You are engaged in a project that calls for virtualizing the kvm operating system.

What hardware is KVM?

A KVM switch is a piece of hardware that enables a user to operate several computers from one or more sets of keyboards, video displays, and mice. KVM is an acronym for "keyboard, video, and mouse."

Why is a KVM required?

In conclusion, a KVM is a device that enables rapid and simple switching between many PCs or servers from a single console (keyboard, monitor, and mouse configuration) for improved administration, cost- and space-saving, and increased efficiency. A KVM switch is frequently helpful in the following situations: Home Office. Small

To know more about KVM visit:

https://brainly.com/question/13439312

#SPJ4

the general syntax for accessing a namespace member is: namespace_name->identifier.
a, true
b. false

Answers

Answer:

Explanation:

The general syntax for accessing a namespace member is typically "namespace_name::identifier", using the scope resolution operator "::" instead of the arrow operator "->". This syntax can be used to access variables, functions, or other members that have been defined within a namespace.

For example, if a variable called "x" is defined within the namespace "MyNamespace", you could access it using the following syntax:

MyNamespace::x

Or if you have a function called 'myfunction' within the same namespace you could call it using

MyNamespace::myfunction();

Please note that this is the general syntax, some programming languages might have a slightly different way of accessing namespace members or even don't have namespaces.

A binary adder contains two separate circuits. One generates the sum, while the second generates the ______________.

Answers

The two circuits in a binary adder are independent. While the second produces the output of the decoding, the first generates the total.

What phrase is used to describe the construction of a complete PLC system?

Architecture. What phrase is used to describe the construction of a complete PLC system? Modules. In a PLC system, what are the components of the power source, processor, and other? Optocouplers.

Which text-based PLC programming language employs condensed, abridged instructions to express fundamental PLC operations?

PLCs use a programming language known as a ladder diagram. Ladder Logic is another name for it; its shorthand is abbreviated as LD. It is used in conjunction with programmable logic controllers.

To know more about binary adder visit :-

https://brainly.com/question/27392158

#SPJ4

2. ¿Cómo y para qué se debe trabajar en equipo?
DOY CORONA SI ME AYUDAN

Answers

Answer:

Objetivos: tanto grupales como individuales. Funciones: hay que definir al detalle de lo que se debe responsabilizar cada persona. También es importante establecer quiénes deben ir en ayuda del otro según sea la situación. Quién toma decisiones: el equipo debe saber quién toma las decisiones en cada momento.

Explanation:

espero y te ayude

Which task would you use the Ctrl plus F command

Answers

Answer:

Bookmark a tab

Hope this helps :)

Answer:

If you're in a document or in a web browser, pressing the Ctrl key + the F key will bring up a search box in the top right corner of the screen. You can then type in a keyword or phrase to find places where that word or phrase is used in the text, often helpful for locating relevant sections.

Explanation:

To insert an equation, click on the Object in the Text group on the Insert tab, then click Microsoft Equation 3.0 in the Object type box, and then click OK.

Answers

The statement which is "to add an equation, click on the 'Object' in the Text group on the Insert tab, then in the Object type box click Microsoft Equation 3.0, and then click OK" is true because it correctly depicts the way to insert an equation in MS Equation Editor embedded in MS word.

MS Word includes an Equation Editor that is used to insert common mathematical equations in the document. Using Equation Editor, it is easy to add complex equations by just picking symbols from a toolbar and typing variables and numbers. As an equation is written, Equation Editor automatically adjusts spacing, font sizes, and formatting in keeping with mathematical typesetting conventions.

"

Complete question:

To insert an equation, click on the Object in the Text group on the Insert tab, then click Microsoft Equation 3.0 in the Object type box, and then click OK.

True

False

"

You can learn more about MS Word at

https://brainly.com/question/20659068

#SPJ4

Your Core i5 fan has a four-pin connector, but your motherboard only has a single three-pin header with the CPU_FAN label. Which of the following will be the easiest solution to get the necessary cooling for your CPU ?
A. Plug the four-pin connector into the three-pin header.
B. Add an extra chassis fan.
C. Leave the plug disconnected and just use the heat sink.
D. Buy an adapter.

Answers

Connect the 3-pin header to the 4-pin connection. enables the fan's speed to be adjusted. However, the CPU FAN labeled three-pin header is the only one present on your motherboard.

What does a computer's CPU do?

A central processing unit, sometimes known as a CPU, is a piece of electrical equipment that executes commands from software, enabling a computer or other device to carry out its functions.

Why is CPU used? What is CPU?

A simple scale called AVPU can be used to quickly assess a patient's general state of awareness, responsiveness, or mental condition. It is utilized in emergency departments, regular hospital wards, pre-hospital care, and critical care units.

To know more about CPU visit:

https://brainly.com/question/16254036

#SPJ4

Which of the following is a portal that hosts online documentation, tutorials, and user forums for Microsoft products?
A) TechNet
B) MSN
C) MicroForums
D) NetInfo

Answers

TechNet is a website that provides user forums, tutorials, and online documentation for Microsoft products.

How does documentation apply to the workplace?

The term "HR documentation" refers to a collection of documents that organizations keep in order to offer proof, monitor changes, and present data that may help with decision-making. This paperwork often consists of event reports, information regarding firm activities, and personnel records.

What function does documentation fulfill?

Documentation may be a strong weapon in the fight against lawsuits and complaints. Documentation guarantees expectations and consent. It is useful to explain the thinking behind your decisions and how you or your client behaved in particular situations.

To know more about documentation visit:

https://brainly.com/question/14096715

#SPJ4

which device is connected to a port on a switch in order to receive network traffic?
a. Inline IDS
b. Anomaly monitor
c. Passive IDS
d. Behavioral monitor

Answers

To accept network traffic, an inline IDS device must be linked to a switch port.

What is IDS inline?

IDS and IPS on the network. Network sensors may be installed either inline or passively. When in "inline" mode, the sensor is positioned right in the path of network transmission. The sensor acts as a firewall, filtering out traffic.

In terms of network security, what is an inline attack?

Network equipment that is seen as essential to the operation of an enterprise network, such as routers, switches, and firewalls, is referred to as inline. It is normal for dropped packets or mistakes in the computing programs and processes to follow any malfunction or performance degradation of these devices.

To know more about inline IDS device visit :-

https://brainly.com/question/13148816

#SPJ4

Assume that you want to click on a link to obtain a Web page. The IP address for this link is not cached in your local host, so a DNS lookup is necessary to obtain the IP address corresponding to that link. Suppose that n DNS servers are visited before your host receives the IP address from DNS. The successive visits incur an RTT of RTT1 ,..., RTTn. Further suppose that the Web page contains one object(e.g. base file) but referencing 10 other objects on the same server, like images, audio, etc. Let RTT0 denote the RTT between the local host and the server containing objects above. Assuming zero transmission time of the objects, how much time elapses when the client clicks on the link until the client receives all the objects with:

(1) Non-persistent connection without parallel TCP connection

(2) Non-persistent connection with 4 parallel TCP connections

(3) Persistent connection without pipelining

(4) Persistent connection with pipelining

Answers

Answer:

3

Explanation:

because I just got a new phone I looked up the awaner it is 3

what happens when i expose a disk to magnetic fields?​

Answers

Answer:

When exposed to the powerful magnetic field of a degausser, the magnetic data on a tape or hard disk is neutralized, or erased. Degaussing is the guaranteed form of hard drive erasure, as such; it serves as the standard method of data destruction.

Explanation:

are learners under too much pressure to perform? prepared speech​

Answers

Answer:

Many parents want to help their children be the best they can be. However, some, parents put their children under too much pressure to perform. Being under such intense pressure can have serious consequences for kids.

Explanation:

Many parents want to help their children be the best they can be. However, some, parents put their children under too much pressure to perform. Being under such intense pressure can have serious consequences for kids.

However, some kids might be under too much pressure. Adults have also expressed concerns that kids today "can't be kids anymore" because they are pressured and expected to constantly perform well—such as getting into the most prestigious schools or getting the best scholarships.

School isn’t the only place where parents put pressure on kids. Parents might also put lofty expectations on their kids to perform well in sports, music, theater, or other activities.

"High-pressure parents" might insist that their kids practice constantly and perform well in competitions.2

Parents have different opinions and approaches to encouraging their kids. While high expectations can be healthy, placing constant pressure on children can be harmful. When kids feel like each homework assignment is going to make or break their future or that each soccer game could determine if they get a college scholarship, that pressure can have negative consequences.

Kids who feel that they are under enormous pressure to do well from parents and adults can experience consequences in multiple areas of their life, from their mental health to their sleep.

answer these guys thanks
nonsense answers well be reported
What are the different types of fiber connectors? Cite their advantages and disadvantages​

Answers

Answer:types of fiber connectors

Bionic Connector · Standard Connector (SC) · Ferrule Core Connector (FC) · ST Connector (ST) · SMA Connector · Lucent Connector (LC) · LC Duplex Coupler

Advantages:

Speed in internetsupport better healthconnect multiple deviceinternet reliability

Disadvantages

The optical fibers are difficult to splice, there are loss of the light in the fiber due to scattering. They have limited physical arc of cables. If you bend them too much, they will break. The optical fibers are more expensive to install, and they have to be installed by the specialists.

With the _______________________________ as a Service model, the cloud provider owns and manages all levels of the computing environment.

Answers

The largest segment of the cloud market is cloud application services, or Software as a Service (SaaS), and it is still expanding swiftly. Applications that are managed by a third-party provider are delivered via the web using SaaS.

What does cloud computing's SaaS, PaaS, and IaaS mean?

Infrastructure-as-a-service (IaaS), platform-as-a-service (PaaS), and software-as-a-service are the three primary categories of cloud computing as-a-service alternatives, and each one offers a different level of management for you (SaaS).

What does cloud computing PaaS mean?

Platform as a Service (PaaS) is a full-featured cloud environment that has all the servers, operating systems, networking, storage, middleware, tools, and other components that developers need to create, run, and maintain applications.

To know more about SaaS visit:-

https://brainly.com/question/11973901

#SPJ4

Which of the following is an older type of serial cable used for connecting modems, printers, mice, and other peripheral devices

Answers

RS-232 is an older type of serial cable used for connecting modems, printers, mice, and other peripheral devices.

Which of the following serial cables used to connect modems, printers, mouse, and other peripheral devices is an earlier model?It is a standard in the telecommunications industry that dates back to the 1960s. The RS-232 cable has a male DB-25 connector on each end. It is a 25-pin serial cable that is used to connect two DTE (Data Terminal Equipment) devices or a DTE to a DCE (Data Communications Equipment).It is used to transmit data over long distances, usually up to 50 feet. It is most commonly used for connecting modems, printers, mice, and other peripheral devices to computers. It is also used for point-to-point connections between two devices.The RS-232 cable is capable of transmitting asynchronous data at speeds up to 20,000 bps (bits per second). It is also capable of transmitting synchronous data at speeds up to 115,200 bps. RS-232 cables are available in a variety of lengths, from 3 feet to 50 feet. The cables are shielded to protect against electromagnetic interference (EMI) and radio frequency interference (RFI).Despite its age, the RS-232 cable is still used in many applications today. It is an inexpensive, reliable, and simple solution for connecting devices with serial ports. Interestingly, it is also used in some modern applications, such as for controlling robotic devices and for programming embedded systems.

To learn more about older type of serial cable refer to:

https://brainly.com/question/14019704

#SPJ4

Other Questions
Solve the following quadratic equation, leaving your answer in exact form:2e-8e +7= 0Pls can anyone help it would rrly help out Which of the statements below applies to the economic situation in Sub-Saharan Africa? Select all that apply. Sub-Saharan Africa is unable to attract foreign investment. Subsistence farming is no longer used. Economic development is hindered by weak government systems. Debt relief is needed. 39(2+1) - 2x (4+1)5/7 - Exit Ticket helppp me plss its due tonight!! heyy! ill give brainliest please help. what should i do today???????? i am board It takes 34 of an hour to paint a single shutter. It takes 9 hours to paint 12 pairs of shutters. The number of hours, y, that it takes to paint xshutters shows either a direct or inverse variation. What is the equation that relates x and y? NEED HELP LOLif i have an 80% in a class for the first semester and a 90% in a class for the second semester, what is my grade for the year? On July 4, 1863 the Confederates in Vicksburg surrendered to GeneralGrant after a siege that lasted about six weeks. What was so significantabout this surrender?The Confederates lost the Civil War.The Confederates now controlled the Mississippi River.The Union now had complete control of the Mississippi River.The Union won the Civil War. What is the main role of the court of appeals in Georgia ???making a ruling in a civil caseevaluating the ruling of a lower courtdeciding a sentence in a criminal caseassessing the constitutionality of a law For which values of x does each expression make sense? square root of x-2 over square root of x-3 Put 38200 in standard Form In ancient Greece, a well-known proverb warned, Nothing to excess. In other words, the Greeks believed things should be done in moderationnot too much and not too little. In a brief essay, explain how this philosophy of moderation is reflected in both myths. Support your answer with specific examples from the myths. The Myths "Phaethon, Son of Apollo" and "Daedalus and Icarus".Answer in paragraph form using 5-7 complete sentences.NO LINKS!!!! The following data are taken from the management accounting reports of Dancer Co.: Div. A Div. B Div. C Income from operations $1,800,000 $1,350,000 $1,350,000 Total service department charges 1,700,000 1,050,000 1,100,000If an incentive bonus is paid to the manager who achieved the highest income from operations before service department charges, it follows that: _________ 4 List the advantages and disadvantages of tropical forests and rainforests. Congressional organization is influenced by all of the following except:Answers:a) parliamentary rules of the House and Senateb) presidential directivesc) political partiesd) the committee system Find someone older than you whom you feel is successful in life and ask them how they got to where they are. Ask them for advice on how you can get to where you want to go. Take notes and thank them for their time and wisdom. Write your notes below.Include 3 URLs for websites that talk about how to be successful in the industry you want to pursue. What's the most important thing you learned from reading these articles? Nelly put the batch of pies in the oven at 6:17 AM when they go into the oven the internal temperature of the pies is 60 Fahrenheit the temperature increases at a rate of 2.5 Fahrenheit per minute if Nelly wants the internal temperature of the pie to reach 160 Fahrenheit at what time should she take them out of the oven? lacy work 15 hours last week she was paid $127.50 what is your hourly pay Which expression is equivalent to 12x2+x20