What is made by the executive branch?

Answers

Answer 1

The President is supported by a wide range of Cabinets, executive departments, agencies, and government companies in the Executive branch in ensuring that American laws are upheld.

What decisions is the executive branch making? Makes laws; legislative (Congress, comprised of the House of Representatives and Senate)Executes legislation as an executive (president, vice president, Cabinet, most federal agencies)The Convention's delegates feared giving one individual an excessive amount of power.In the end, they established the executive branch and our current system of one President while incorporating a system of checks and balances into the Constitution.The President picks the leaders of all government agencies, including the Cabinet, in order to carry out and enforce the laws passed by Congress.The Vice President is a member of the Executive Branch and is prepared to take over as President if necessary.

To learn more about executive branch refer

https://brainly.com/question/718001

#SPJ4


Related Questions

contrast in color is important to slides for what reasons? visibility of font against the background emphasis show hierarchy and organization of ideas all of a-c none of a-c

Answers

When creating slides, it is essential to consider the visibility of the font against the background.

Adequate contrast in color ensures that the text stands out clearly, making it easy to read from a distance or by individuals with visual impairments. High contrast between text and background also helps prevent eye strain when viewing the slides for an extended period. It is crucial to choose appropriate colors that complement the content being presented while providing adequate contrast. Poor color contrast can negatively impact how the information is perceived and understood by the audience.

While showing hierarchy and organization of ideas are important considerations when designing slides, they are not directly related to the importance of contrast in color. Therefore, designers should strive to create visually appealing presentations that are easy to read and understand by using appropriate colors and contrasts.

Learn more about creating slides here:

https://brainly.com/question/23582282

#SPJ11

Discuss two business information systems that are used in two different sectors in a modern economy.

Answers

Explanation:

Two business information systems that are used in two different sectors in a modern economy are:

Transaction Processing System (TPS):

The Transaction Processing System (TPS) is a type of data system for capturing, storing, updating and recovering a company's data operations. Transaction systems often try to provide consistent response times to requests even if this is not as important as in real-time systems.

Management Information System (MIS)

MIS is the study of persons, technological systems and associations between them. Management Information Systems (MIS) Professionals at MIS allow businesses to profit maximally from staff, facilities and business process expenditure. MIS is a field of people with a focus on technological support.

INSTRUCTIONS RUN CODE GRADING HISTORY Write code to take a String input from the user, then print the first and last letters of the string on one line. Sample run: Enter a string: surcharge se

Answers

Answer:

Written in Python

userinput = input("Enter a string: ")

print(userinput[0]+userinput[-1])

Explanation:

The code is straight forward and self explanatory.

The first line prompts user for input

userinput = input("Enter a string: ")

This line gets and prints the first and last character of user input

print(userinput[0]+userinput[-1])

A(n) ________ will clear all user data and setting changes, returning the device's software to the state it was in when it left the factory.

Answers

Factory reset seems to be the best fit answer. This is a feature on most apple devices

How many built-in laser sounds does Scratch have?

A.
one

B.
five

C.
two

D.
seven

Answers

Answer:

Im pretty sure its 7 correct me if Im wrong.

Explanation:

Answer:

7 have a good day :)

Explanation:

The options on the Ribbon will____:

Answers

replace both the traditional menu bar and toolbars.

Hopefully, It's Correct... (ノ◕ヮ◕)ノ

the task is to ask the user for three numbers and find the average. which pseudocode gives you the comment outline for the task? ask the user for three numbers add the numbers divide by 3 print the average ask the user for three numbers, , add the numbers, , divide by 3, , print the average

Answers

The task is to ask the user for three numbers and find the average.

The pseudocode that gives you the comment outline for the task is ask the user for three numbers, , add the numbers, , divide by 3, , print the average

What is a Pseudocode?

This refers to the plain language that makes a description of the steps in an algorithm

Hence, we can see that The task is to ask the user for three numbers and find the average.

