you want to create a rollover cable that has an rj45 connector on both ends. how should you connect the wires within the connectors?

Answers

Answer 1

Connect pins 1 and 8 together, pins 2 and 7, pins 3 and 6, and pins 4 and 5.On one end of a crossover cable, the T568A standard is used, and on the other, the T568B standard.

What kind of connector is commonly used for a rollover cable's ends? Connect pins 1 and 8 together, pins 2 and 7, pins 3 and 6, and pins 4 and 5.On one end of a crossover cable, the T568A standard is used, and on the other, the T568B standard.RJ45 Connectors are crimped into CAT5/CAT6 Cable Using a Crimping Tool for IP Camera Installations.Uses pass through and standard connectors.Utilizes the well-liked RJ45 Pass-Through Connectors.Removes the excess wires from the connection. A rollover cable, often referred to as a Yost cable, Cisco cable, or a Console cable, is a form of null-modem connection that connects a computer terminal to a router's console port.To further identify it from other kinds of network cabling, this cable is often flat and light blue in color.

To learn more about rollover cable refer

https://brainly.com/question/13438932

#SPJ4


Related Questions

write a python code for a calculator

Answers

I am sure you are using an editor but if doesn’t work you can search online python compiler .

Answer :

We know that a calculater should be able to calculate ( addition , subs traction, multiplication, division …etc)

# first takng inputs
num1 = float(input("Enter first number: "))
num2 = float(input("Enter second number: "))

# operations
print("Operation: +, -, *, /")
select = input("Select operations: ")

# check operations and display result
# add(+) two numbers
if select == "+":
print(num1, "+", num2, "=", num1+num2)

# subtract(-) two numbers
elif select == "-":
print(num1, "-", num2, "=", num1-num2)

# multiplies(*) two numbers
elif select == "*":
print(num1, "*", num2, "=", num1*num2)

# divides(/) two numbers
elif select == "/":
print(num1, "/", num2, "=", num1/num2)

else:
print("Invalid input")

Answer:

numb1 = int(input('Enter a number one: '))

Operation = input('Enter operation: ')

numb2 = int(input('Enter a number two: '))