The pseudocode that gives you the comment outline for the task is ask the user for three numbers, , add the numbers, , divide by 3, , print the average

This helps to add the numbers and then find the average and then print the result as given above.

A simple algorithm for this would be:

Step 1: Enter three numbers

Step 2: Add the numbers

Step 3: Divide by 3

Step 4: Find the average

Step 5: End

Read more about pseudocodes here:

https://brainly.com/question/24953880

#SPJ1

algo de La historia de los productos tecnologicos

Answers

Answer:

La tecnología se define como la suma de técnicas, habilidades, métodos y/o procesos utilizados y utilizados en la producción de bienes, productos o servicios, o para lograr objetivos clave de la investigación científica.

Precisamente, la tecnología se define como la aplicación del conocimiento científico con fines prácticos, especialmente en la producción industrial. Un significado secundario de la palabra se refiere al desarrollo de dispositivos y mecanismos con fines científicos y está directamente relacionado con las artes aplicadas, las ciencias aplicadas o la ingeniería. A veces se refiere a la metodología que caracteriza tal proceso. En los últimos años ha existido una tendencia a que el concepto se refiera únicamente a la alta tecnología y / o tecnología informática, aunque básicamente no se limita a estas áreas. Por ejemplo, tanto la Estación Espacial Internacional o una computadora pueden ser tecnología, también pueden ser un abridor de botellas estándar. A menudo, el objeto de la tecnología con beneficios prácticos no es el producto de la investigación científica, sino el resultado de un descubrimiento accidental.

Is U.S. Cellular the same as T-Mobile?

Answers

U.S. Cellular vs. T-Mobile Coverage T-Mobile has coverage in 62% of the lower 48 states, about 51% greater than the main network of U.S. Cellular.

Is T-Mobile a partner of U.S. Cellular?

Verizon, T-Mobile, and AT&T Mobility all have roaming agreements with UScellular. With no additional fees, consumers can now roam at LTE or 5G speeds on these networks.

Having a U.S. Cellular phone and wanting a T-Mobile one?

Start by transferring your number(s), trading in your phone(s), and receiving a credit on your bill based on the market value of your qualified equipment. Then, once you get your final statement from your old carrier and it includes the Early Termination Fee (ETF) amount, send it to T-Mobile or submit it online at switch2tmobile.com.

To learn more about Early Termination Fee here:

https://brainly.com/question/30067410

#SPJ4

Write a function analyze_text that receives a string as input. Your function should count the number of alphabetic characters (a through z, or A through Z) in the text and also keep track of how many are the letter 'e' (upper or lowercase). Your function should return an analysis of the text in the form of a string phrased exactly like this: "The text contains 240 alphabetic characters, of which 105 (43.75%) are ‘e’."


Using function

Answers

Answer:

def analyze_text(sentence):

   count = 0

   e_count = 0

   for s in sentence:

       s = s.lower()

       if s.isalpha():

           count += 1

       if s == "e":

           e_count += 1

   return "The text contains " + str(count) + " alphabetic characters, of which " + str(e_count) + " (" + str(e_count*100/count) + "%) are ‘e’."

Explanation:

Create a function called analyze_text takes a string, sentence

Initialize the count and e_count variables as 0

Create a for loop that iterates through the sentence

Inside the loop, convert all letters to lowercase using lower() function. Check each character. If a character is a letter, increment the count by 1. If a character is "e", increment the e_count by 1.

Return the count and e_count in required format

Describing the technologies used in diffrent generation of computer​

Answers

Windows 98, Windows XP, Windows vista, Windows 7, Windows 8 y Windows 10.

Answer:

Evolution of Computer can be categorised into five generations. The First Generation of Computer (1945-1956 AD) used Vacuum Tubes, Second Generation of Computer (1956-1964 AD) used Transistors replacing Vacuum Tubes, Third Generation of Computer (1964-1971AD) used Integrated Circuit (IC) replacing Transistors in their electronic circuitry, Fourth Generation of Computer (1971-Present) used Very Large Scale Integration (VLSI) which is also known as microprocessor based technology and the Fifth Generation of Computer (Coming Generation) will incorporate Bio-Chip and Very Very Large Scale Integration (VVLSI) or Utra Large Scale Integration (ULSI) using Natural Language.

Explanation:

How could each of the two-proposed changes decrease the size of an mips assembly program? On the other hand, how could the proposed change increase the size of an mips assembly program?

Answers

Based on the question attached, the Number of bits that is needed to address a register is 7 bits.

3.  How could the proposed change increase the size of an mips assembly program?

The two-proposed changes decrease the size of an mips assembly program because a lot of complicated operations will need to be put in place or implemented in one instructions instead of numerous instructions due to the lowered register leaking issue. The program's size will be therefore be lowered as a result of this issue.

The proposed change will increase the size of an mips assembly program because  The size of the instruction word will then be brought up or raised if the required bits are added to the opcode and that of the register fields, which will bring up the size of the programmed.

In  the MIPS register file;

The Number of MIPS registers = 128

The Number of bits needed = log₂128

The  Number of bits needed = 7 bits

So Increasing number bits for opcode will be = (6 + 2)

                                                                       = 8

Therefore the answers to question one:

1. R-type instruction

Op-code = 6 bits

rs = 5 bits

rt = 5 bits

rd = 5 bits

shamt = 5 bits

funct = 6 bits

Hence, the size of the opcode field will be go up by two bits, to eight bits and the size of the rs ,rt, and rd fields is also go up to 7 bits.

For question 2 which is I-type instruction, there is:

Op-code = 6 bits

rs = 5 bits

rt = 5 bits

Immediate = 16 bits

Hence, The size of the opcode field will also go up by two bits, to eight bits and the size of the rs, rt  fields will is also go up to 7 bits.

Therefore, Based on the question attached, the Number of bits that is needed to address a register is 7 bits.

Learn more about program from

https://brainly.com/question/14897427

#SPJ1

See full question below

Assume that we would like to expand the MIPS register file to 128 registers and expand the instruction set to contain four times as many instructions. 1. How this would this affect the size of each of the bit fields in the R-type instructions? 2. How this would this affect the size of each of the bit fields in the I-type instructions? 3. How could each of the two proposed changes decrease the size of an MIPS assembly program? On the other hand, how could the proposed change increase the size of an MIPS assembly program?

Define input device

Answers

Answer:

An input device is computer hardware which is used to enter data for processing.

PC Shopping Network may upgrade its modem pool. It last upgraded 2 years ago, when it spent $115 million on equipment with an assumed life of 5 years and an assumed salvage value of $15 million for tax purposes. The firm uses straight-line depreciation. The old equipment can be sold today for $80 million. A new modem pool can be installed today for $150 million. This will have a 3 -year life, and will be depreciated to zero using straight-line depreciation. The new equipment will enable the firm to increase sales by $25 million per year and decrease operating costs by $10 million per year. At the end of 3 years, the new equipment will be worthless. Assume the firm's tax rate is 35 percent and the discount rate for projects of this sort is 12 percent. What are the Free Cash Flows, the NPV and IRR of the replacement project? Note: There is double jeopardy on this problem. If you miss a free cash flow, you will miss the NPV and the IRR. (6 points) FCF 0

= FCF 1

= FCF 2

= FCF 3

= NPV= IRR=

Answers

The replacement project involves upgrading the modem pool of PC Shopping Network. The old equipment was purchased 2 years ago for $115 million, has a 5-year assumed life, and a salvage value of $15 million.

The old equipment can be sold today for $80 million. The new equipment can be installed for $150 million and has a 3-year life. The new equipment is expected to increase sales by $25 million per year and decrease operating costs by $10 million per year. The tax rate is 35% and the discount rate is 12%. We need to calculate the Free Cash Flows (FCFs), the Net Present Value (NPV), and the Internal Rate of Return (IRR) of the replacement project.