def Calculator(numb1, Operation, numb2):

   if Operation == '+':

       print(numb1+numb2)

   elif Operation == '-':

       print(numb1-numb2)

   elif Operation == '×':

       print(numb1*numb2)

   elif Operation == '÷':

       print(numb1/numb2)

   elif Operation == '^':

       print(numb1**numb2)

   elif Operation == '//':

       print(numb1//numb2)

   elif Operation == '%':

       print(numb1%numb2)

   else:

       print('Un supported operation')

Calculator(numb1, Operation, numb2)

Explan ation:

Write a Python Calculator function that takes two numbers and the operation and returns the result.

Operation              Operator

Addition                    +

Subtraction               -

Multiplication            *

Division                     /

Power                       **

Remainder               %

Divide as an integer   //

Chang Co. issued a $59,700, 120-day, discounted note to Guarantee Bank. The discount rate is 11%. Assuming a 360-day year, the cash proceeds to Chang Co. are ______ .

Answers

Chang Co. issued a $59,700, 120-day discounted note to Guarantee Bank with an 11% discount rate. So, the cash proceeds to Chang Co. after issuing the discounted note to Guarantee Bank are $57,314.33.

To calculate the cash proceeds, we need to first find the total discount on the note.

Using the formula: Discount = Principal x Discount Rate x (Days to Maturity / 360), we can compute the discount amount as follows: Discount = $59,700 x 11% x (120 / 360) = $2,385.67.

Next, to find the cash proceeds, we subtract the discount from the principal: Cash Proceeds = Principal - Discount = $59,700 - $2,385.67 = $57,314.33.

Learn more about discount rate here: https://brainly.com/question/30032357

#SPJ11

what is an electronic device that manipulates information, or "data"​

Answers

Answer:

Computer

Explanation:

A computer is a very functional electronic device that has been helping people since decades ago. It has so many functions including the manipulation of data. It means the computer can control volumes of data on its own. Such manipulation means that it can store data in several locations and recover them. It also operates by processing data in a very quick manner.

Windows 1.0 was not considered to be a "true" operating system but rather an operating environment because _____.

it crashed a lot
it could only run one application at a time
it didn't use a pointing device
it provided a shell for MS-DOS

Answers

Answer:

it providrd a shell for MS-DOS

Explanation:

It basically was a shell to make MS-DOS different. MS-DOS was still the underlying operating system.

what is the u.s. federal government standard for digital signatures?

Answers

The U.S. federal government standard for digital signatures is defined by the Electronic Signatures in Global and National Commerce (ESIGN) Act and the Uniform Electronic Transactions Act (UETA). These laws establish the legal validity of electronic signatures in interstate and electronic commerce transactions.

Here are the key points of the U.S. federal government standard for digital signatures:
1. Consent: The signer must provide consent to use an electronic signature. This can be done through various means such as checking a box or typing their name.
2. Association: The electronic signature must be associated with the signer and the document being signed. This ensures that the signature cannot be easily copied or transferred to another document.
3. Integrity: The electronic signature must be tied to the document in such a way that any subsequent changes to the document are detectable. This ensures the integrity and authenticity of the document.
4. Reliability: The technology used to create the electronic signature must be reliable and secure, ensuring that the signature cannot be easily forged or tampered with.
5. Accessibility: The electronic signature process must be accessible to all parties involved, regardless of disabilities or technological limitations.
6. Audit Trail: There should be a record of the entire signing process, including the date and time of the signature, the IP address of the signer, and any other relevant information. This helps in verifying the authenticity of the signature if any disputes arise.
It's important to note that there are various technologies and platforms that can be used to meet the U.S. federal government standard for digital signatures, such as digital certificate-based solutions, biometric signatures, or secure electronic signature platforms.
By adhering to these standards, digital signatures provide a secure and legally recognized way to sign documents electronically, saving time, resources, and promoting efficiency in various sectors.

To learn more about Electronic Signatures
https://brainly.com/question/15020044
#SPJ11

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

Answers

Answer:Whether or not the existing memory modules support

Explanation:

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

Reference variables are defined like regular variables, except there is a(n) _________ in front of the name.

Answers

Reference variables are defined like regular variables, except there is a(n) & in front of the name.

What is a reference variable?A reference variable is an alternative name for an existing variable, or we could say that it gives the existing variable a new name.It needs to be initialized right away, can't be NULL, and can't be changed to refer to another variable. The & operator is used to declare reference variables.Reference is a constant pointer that can be used. Its initialization must occur during declaration, and its contents cannot be altered.Since it has already been implicitly de-referenced, retrieving the referenced value doesn't require the de-referencing operator (*).3Reference variables are defined like regular variables, except there is a(n) & in front of the name.

To learn more about reference variable refer to:

https://brainly.com/question/14290505

#SPJ4

In design and implementation of any _____ reasoning application, there are 4 Rs involved: retrieve, reuse, revise, and retain.

Answers

Answer:

case-based.

Explanation:

A software can be defined as a set of executable instructions (codes) or collection of data that is used typically to instruct a computer on how to perform a specific task and solve a particular problem.

Simply stated, it's a computer program or application that comprises of sets of code for performing specific tasks on the system.

A software development life cycle (SDLC) can be defined as a strategic process or methodology that defines the key steps or stages for creating and implementing high quality software applications. There are seven (7) main stages in the creation of a software and these are;

1. Planning.

2. Analysis.

3. Design.

4. Development (coding).

5. Testing.

6. Implementation and execution.

7. Maintenance.

A case-based reasoning application refers to a knowledge-based system that is designed and developed to use previous case scenarios (similar past problems) to interprete or proffer a solution to a problem.

In design and implementation of any case-based reasoning application, there are four (4) Rs involved: retrieve, reuse, revise, and retain.

FILL IN THE BLANK. _____ refers to computing devices everywhere with different sizes and power and accessed through multiple formats such as voice, touch, and gesture.

Answers

Answer: Ubiquitous computing

Explanation:

1.Choose the best answer.:
 a) Broadly, computers are of ................ purpose and ................ purpose
     (i) specific, general     (ii) specific, broad    (iii) precise, broad     (iv) None of them
 b) .................. computers works on continuous signals
 (i) Analog     (ii) Digital    (iii) PS/2        (iv) None of them
 c) ................ computers are the largest and most expensive digital computers.
 (i) Mainframe        (ii) Mini    (iii) Super        (iv) Apple 