To calculate the FCFs, we need to determine the cash inflows and outflows associated with the project. In this case, the cash inflows are the increase in sales ($25 million) and the decrease in operating costs ($10 million) each year. The cash outflows include the initial investment in the new equipment ($150 million) and the tax savings resulting from depreciation expense. By subtracting the cash outflows from the cash inflows for each year, we can calculate the FCFs.
The NPV of the project is the present value of the FCFs, discounted at the given rate of 12%. By summing up the present values of the FCFs, we can calculate the NPV. If the NPV is positive, the project is considered financially viable.
The IRR is the discount rate at which the NPV of the project becomes zero. It represents the project's internal rate of return or the rate of return that the project is expected to generate. The IRR is calculated iteratively until the NPV reaches zero.
To obtain the specific values of FCF0, FCF1, FCF2, FCF3, NPV, and IRR, the calculations need to be performed based on the given information and formulas for each year.

learn more about salvage value here

https://brainly.com/question/28387066



#SPJ11

How is video compression accomplished?
Video compression works by making the pixel size smaller.
Video compression works by removing the sound.
Video compression works by smoothing the pixels.
Video compression works by removing unnecessary parts of frames

Answers

Video compression works by making pixels smaller, so A.

Answer:

A. Video compression works by making the pixel size smaller.

Explanation:

E2020!

Which statement about tensile stress is true? A. Forces that act perpendicular to the surface and pull an object apart exert a tensile stress on the object. B. Forces that act perpendicular to the surface and squeeze an object exert a tensile stress on the object. C. Forces that act parallel to the surface exert a tensile stress on the object. D. Forces that decrease the length of the material exert a tensile stress on the object.

Answers

Answer:

The correct option is;

A. Forces that act perpendicular to the surface and pull an object apart exert a tensile stress on the object

Explanation:

A material under tensile stress has axial forces tending to stretch the material and cause elongation. It is the force per unit area externally applied that results in stretching

The definition of tensile stress is the magnitude or amount of applied force on an elastic material divided by the cross-sectional area of the material perpendicular to the direction of the applied force

Therefore, the tensile stress comprises of forces that act perpendicular to a given surface pulling the sections apart.

Help me people ┐( ˘_˘)┌​

Help me people ( _)

Answers

Answer:
System application

Explanation:
Web browsers like Chrome or Go0gle are examples of system applications & have to be applicated into the system to start working unlike operating softwares like Linux or MacOS.


Hope it helps ⚜

A browser is an example of :

System application

The applications (apps) that are designed to help us perform different activities on a computer are called Software applications..

Please help, thanks! (simple question) I'm doing a project and need to ask two people what they think is the highest contributor to global warming. my phone is dead. What do you think is one of the greatest contributors to global warming? I have to make an app about the two things.

Answers

What I think the highest is carbon dioxide . Because we use a lot of CO2 in every single day . So image that for 365 . We use a lot of carbon dioxide . In which that is ruining our earth

____________________ sites are remote servers accessible with a browser that contain common collections of diagnostic tools such as ping and traceroute, plus some Border Gateway Protocol (BGP) query tools. Group of answer choices

Answers

Answer:

Looking glass

Explanation:

_____ sites are remote servers accessible with a browser that contain common collections of diagnostic tools such as ping and traceroute, plus some Border Gateway Protocol (BGP) query tools.

Looking glass

what is the minimum cable specification that supports 1000 mbps ethernet?

Answers

cat 3 & 4 only support 10 Mbps. cat 5 cable only supports 100 Mbps. cat 6 or 7 is required for bandwidth up to 10 Gbps.

What number will be output by the console.log command on line 7? *
2 points
Captionless Image

Answers

Answer:

The output is 100

Explanation:

See attachment for complete question

I'll be making reference to the attachment time to time.

On line 1 of the attachment, variable fizz was declared

On line 2, variable bop was declared

Variable bop was initialised to 10 on line 3

Variable fizz was initialised to 20 on line 4

On line 5, 100 was assigned to bop

On line 6, 200 was assigned to fix

The value of bop was printed on line 7.

Note that, the current value of bop is not 100 (as updated on line 5).

Hence, the output of the program at line 7 is 100

What number will be output by the console.log command on line 7? *2 pointsCaptionless Image

Based on the program command displayed in the console, the output displayed by the console.log command would be 100.

The variable bop is assigned a value of 10 based on the command in line 3

In line 5 however, an update has been made to the bop variable, and the variable has been update to 100.

The newly assigned varibale value on line 5 would be the value of the bop variable unless updated again.

Hence, the output would be 100.

Learn more : https://brainly.com/question/20304083

6. A small design agency you are consulting for will be creating client websites and wants to purchase a web server so they can host the sites themselves. How will you advise them on this purchase?

Answers

Answer:

Explanation:

The best way to advise the agency in this matter would be to help them completely understand the total cost of ownership of the server. This includes the server itself but many other factors as well. Such as any and all server software and application software that they will need, an IT server manager, facility costs, security costs, backup features. These are some of the main costs that they will be incurring but there may be more unforeseen costs. Therefore the best way to advise them is by providing all of this information so that they can make the most informed decision possible.

simple basic program

Answers

Answer:

Bionary

Explanation:

Which statement will remove 5:'softball' from the dictionary?

sports = {2:'football', 3:'soccer', 4:'volleyball', 5:'softball'}
sports.remove()

sports.pop()

sports.pop(5)

sports.remove('softball')

Answers

Answer:

sports.pop(5)

Explanation:

edg 2020

Answer:

sports.pop(5)

Explanation:

The museum ticket price should be :
$0 on Fridays with couponcode "FREEFRIDAY"
$10 on the weekends for everybody
On weekdays $5 for 18 years old and under and $10 otherwise.
A student wrote this conditional to set the price . For which case will the price NOT come out as indicated?

var price=10;

// Check the value of variables to decide the price to set

if (age <= 18 && day != "Saturday" && day != "Sunday") {
price = price / 2;
} else if (day == "Friday" && discountCode == "FREEFRIDAY"){
price = 0;
}

a. a minor on Friday with the discount code
b. an adult on Friday with the discount code
c. an adult on the weekend
d. a minor on the weekend
e. an adult on a weekday

Answers

Answer:

a. a minor on Friday with the discount code

Explanation:

Let's try and decipher the given code segment

Let's first look at the if part