d) .................. is the example of mainframe computer.
 (i) CYBER 205    (ii) IBM 3081        (iii) VAX        (iv) IBM 9375
 e) Macintosh is the OS used in .................. computer.
 (i) IBM        (ii) mainframe        (iii) super    (iv) apple
 f) .............. was mainframe computer brought first time to process census data in Nepal.
 i) IBM 1400        ii) IBM1401        iii) IBM1402 
g) ……… computer are used in hospital for Ultra Sound.
 i) Analog    ii) Digital        iii)Laptop    iv) Hybrid 
h) Nowadays, most powerful super commuter is Sunway taihulight from .......................
 i) India    ii) Germany         iii) China    iv) Nepal

Answers

Answer:

specific, generaldigitalminiCYBER 205IBMIBM1401digitalGermany

what is the main purpose of the circulatory system

Answers

The network of blood vessels and the heart that carries blood throughout the body. This system helps tissues get the right amount of nutrients, oxygen, and waste disposal.

The most important component of the circulatory system?

The primary function of the circulatory system is to carry oxygen, nutrients, and hormones to the muscles, tissues, and organs throughout the body. Another role of the circulatory system is to remove waste from cells and organs so that your body can eliminate it.

What is the primary goal of this quiz about the circulatory system?

The circulatory system's job is to provide nutrients and oxygen to body cells while returning carbon dioxide and oxygen-poor blood to the heart and lungs.

To know more about circulatory system visit:-

https://brainly.com/question/29259710

#SPJ4

Three teams (Team A, Team B, and Team C) are participating in a trivia contest. Let scoreA represent the number of correct questions for Team A, scoreB represent the number of correct questions for Team B, and scoreC represent the number of correct questions for Team C. Assuming no two teams get the same number of correct questions, what code segments correctly displays the team with the highest number of correct questions?

Answers

To make comparison between a set of variables, the if-else statement is usually employed, Hence, the correct code segment which displays the team with the highest number of correct questions is the option A.

First it checks if ScoreA > ScoreB ; - - - #1st blockIf True ; then check if ScoreA > ScoreC ;

Then TeamA will be the highest, if otherwise then it will be TeamC

If the 1st block is false, then ScoreB > ScoreA;then check if ScoreB > ScoreC ;Then TeamB will be the highest, if otherwise then it will be TeamC

Hence, the correct option is A.

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

Three teams (Team A, Team B, and Team C) are participating in a trivia contest. Let scoreA represent
Three teams (Team A, Team B, and Team C) are participating in a trivia contest. Let scoreA represent

Answer:

A

Explanation:

Match the items with their respective descriptions.

to navigate between worksheets

to protect a worksheet

to change the position of a worksheet

to rename a worksheet

select a password

arrowRight

drag the worksheet tab to the new position

arrowRight

double-click the worksheet tab

arrowRight

press Ctrl and Page Up or Page Down keys

arrowRight

Match the items with their respective descriptions.to navigate between worksheetsto protect a worksheetto

Answers

Answer:  Here are the correct matches:

Select a Password  ---->   to protect a worksheet

drag the worksheet tab to the new position  ---->   to change the position of a worksheet

double-click the worksheet tab  ---->   to rename a worksheet

Press Ctrl and Page Up or Page Down keys  ---->   to navigate between worksheets

Explanation:  Confirmed correct.  :)

Which of the following BEST describes the differences between sequential and event-driven programming?

Answers

Answer:

In sequential programming, commands run in the order they are written. In event-driven programming, some commands run in response to user interactions or other events.

Explanation:

Event-driven program : A program designed to run blocks of code or functions in response to specified events.

Sequential programming: The order that commands are executed by a computer, allows us to carry out tasks that have multiple steps. In programming, sequence is a basic algorithm: A set of logical steps carried out in order.

The missing options are;

A) In sequential programming commands run one at a time. In event-driven programming all commands run at the same time.

B) In sequential programming commands run faster than in event-driven programming.

C) In sequential programming each command is run many times in sequence. In event-driven programming all commands are run a single time as an event.

D) In sequential programming commands run in the order they are written. In event-driven programming some commands run in response to user interactions or other events.

This question is about sequential programming and event-driven programming.

Option D is correct.

To answer this question, we need to first of all define what the two terminologies in computer programming are;

Event-driven programming; This is a programming pattern whereby the program flow is determined by a sequence of events that arise from activities/interaction of the user or the system.

Sequential programming: This is a programming pattern whereby the program flow is determined by the sequence in which it was written.

Looking at the given options, the only one that fits perfectly into the description I have given above about sequential and event-driven programming is Option D.

Read more at; brainly.com/question/17970226

what are the answers for theses question?

what are the answers for theses question?
what are the answers for theses question?
what are the answers for theses question?
what are the answers for theses question?
what are the answers for theses question?

Answers

Answer: me no comprende coding

Explanation:

sorry

Hoá học 9 giải hộ mềnh vơiz:))

Ho hc 9 gii h mnh viz:))
Ho hc 9 gii h mnh viz:))
Ho hc 9 gii h mnh viz:))

Answers

Answer:

sorry di ko alam

In a problem-solving model, information is gathered to help identify different alternatives. *
true or false

Answers

Answer:

true

Explanation:

Screenplays do not need to include

Answers

Answer:

WGA Registration Numbers. ...

Copyright Numbers. ...

Personal Mailing Address and Multiple Contact Numbers. ...

Logline or Synopsis. ...

Character Breakdowns. ...

Opening Credit Sequence Slugline. ...

Scene Numbers. ...

Draft Color Pages.

Explanation:

This is what I found

a certain computer algorithm executes twice as many operations when it is run with an input of size as when it is run with an input of size (where is an integer that is greater than 1). when the algorithm is run with an input of size 1, it executes seven operations. how many operations does it execute when it is run with an input of size 25? group of answer choices 33,554,432 16,777,216 117,440,512 100,663,296

Answers

The common ratio is q = 2, as the method performs twice as many operations with an input of size k as it does with an input of size k 1.

How is a recurrence relation solved?

The Master Method can be used to solve these kinds of recurrence relations with ease. The values of a, b, and k are 2 for the recurrence relation T(n) = 2T(n/2) + cn. Here, log2(2) = 1 + logb(a) = k.

Recurrence order formula: what is it?

It is said that the difference between the highest and lowest subscripts of f(x) or ar=yk determines the order of the recurrence relation or difference equation. Example 1: A first order recurrence connection is represented by the equation 13ar+20ar-1=0.

To know more about input visit:-

https://brainly.com/question/30225231

#SPJ4

Is some sort of travel web page (Creativity is encouraged!)

Answers

Answer:

A website.

Explanation:

after class your professor tells you his office hours for the week so you can come by with questions. you don't have your phone or paper/pen, so you try to rehearse the days and times until you can write it down. what are you using and how much info do can you hold?

Answers

Answer: your mind

Explanation: The human brain contains billions of neurons, each forming thousands of connections. A single byte comprises 8 bits, and the human brain can store more than one quadrillion bytes of data – a petabyte.