if (age <= 18 && day != "Saturday" && day != "Sunday") {

              price = price / 2;

==> if a minor and a weekend then price is half = $5

Now look at the else part

else if (day == "Friday" && discountCode == "FREEFRIDAY"){

             price = 0;

}

This means if the visitor is NOT a minor and it is NOT a weekend if it is a friday, with a coupon then admission is free

Let's look at the answer choices and see what the logic flow is:

a. minor on Friday with the discount code
if (age <= 18 && day != "Saturday" && day != "Sunday")
All three parts of this condition are true so the statement price = price/2 is executed and price = 5. However, everyone with this coupon should get in free. So this part is incorrectly coded

b. an adult on Friday with the discount code
if part is False, else if part is true and price = 0 which is consistent

c. an adult on the weekend
if part is false, else if part is also false so price printed out is 10 which is consistent

d. a minor on the weekend
the if part is false and so is the else if part , so price is unchanged at 10. Consistent

e. an adult on a weekday
Both the if and else if parts are false, so price is unchanged at 10. COnsistent

Which two protocols manage neighbor discovery processes on IPv4 networks? a. ICMP and ARP b. IPv4 and IPv6 c. TCP and UDP d. BGP and OSPF.

Answers

The two protocols that manage neighbor discovery processes on IPv4 networks are ICMP and ARP.

Explanation:

ICMP (Internet Control Message Protocol) and ARP (Address Resolution Protocol) are two protocols used to manage neighbor discovery processes on IPv4 networks.

ICMP is used to diagnose network problems and send error messages. It is also used to discover the IP address of a device on the network.

ARP is used to map an IP address to a MAC address. When a device wants to send a packet to another device on the network, it needs to know the MAC address of the device. ARP resolves the MAC address of a device based on its IP address.

Together, ICMP and ARP manage the neighbor discovery processes on IPv4 networks. ICMP helps devices discover each other's IP addresses, while ARP helps devices map those IP addresses to MAC addresses.

To get similar answer on ICMP (Internet Control Message Protocol):

https://brainly.com/question/27961582

#SPJ11

is this statement true or false? today's hard drives have up to or more than 512gb of space.
true or false

Answers

The given statement "today's hard drives have up to or more than 512GB of space" is true. The amount of space on a hard drive is one of the most important specifications when considering a new drive.What is a hard drive?A hard drive is a non-volatile storage device that stores digital data on spinning disks. It reads data from the disk, stores data on the disk, and retrieves data from the disk.

A hard disk drive (HDD) and a solid-state drive (SSD) are the two types of hard drives that are currently available (SSD).To improve the performance of hard drives, they've grown in size over time. The first hard drive was 5 MB in size and 5.25 inches in diameter. Hard drives of up to 512 GB are currently available on the market. Hard drives with more than 512 GB of storage space are also available. Some hard drives have storage capacities of up to 20 TB. These hard drives are frequently utilized in data centers for large data storage.What is storage?The capacity of a device or system to store and preserve data is referred to as storage. Data storage is critical for both personal and business applications, and it comes in a variety of types, capacities, and speeds. For storing, processing, and transmitting data and information, various devices are utilized, including hard disks, solid-state drives, and USB drives.

To know more about statement visit:

https://brainly.com/question/17238106

#SPJ11

Answer:

True

Explanation:

in a cloud computing arrangement, if the customer has a contractual right to take possession of the software without significant penalty and the customer could run the software on its own, the costs are treated as

Answers

Answer:Purchased Intangibles

Explanation:

what are primary characteristics of the waterfall system development process? what is the rationale for using the term ""waterfall"" to describe it

Answers

The primary characteristics of the waterfall system development process include planning, analysis, design, implementation, testing, and maintenance.

Each phase must be completed before the next one can begin. The waterfall model assumes that each phase will be completed before moving on to the next, so it is a linear sequential approach.The rationale for using the term "waterfall" to describe it is that the model is structured as a sequence of phases that flow downwards like a waterfall.

Each stage must be completed before proceeding to the next one, much like water flowing downward in steps. When the process of software development is seen as a step-by-step, waterfall-style process, the term waterfall becomes more understandable.

Thus, The primary characteristics of the waterfall system development process include planning, analysis, design, implementation, testing, and maintenance.

Know more about waterfall model here,

https://brainly.com/question/30564902

#SPJ11

three computers were lined up in a row. the dell (d) was to the left of the viglen (v) but not necessarily next to it. the blue computer was to the right of the white computer. the black computer was to the left of the hewlett packard (hp) pc. the hewlett packard was to the left of the viglen (v). what was the order of the computers from left to right?

Answers

The order of the computers from left to right are-

Dell ;HP; Viglencolor; black white blueWhat is meant by the term arrangement?Arrangement numbers, also known as permutation numbers or merely permutations, are indeed the number of different ways a set of items can be ordered as well as arranged. An arrangement of things is simply a combination of them in general. A combination (sequence is ignored) or permutation gives the amount of "arrangements" of n items (order is significant). When dealing with permutation, one should consider both selection and arrangement.

For the given three computers -

dell (d) was to the left of the viglen (v).the blue computer was to the right of the white computerthe black computer was to the left of the hewlett packard (hp) pc.the hewlett packard was to the left of the viglen (v).

Thus, the order of the computer becomes from left to right; Dell ;HP; Viglen.

To know more about the arrangement, here

https://brainly.com/question/6018225

#SPJ4

Other Questions
An electron confined to a one-dimensional box of width 0.52 nm by infinite potential energy barriers emits a photon when it makes a transition from the third excited state to the ground state. Find the wavelength of the emitted photon (in nm). 2. Solve this system of equations.2x 4y = 10x + 5y = 40 if 7 f(x) dx = 8 1 and 7 f(x) dx = 5.6, 5 find 5 f(x) dx. 1 Why is water a good solvent?A. The hydrogen bonds in water provide a network for substances to dissolve into and become trapped.B. It is polar, and the positive and negative areas attract other polar molecules and pull them apart.C. It is nonpolar, and the positive and negative areas attract other polar molecules and pull them apart.D. The hydrogen bonds between water molecules are weak so they can break easily to bond to a substance that is dissolved in the water instead. I need to find the change in heat asap!! A population of tigers lives in Bangladesh. Over 50 years, the size of the tiger population increased. What best explains the increase in the size of the tiger population?A: a lot of tigers were born and none of them died.B: The tiger population is always increasing because no animal eats tigers. C: Fewer tigers were born than died. D: More tigers were born than died. 24. in motor vehicle crashes involving cellular telephone use, the overwhelming majority of cellular telephone users were in the striking vehicle and struck cars or other large objects that were in clear view of the driver.a. trueb. false PLZZZZZZZZZZZZZZZZZZZZZZZZZZZ HELLLLLLLLLPWater changes from state to state in the water cycle. Which of the following best describes the process of the water cycle, which takes water from the clouds and drops it on the earth in the form of snow, sleet, hail, or rain?A TranspirationB EvaporationC PrecipitationD Cloud Formation how much ice at a temperature of -10.0 c must be dropped into the water so that the final temperature of the system will be 34.0 c ? This living jumping spider and this fossil eurypterid both have body structures called chelicerae. Chelicerae are a body structure used for eating. what best explains why both species have chelicerae? the sales for which product type are most highly correlated with attendance? programs merchandise food You are being offered a choice of buying or leasing a new car. the purchase price is $42,471+u dollars, which can be financed at an apr of 6.66% over 4 years (and the car is expected to be worth $24,000 at the end of the 4 years) alternatively, you can lease the car for four years for $499 per month. show which offer is better. which of the following criteria pollutants result mainly from burning coal Line t intersects parallel lines 1 and 2 as shown below.According to the information provided, which of the following pairs of angles are not always congruent?a. same side exterior angles 2 and 7b.alternate exterior angles 1 and 7c.corresponding angles 3 and 7d.vertical angles 5 and 7 Based on the US auditing standards, who should be involved and who should be on the due diligence team considering the serious time constraints which exist for US audits? How are the due diligence requirements different for the US than under international auditing standards? The _________ is an arid region covering western Paraguay.PilomayoParanPantagoniaChaco A student club spends $78 to buy candy bars and sells them for $3 each to raise money. Construct an equation that models profit or loss for selling a given number of candy bars. Keilantra has $660 to spend at a bicycle store for some new gear and biking outfits. Assume all prices listed include tax.She buys a new bicycle for $488.20.She buys 2 bicycle reflectors for $11.17 each and a pair of bike gloves for $19.05.She plans to spend some or all of the money she has left to buy new biking outfits for $37.26 each.Write and solve an inequality which can be used to determine xx, the number of outfits Keilantra can purchase while staying within her budget. What does jem do that, to scout, symbolizes the end of his childhood?. Tell whether the shape appears to have zero lines, 1 line, or more than 1 line of symmetry. Select zero, 1, or more than 1. There is/are ? line(s) of symmetry.