1) If a security pays $133 in three years, its present value is
$100 if the interest rate is A) 13. B) 12 percent. C) 11percent. D)
10 percent.

Answers

If the interest rate is 12 percent, the present value would be equal to $100 because the future cash flow is discounted at a rate that matches the cash flow. Therefore, option B) 12 percent is the correct answer.

To determine the present value of a security that pays $133 in three years, we need to discount the future cash flow at a given interest rate.

Let's evaluate each option:

A) If the interest rate is 13 percent, the present value would be less than $100 because the future cash flow is discounted at a higher rate. This means that the value of receiving $133 in three years would be lower than $100 in today's terms.

B) If the interest rate is 12 percent, the present value would be equal to $100 because the future cash flow is discounted at a rate that matches the cash flow. This implies that receiving $133 in three years is equivalent to having $100 today.

C) If the interest rate is 11 percent, the present value would be greater than $100 because the future cash flow is discounted at a lower rate. This indicates that the value of receiving $133 in three years would be higher than $100 today.

D) If the interest rate is 10 percent, the present value would also be greater than $100 because the future cash flow is discounted at a lower rate. This suggests that the value of receiving $133 in three years would be higher than $100 today.

Based on the given options, the interest rate of 12 percent (option B) is the one that would result in a present value of $100 for the security that pays $133 in three years. Therefore, option B) 12 percent is the correct answer.

It's important to note that the present value calculation considers the time value of money and the interest rate. Different interest rates will yield different present values, reflecting the varying value of money over time.

Learn more about cash flow here:-

https://brainly.com/question/33655563

#SPJ11

Un electrodoméstico presenta un rendimiento del 70% y absorbe de la red eléctrica una energía de 2,3 kWh durante 45 minutos. Calcula La potencia que tiene el electrodoméstico

Answers

Answer:

1.6KWh

Explanation:

La fórmula de la eficiencia del consumo energético es,

eficiencia = (salida / entrada) x 100

La eficiencia del aparato es = 70%

potencia en = 2,3 KWh

potencia de salida = vatios x (45 minutos / 60) veces en horas.

70 = (vatios(45/60) / 2,3 x 10 ^ 3) 100

0.7 = vatios(45/60) / 2,3 x 10 ^ 3     //dividir ambos lados por 100

1610 = vatios(0.75)                           //multiplica ambos lados por 2300

potencia de salida = vatios (0,75) = 1610/1000 = 1,6KWh

who is springtrap from fnaf

Answers

Answer:

Yamato's here!

Explanation:

I can't quite explain so here is one on the internet-

Springtrap is a withered, decayed SpringBonnie suit, in which William Afton has died and his soul is now trapped. SpringBonnie was an animatronic functioning with "spring-locks", created alongside Fredbear, and one of the first animatronics created and used at a location in the FNAF storyline.

Have a nice day!

(^ -  ^ /")Xoxo, Yamato-

Springtrap is the main antagonist of Five Nights at Freddy's 3. He is a severely damaged, yellow rabbit animatronic with a dark green tint.

Who is Springtrap?

He is possessed by William Afton, the main antagonist of the Five Nights at Freddy's series.

Springtrap is a very dangerous animatronic. He is able to move around freely, and he will attack the player if they are not careful. He is also very strong, and he can easily break through doors.

Springtrap is a popular character in the Five Nights at Freddy's franchise.

Learn more about antagonist

https://brainly.com/question/3721706

#SPJ6

Stuart Martin, an employee of Davis and McIntyre, Inc., has worked very hard at being a good team player, and other workers compliment him on his willingness to work with others. However, Stuart was rated as a poor team player by his supervisor, who doesn't like him personally. This inaccurate perception is MOST LIKELY due to the supervisor's ________.

Answers

The supervisor's inaccurate perception of Stuart's performance as a team player is MOST LIKELY due to "confirmation bias."

In this scenario, we are presented with a situation where Stuart Martin, an employee at Davis and McIntyre, Inc., is known by his coworkers as a good team player. However, his supervisor rates him poorly due to personal dislike. We need to identify the term that best describes the supervisor's inaccurate perception of Stuart's performance. Confirmation bias is a cognitive bias where individuals tend to favor information that confirms their preexisting beliefs or values, while disregarding evidence that contradicts their beliefs. In this case, the supervisor's confirmation bias leads to an inaccurate evaluation of Stuart's performance. The supervisor focuses on any negative aspects of Stuart's work due to personal dislike, while overlooking the positive aspects that other coworkers see. This results in Stuart being rated as a poor team player, despite evidence to the contrary.

To learn more about confirmation bias, visit:

https://brainly.com/question/30404177

#SPJ11

MTTF is a file format developed by Microsoft commonly used on Windows systems; it offers file security, large volume size, large file size, and alternate data streams (ADS).

a. True
b. False

Answers

The correct answer is False

Explanation:

MTTF stands for Mean Time to Failure and it refers to the average time of a system or equipment before the first failure occurs. Moreover, this term is mainly used for systems that cannot be repaired, this means, the MTTF refers to the specific time a system will work properly before it fails and its useful life ends. In this context, MTTF is not a file format or a term related to files but this is related to the failure rate of computer systems and its useful life, which makes the statement False.

MSW LOGO Screen element which contains
the name of Program.

Answers

MSW LOGO Screen element that contains  the name of Program are:

Main ScreenCommander Window

What is the screen about?

The main screen is known to be called  a Graphic Screen as it is the place to make images or illustrations.

Note that A Commander Window is the place where one can send the turtle commands.

Therefore, MSW LOGO Screen element that contains  the name of Program are:

Main ScreenCommander Window

Learn more about Program from

https://brainly.com/question/1538272

#SPJ1

8. 4. 11: Take a Thing Out, Sort It and Reverse It. Codehs

I tried and i can't figure it out

Answers

Here's an example solution to the "Take a Thing Out, Sort It and Reverse It" problem on Codehs:

The Program

# Define a function that takes a list, removes an element at a given index,

# sorts the remaining elements, and returns the sorted list in reverse order.

def take_sort_reverse(lst, index):

   # Remove the element at the given index.

   removed_element = lst.pop(index)

   # Sort the remaining elements.

   sorted_list = sorted(lst)

   # Reverse the sorted list and return it.

  return sorted_list[::-1]

You can test the function by calling it with a list and an index, like this:

my_list = [4, 1, 3, 2, 5]

result = take_sort_reverse(my_list, 2)

print(result)  # should print [4, 3, 2, 1]

In this example, the function takes the list [4, 1, 3, 2, 5] and removes the element at index 2 (which is the value 3).

Then it sorts the remaining elements ([1, 2, 4, 5]) and returns the sorted list in reverse order ([4, 3, 2, 1]).

Read more about codehs here:

https://brainly.com/question/29405007

#SPJ1

No Hand WRITING please.

write an email sample that I can send to IKEA company asking them that I Want 30 offices for my company

Answers

Request for Purchase: Office Furniture for [Your Company Name]

Dear IKEA Team,

I hope this email finds you well. I am writing to inquire about the availability and pricing of office furniture for my company, [Your Company Name]. We are currently in the process of expanding our operations and are in need of 30 office setups to accommodate our growing team.

After careful consideration, we have identified IKEA as our preferred supplier for office furniture due to your reputation for high-quality products, functional designs, and competitive pricing. We believe that IKEA's range of office furniture will perfectly complement our workspace requirements and enhance the productivity and comfort of our employees.

To ensure a seamless and efficient purchasing process, I kindly request your assistance in providing the following information:

1. Availability: Please confirm the availability of 30 complete office setups, including desks, chairs, storage cabinets, and any additional accessories.

2. Pricing: Kindly provide a detailed quotation specifying the individual prices of each item and any applicable discounts for bulk purchases.

3. Delivery and Installation: We would appreciate information regarding delivery options, estimated delivery times, and the availability of assembly services, if applicable.

4. Warranty and After-Sales Support: Please provide details on the warranty coverage and any after-sales support services offered by IKEA.

I would be grateful if you could respond to this request at your earliest convenience, preferably within [mention a timeframe]. Should you require any further information or have any questions, please do not hesitate to contact me.

Thank you for considering our request, and we look forward to the opportunity to collaborate with IKEA in furnishing our offices.

Best regards,

[Your Name]

[Your Position]

[Your Company Name]

[Contact Information]

Learn more about accommodate here:

https://brainly.com/question/32492729

#SPJ11

Write a python program to check whether the number is divisible by 7. If its divisible, print its divisible otherwise find previous number and the next number which is divisible by 7​

Answers

f = int(input("Enter a number: "))

if(f%7==0):

   print("It's divisible by 7.")

else:

   if(f<7):

       print("7")

   else:

       print(str(f-(f%7))+", "+str(f+(7-(f%7))))

Other Questions
it staff members usually initiate requests for perfective and preventive maintenance. True or False? Read the following passage from Muir's "Calypso Borealis" and answer the question.After earning a few dollars working on my brother-in law's farm near Portage [Wisconsin], I set off on the first of my long lonely excursions, botanising in glorious freedom around the Great Lakes and wandering through innumerable tamarac and arbor-vitae swamps, and forests of maple, basswood, ash, elm, balsam, fir, pine, spruce, hemlock Identify and explain the tone of this passage. What specific words contribute to the tone? Then, explain how the tone of the passage would change if the words "burdensome labor" replaced the words "glorious freedom." Be sure to identify the new tone and explain how the changed words create that tone. Your response should be a paragraph of 35 sentences. Help its due today!Students will pretend they are Pres.of U.S. and write a diary entry stating/listing things a U.S. Pres. does not have power to do. Felipe transferred a balance of $3700 to a new credit card at the beginning ofthe year. The card offered an introductory APR of 5.9% for the first 4 monthsand a standard APR of 17.2% thereafter. If the card compounds interestmonthly, which of these expressions represents Felipe's balance at the end ofthe year? (Assume that Felipe will make no payments or new purchasesduring the year, and ignore any possible late payment fees.) La hermana de mi hermana es mi ________. a companies division registered a loss of -$2480 while producing 80 identical parts what was the last per part _________ transport is when something passes thru the cell membrane without any input of energy. define contagious define helpfulgive me a paragraph on helpful stuff How many moles are in 563.9 grams of arsenic? I need help with this question. Question is in image below. How to find the area of the base and volume 13 in.15 in. The Windows Virtual Desktop provides a way to access your computer-based resources on multiple computers without having to have them stored on the computer you are sitting at.Explain why this method could be a good choice for some businesses or may not be ideal for others.Consider things like availability, troubleshooting, licensing costs, et cetera. In its first month of operations, Danielle Company made three purchases of merchandise in the following sequence: (1) 143 units at $17, (2) 519 units at $18, and (3) 112 units at $19.Assuming there are 378 units on hand, compute the cost of the ending inventory under the FIFO method and LIFO method. Danielle uses a periodic inventory system When hitler assumed control if the Nazi party, he immediately What is the rate of change? Who did the Lakers beat today? 3/4 of x, if x= 15/28PLS HELP!!! increased bilirubin levels cause a skin discoloration called a grocery store has determined that in crates of oranges it receives some oranges arrive rotten. the following probability model represents the number of rotten oranges in the crates and the corresponding probabilities. what is the mean number of rotten oranges in a crate? round your answer to 2 decimal places. PLS HELP QUICK! I WILL MARK BRAINLIEST IF CORRECT! PLS EXPLAIN HOW YOU GOT YOUR ANSWER TOO!