Answer:
10 days
Explanation:
because they have to go through all your history to see if any of that could of caused it
Answer to questions 1 is option D, answer to question 2 is option B, answer to question 3 is option D
Which logic gate will invert a single value
Answer:
Answer is. C. NOT abate
Explanation:
Complete the sentence about readability.
Color
should have a contrast ratio of four to one or lower
Color should have a contrast ratio of four to one or lower. The lowest contrast ratio should be 3:1.
What is a 4 5 1 contrast ratio?When one has a "normal" sized text or images of text, the required minimum contrast ratio is said to be 4:5:1. A large text or images of large text is known to have the minimum contrast ratio is 3:1.
Conclusively, the definition of color ratio is known to be a volumetric ratio that consist of all dark minerals to light in the case of igneous rocks.
Learn more about Color from
https://brainly.com/question/911645
Answer:
may be perceived differently in different countries
Explanation:
Edge
Describe Format Painter by ordering the steps Jemima should follow to make the format of her subheadings more
consistent
Step 1: Select the subheading with the desired format.
Step 2:
a
Step 3:
Step 4:
Step 5:
Step 6: Use Reveal Formatting to make sure formatting was copied.
Answer:
4,3,2,1
Explanation:
Answer:
Describe Format Painter by ordering the steps Jemima should follow to make the format of her subheadings more consistent.
Step 1: Select the subheading with the desired format.
Step 2:
✔ Navigate to the ribbon area.
Step 3:
✔ Go to the Clipboard command group.
Step 4:
✔ Click the Format Painter icon.
Step 5:
✔ Click and drag the icon on the second subheading.
Step 6: Use Reveal Formatting to make sure formatting was copied.
Explanation:
not needed
Qa Defind Networking and its importance to an organization.
Networking is crucial for an organization as it enables effective communication, collaboration and resource sharing among employees and external stakeholders.
Why is networking important for organizational success?Networking plays a vital role in organizational success by fostering connections and facilitating the flow of information and resources. It allows employees to collaborate, share knowledge, and leverage each other's expertise leading to increased productivity and innovation.
But networking extends beyond the organization, enabling partnerships, customer acquisition, and business opportunities. By establishing a robust network, organizations can tap into a diverse pool of talents, stay updated with industry trends and build a strong reputation within their respective sectors.
Read more about Networking
brainly.com/question/1326000
#SPJ1
Assume that the following variables contain the values shown:
numberBig = 100 wordBig = "Constitution"
numberMedium = 10 wordMedium = "Dance"
numberSmall = 1 wordSmall = "Toy"
For each of the following Boolean expressions, decide whether the statement is true, false, or illegal. Please be sure to explain why the answer is false or illegal.
Example: a. numberBig > numberSmall = True
Boolean Expression Your answer
a. numberBig > numberSmall
b. numberBig < numberMedium
c. numberMedium = numberSmall
d. numberBig = wordBig
e. numberBig = "Big"
f. wordMedium > wordSmall
g. wordSmall = "TOY"
h. numberBig <= 5 * numberMedium + 50
i. numberBig >= 2000
j. numberBig > numberMedium + numberSmall
k. numberBig > numberMedium AND numberBig < numberSmall
l. numberBig = 100 OR numberBig > numberSmall
m. numberBig < 10 OR numberSmall > 10
n. numberBig = 300 AND numberMedium = 10 OR numberSmall = 1
o. wordSmall > wordBig
p. wordSmall > wordMedium
Answer:
a. True (because 100 is greater than 1)
b. False (because 100 is not less than 10)
c. False (because 10 is not equal to 1)
d. Illegal (because you cannot compare a number to a string)
e. Illegal (because you cannot compare a number to a string)
f. True (because "Dance" comes after "Toy" in alphabetical order)
g. False (because "Toy" is not equal to "TOY")
h. True (because 5 * 10 + 50 = 100, and 100 is less than or equal to 100)
i. False (because 100 is not greater than or equal to 2000)
j. True (because 100 is greater than 10 + 1)
k. Illegal (because "AND" should be in all caps)
l. True (because 100 is equal to 100 or 100 is greater than 1)
m. False (because neither 100 nor 1 meet these conditions)
n. True (because 100 is not equal to 300 and 10 is equal to 10)
o. False (because "Toy" comes before "Constitution" in alphabetical order)
p. True (because "Toy" comes after "Dance" in alphabetical order)
what is the name of the program or service that lets you view e -mail messeges?
The program or service that allows you to view email messages is called an email client.
What is the name of the program?An email client is a software program or service that enables users to access, manage and view their email messages. It provides user-friendly interface for reading, composing and organizing emails.
Popular examples of email clients include Micro/soft Outlook, Gm/ail, Mo/zilla Thunderbird and Ap/ple Mail. These clients allow users to connect to their email accounts, retrieve messages from email servers and display them in an organized manner for easy viewing and interaction.
Read more about email client
brainly.com/question/24688558
#SPJ1
A _______ is one typed character.
-gigabyte
-byte
-megabyte
-kilobyte
-terabyte
Which of the following are advantages of automatic updates?
Answer:
a,b,d
Explanation:
a.they protect against viruses
b.they protect against hackers
d.they keep your computer running at peak performence
Answer:
They protect against viruses
Explanation:
#include using namespace std;void Swap(int x,int y); //prototypeint main(){ int num1, num2; cout << "Please enter two numbers to swap, the same numbers will quit." << endl; cin >> num1 >> num2; while (num1 != num2) { Swap(num1,num2); cout << "After swap, the numbers are " << num1 << " " << num2 << endl; cout << "Please enter two numbers to swap, "; cout << "the same numbers will quit." << endl; cin >> num1 >> num2; } cout << "Thanks!" << endl; return 0; }//***************************//This subroutine swaps two numbers//*****************************void Swap(int x, int y){ int temp; temp = x; x = y; y = temp;}1. Type in the above program as swap.cpp. Add a comment to include your name and date. Compile and run with different values.2. To find out why this is not working, add the following output statements to the swap function.a. cout << " beginning of swap" << x << " " << y << endl;b. cout << " end of swap" << x << " " << y << endl;Are the variables being swapped inside the swap function?3. Explain why this program is not working correctly.4. Fix the program so the swap will work. Compile and run and be sure the swap works.5. Submit a copy of the final listing and output. Also include a copy of the hierarchy chart for the program.
Answer:
Fix:
void Swap(int &x, int &y){
int temp;
temp = x;
x = y;
y = temp; }
See the explanation
Explanation:
1. swap.cpp
//Name: ABC Date: dd/mm/yyyy
#include
using namespace std;
void Swap(int x,int y); //prototype
int main(){
int num1, num2;
cout << "Please enter two numbers to swap, the same numbers will quit." << endl;
cin >> num1 >> num2;
while (num1 != num2) {
Swap(num1,num2);
cout << "After swap, the numbers are " << num1 << " " << num2 << endl;
cout << "Please enter two numbers to swap, ";
cout << "the same numbers will quit." << endl;
cin >> num1 >> num2; }
cout << "Thanks!" << endl;
return 0; }
//********************//This subroutine swaps two numbers // ********************
void Swap(int x, int y){
int temp;
temp = x;
x = y;
y = temp;}
The output of this program with num1 = 1 and num2 = 2 is:
Please enter two numbers to swap, the same numbers will quit. 1 2 After swap, the numbers are 1 2 Please enter two numbers to swap, the same numbers will quit. 1
1 Thanks!
Notice that the numbers 1 and 2 are not swapped correctly even when the Swap() method is called in the main() function.
The other numbers 1 and 1 are entered in order to quit the program.
2.
In this part first output statement a) is added to the start of Swap() method before swapping the numbers x and y and the output statement b) is added to the last after the set of operations performed to swap x and y.
void Swap(int x, int y){
cout << " beginning of swap " << x << " " << y << endl;
int temp;
temp = x;
x = y;
y = temp;
cout << " end of swap " << x << " " << y << endl; }
Lets say x = 1 and y = 2
The output of these two statements is:
beginning of swap 1 2
end of swap 2 1
This shows that the Swap() function is working correctly and swapping the two numbers x and y.
3.
The reason that the program is not working properly is that x and y are value parameters. They are like local variables and local to the Swap() function. So changes made to them have no effect on the calling functions arguments num1 and num2. That is why the result remains the same when this function is called in the main().
In these three statements of Swap() method:
int temp = x;
x = y;
y = temp;
temp is a local variable which is local to this Swap function
Similarly x=y; and y= temp statements make changes only in the local copy and not in the values of num1 and num2 which are passed to this function in main()
So for the above example where num1 = 1 and num2 = 2, the statement
cout << "After swap, the numbers are " << num1 << " " << num2 << endl;
displays:
After swap, the numbers are 1 2
This means their real values are printed as it is without swapping the values.
4.
The solution is to mark the parameters x and y of the function Swap() as reference parameters in the following way:
void Swap(int &x, int &y)
In this way the memory address of each argument num1 and num2 is passed to the Swap(). The Swap() uses this address to both access and change the values.
So Swap(num1,num2); function call passes the memory address the actual parameters.
For the reference parameter an ampersand (&) is used before the variables x and y of Swap method. Now any changed made to these variables will effect the calling function arguments num1 and num2. So if x and y are swapped then num1 and num2 are also swapped when this function is called in main().
So change the prototype of Swap function as:
void Swap(int &x,int &y);
Change the function definition as:
void Swap(int &x, int &y){
int temp;
temp = x;
x = y;
y = temp; }
Now the program gives the following output:
Please enter two numbers to swap, the same numbers will quit. 1 2 After swap, the numbers are 2 1 Please enter two numbers to swap, the same numbers will quit. 1 1 Thanks!
See now the numbers are correctly swapped. The program and its output is attached.
Observe ,which plunger exerts(produces) more force to move the object between plunger B filled with air and plunger B filled with water?
The plunger filled with water will exert more force to move an object compared to the plunger filled with air.
What is a plunger?Plunger, force cup, plumber's friend, or plumber's helper are all names for the tool used to unclog pipes and drains. It is composed of a stick (shaft) that is often constructed of wood or plastic and a rubber suction cup.
It should be noted that because water is denser than air, meaning it has a higher mass per unit volume. When the plunger is filled with water, it will have a greater overall mass and will thus be able to transfer more force to the object it is trying to move.
Learn more about water on:
https://brainly.com/question/1313076
#SPJ1
Take two equal syringes, join them with plastic tube and fill them with water as illustrated in the figure
Push the plunger of syringe A (input) and observe the movement of plunger B (output).
(a)
Which plunger moves immediately when pressing plunger A, between plunger B filled with air and plunger B filled with water?
answers for codeHS 2.6.6:finding images
You can view the solution for an venture in multiple ways: Through the Assignments page.
...
View Solution References by way of the Resources Page
Navigate to the Resources page on the left-hand sidebar.
Choose Solution References.
Click Switch Course and select which path you would like to view options for!
How do you get photos on CodeHS?Students can upload pix and different archives from their computer to add to their packages in the Code Editor.
...
Uploading a File
From the Code Editor, click on More > Upload.
Browse for the file you would like to add > Open.
Copy and paste the URL to use in your program.
Is CodeHS free?CodeHS is comfortable to make our comprehensive web-based curriculum available for free! You can start nowadays by way of creating an account, placing up classes, enrolling your college students and getting them started out on their very own CS pathway.
Learn more about codeHS here;
https://brainly.com/question/30607138
#SPJ1
Hi! I understand you need help with CodeHS 2.6.6: Finding Images. In this exercise, you're tasked with writing a program that searches for and identifies specific images using JavaScript and the CodeHS library. The key terms in this exercise include variables, loops, conditionals, and image processing.
1)First, you'll want to define variables to store the image and its dimensions. You can use the `getImage` function to obtain the image, and the `getWidth` and `getHeight` functions to determine the image's dimensions.
2)Next, use nested loops to iterate through the image's pixels. The outer loop represents the rows (y-axis), and the inner loop represents the columns (x-axis). This allows you to access each pixel in the image.
3)In each iteration, use conditionals to check if the pixel meets specific criteria. This might involve comparing the pixel's color, brightness, or another characteristic to a predetermined value or range. If the criteria are met, you can perform an action, such as modifying the pixel or recording its location.
4)Finally, once the loops have finished iterating through the image, display the results. This might involve drawing the image with the modified pixels or outputting the location of the found image.
5)By following these steps and incorporating variables, loops, conditionals, and image processing, you will create a program that effectively finds images as per the requirements of CodeHS 2.6.6. Good luck!
For such more question on JavaScript
https://brainly.com/question/16698901
#SPJ11
can you answer my intro to computer applications CIS-100 fron spring uma college
CIS-100 is an intro course covering various computer applications. Offered during Spring at UMA College, it equips students with necessary computer tech skills for their personal and professional lives.
What is computer applications?CIS-100 covers computer hardware, software, and operating systems.
In terms of Internet and Web: Overview of how the Internet works, network protocols, and effective use of web browsers and search engines.
Lastly, in terms of Productivity software: Use of word processing, spreadsheets, and presentation tools to manage documents. Database management introduces concepts like tables, fields, and records, as well as systems like Microsoft Access.
Learn more about computer applications from
https://brainly.com/question/24264599
#SPJ1
There must be security policies in place to set core standards and requirements when it comes to encrypted data.
a. True
b. False
John travels and writes about every place he visits. He would like to share his experiences with as many people as you can which mode of Internet communication can join use most officially to show and share his written work
It would probably be a blog.
Weblogs, often known as blogs, are frequently updated online pages used for personal or professional material.
Explain what a blog is.A blog, often known as a weblog, is a frequently updated online page that is used for commercial or personal comments. A area where readers can leave comments is usually included at the bottom of each blog article because blogs are frequently interactive.Blogs are informal pieces created with the intention of demonstrating thought leadership and subject matter expertise. They are an excellent approach to provide new material for websites and act as a spark for email marketing and social media promotion to increase search traffic.However, it wasn't regarded as a blog at the time; rather, it was just a personal webpage. Robot Wisdom blogger Jorn Barger first used the term "weblog" to describe his method of "logging the web" in 1997.To learn more about Blog refer to:
https://brainly.com/question/25605883
#SPJ1
what is the mean of debugging
Answer:
the process of identifying and removing errors from computer hardware or software
Explanation:
Essentially just fixing programming errors, mainly in coding or software
Please help me with the question in the picture
Note that the subnet mask fo rt the maximum number of hosts will be 255.255.255.224.
How is this so?The subnet mask for the maximum number of hosts would be 255.255.255.224 because 29 subnets require 5 bits for subnetting, leaving 3 bits for the host portion of the address (32 - 5 = 27; 32 - 27 = 5; 2^5 = 32; 32 - 2 = 30 usable hosts).
Each subnet can have 30 hosts.
To find the IP address of host 3 on subnet 6, we need to determine the starting address of subnet 6. Since each subnet has 30 hosts, subnet 6 would start at 227.12.1.160. Host 3 on subnet 6 would then have the IP address 227.12.1.162.
Learn more about subnet mask:
https://brainly.com/question/29974465
#SPJ1
Which of the following accurately describes a user persona? Select one.
Question 6 options:
A user persona is a story which explains how the user accomplishes a task when using a product.
A user persona should be based only on real research, not on the designer’s assumptions.
A user persona should include a lot of personal information and humor.
A user persona is a representation of a particular audience segment for a product or a service that you are designing.
A user persona is a fictionalized version of your ideal or present consumer. In order to boost your product marketing, personas can be formed by speaking with people and segmenting them according to various demographic and psychographic data and user.
Thus, User personas are very helpful in helping a business expand and improve because they reveal the various ways customers look for, purchase, and utilize products.
This allows you to concentrate your efforts on making the user experience better for actual customers and use cases.
Smallpdf made very broad assumptions about its users, and there were no obvious connections between a person's occupation and the features they were utilizing.
The team began a study initiative to determine their primary user demographics and their aims, even though they did not consider this to be "creating personas," which ultimately helped them better understand their users and improve their solutions.
Thus, A user persona is a fictionalized version of your ideal or present consumer. In order to boost your product marketing, personas can be formed by speaking with people and segmenting them according to various demographic and psychographic data and user.
Learn more about User persona, refer to the link:
https://brainly.com/question/28236904
#SPJ1
Comparator method compare should return ________ if the first argument is greater than the second argument. a positive int value. zero. a negative int value. a String.
Comparator method compare should return option A: positive int value if the first argument is greater than the second argument.
What is a positive int?The counting numbers or natural numbers, which are sometimes known as the positive integers, are said to be the numbers such as 1, 2, 3, and a lot more. Note that any figure that is said to be higher than zero is one that is considered positive.
Therefore, If an integer is more than zero, it is said to be positive; otherwise, one can say that it is negative. Zero is known to be characterized as being neither positive nor can it be known as negative.
Learn more about positive value from
https://brainly.com/question/25828920
#SPJ1
Wrire a code that display elements at indices 1 and 4 in the follwoing array.
var userArray = [1, 6, 41, 8, 24, 4];
Answer:
Console.log(userArray[1]);
Console.log(userArray[4]);
Explanation:
The programming language was not stated; however, the variable declaration implies JavaScript.
JavaScript prints using the following syntax:
Console.log(print-name);
Since, the code is to print some elements of array userArray.
First, we need to determine the index of the elements.
The indices are given as 1 and 4.
So, the code to print these elements is as follows:
Console.log(userArray[1]);
Console.log(userArray[4]);
Use a method from the JOptionPane class to request values from the user to initialize the instance variables of Election objects and assign these objects to the array. The array must be filled.
To use the JOptionPane class in Java to request values from the user and initialize instance variables of Election objects and assign them to an array, you can follow the steps given in the image:
What is the JOptionPane class
The code uses JOptionPane. showInputDialog to show a message box and get information from the user. IntegerparseInt changes text into a number.
After completing a process, the elections list will have Election items, and each item will have the information given by the user.
Learn more about JOptionPane class from
brainly.com/question/30974617
#SPJ1
three commonly used approaches to cloud computing are public cloud computing, private cloud computing, and cloud computing. True or False ?
True- three commonly used approaches to cloud computing are public cloud computing, private cloud computing, and cloud computing.
What is community cloud computing?Why are secure network connections essential? Read more about it in our eBook on cloud computing. The Cloud is an integral component of your ICT infrastructure. Get the file and read more. Unknowledgeable Medewerkers 24/7 Internet Security Glassvezel Network Dekkend. One or more community-based organizations, a third party, or a combination of them own, manage, and run it. As an illustration, our Indian government agency might share computing resources in the cloud to manage data. An example of a private cloud is a community cloud, which provides specialized infrastructure for businesses from a particular community with shared concerns about things like security, compliance, jurisdiction, etc. When it comes to cost-effectiveness, privacy, and security, it is the perfect answer.
To know more about cloud computing visit?
https://brainly.com/question/29617599
#SPJ1
Given input characters for an arrowhead and arrow body, print a right-facing arrow. Ex: If the input is: *
Answer:
Following are the code to this question:
b= input()#defining b variable for input character value
h= input()#defining h variable for input character value
b_width=6#defining b_width variable that holds an integer value 6
r1 = ' ' * b_width+h#defining r1 variable that calculates hash lines
r2 = b*b_width+h*2#defining r3 variable that calculates 6 asterisk and 2 hash line
r3 = b*b_width+h*3#defining r3 variable that calculates 6 asterisk and 3 hash line
print(r1)#print r1 variable value
print(r2)#print r2 variable value
print(r3)#print r3 variable value
print(r2)#print r2 variable value
print(r1)#print r1 variable value
Output:
please find the attachment.
Explanation:
In the given python code, three variable "b,h, and b_width" is declared, in which "b_width" holds an integer variable "6" and variable "b and h" is used to an input character value. In the next line, "r1, r2, and r3" is declared, that holds arrowhead values which can be defined as follows:
In the "r1" variable, it stores space with b_width variable and one h variable value.In the "r2" variable it stores b_width and 2*h variable value. In the "r3" variable it stores b_width and 3*h variable value.At the last, it prints the "r1, r2, and r3" variable value and for arrowheads, it follows the above program code.
Answer:
base_char = input()
head_char = input()
row1 = ' ' + head_char
row2 = base_char*6+head_char*2
row3 = base_char*6+head_char*3
print(row1)
print(row2)
print(row3)
print(row2)
print(row1)
Explanation:
you have a table for a membership database that contains the following fields: MemberLatName, MemberFirstName, Street, City, State, ZipCode and intiation fee. there are 75,000records in the table. what indexes would you create for the table, and why would you create these indexes?
A unique lookup table called an index is used to speed performance
What is lookup function?
Use the lookup and reference function LOOKUP when you need to search a single row or column and find a value from the same position in another row or column. As an example, let's say you have the part number for a car part but don't know how much it costs.
We employ we lookup since?
Use VLOOKUP when you need to search by row in a table or a range. For instance, you could use the employee ID to look up a person's name or the part number to check the price of a car part.
To know more about speed visit:-
https://brainly.com/question/17661499
#SPJ1
You are a sports writer and are writing about the world legend mushball tournament. And you are doing an article on the 2 wildcard teams the 2 teams with the best record who are not. Division? Leaders according to. The table shown which two teams are the wild card teams?
The two teams are not division leaders, but their records are impressive enough to get them to participate in the tournament. The teams' records are as follows: Team C with 8-3 record and Team D with a 7-4 record. These teams are the second-best teams in their respective divisions, and that is what gets them a spot in the tournament.
The table presented depicts a ranking of teams for a particular tournament. Wildcard teams are teams that do not lead their divisions but have the best records; they get to participate in the tournament. In this case, we will determine the two wildcard teams and their records based on the table.
The wild card teams in the world legend mushball tournament are Team C and Team D.Team C and Team D are the two wildcard teams in the tournament. They are selected based on their record, as shown in the table. Wildcard teams are often determined by the records of the teams.
The two teams are not division leaders, but their records are impressive enough to get them to participate in the tournament. The teams' records are as follows: Team C with 8-3 record and Team D with a 7-4 record. These teams are the second-best teams in their respective divisions, and that is what gets them a spot in the tournament.
The wildcard teams offer a chance to other teams that may not have made the playoffs a chance to show their skills. The top team in each division automatically qualifies for the playoffs, and the other spots go to the wild card teams. Wild card teams are often the teams that show resilience and a fighting spirit; they do not give up easily and always give their best.
For more such questions on tournament, click on:
https://brainly.com/question/28550772
#SPJ8
3
Drag each label to the correct location on the image.
An organization has decided to initiate a business project. The project management team needs to prepare the project proposal and business
justification documents. Help the management team match the purpose and content of the documents.
contains high-level details
of the proposed project
contains a preliminary timeline
of the project
helps to determine the project type,
scope, time, cost, and classification
helps to determine whether the
project needs meets business
needs
contains cost estimates,
project requirements, and risks
helps to determine the stakeholders
relevant to the project
Project proposal
Business justification
Here's the correct match for the purpose and content of the documents:
The Correct Matching of the documentsProject proposal: contains high-level details of the proposed project, contains a preliminary timeline of the project, helps to determine the project type, scope, time, cost, and classification, helps to determine the stakeholders relevant to the project.
Business justification: helps to determine whether the project needs meet business needs, contains cost estimates, project requirements, and risks.
Please note that the purpose and content of these documents may vary depending on the organization and specific project. However, this is a general guideline for matching the labels to the documents.
Read more about Project proposal here:
https://brainly.com/question/29307495
#SPJ1
When it comes to memory, why is it important to have enough storage space on a hard drive when using many RAM intensive programs?
Answer:
Memory and storage are important concepts to master in Information Technology. ... This type of memory is volatile which means that the actual data disappears when the computer loses power. Because memory needs to be much faster than storage, it is rather more expensive than storage per GB.
Explanation:
Use three or more sentences to explain to someone why they might need to use a virtual machine.
Answer:
Benefits of Virtualization
Reduced capital and operating costs.
Minimized or eliminated downtime.
Increased IT productivity, efficiency, agility and responsiveness.
Faster provisioning of applications and resources.
Greater business continuity and disaster recovery.
Simplified data center management.
Can someone tell me what's brainliest and how you can give it to someone?
Answer:
A brainliest is a best answer reward! If you think someone's answer is the best, you can choose them as the brainliest answer!! People above the rank Virtuoso need them to continure rising or to maintain their rank. :)
You can select a little grey crown on a person's answer. It should be next to a grey flag (report button). :)
Have an amazing day!!
Please rate and mark brainliest!!
If you buy $1000 bicycle, which credit payoff strategy will result in your paying the least
If you buy $1000 bicycle, the credit payoff strategy that will result in your paying the least is option c) Pay $250 per month until it's paid off.
Which credit card ought to I settle first?You can lower the total amount of interest you will pay over the course of your credit cards by paying off the one with the highest APR first, then moving on to the one with the next highest APR.
The ways to Pay Off Debt More Quickly are:
Pay more than the required minimum.more than once per month.Your most expensive loan should be paid off first.Think about the snowball approach to debt repayment.Keep track of your bills so you can pay them faster.Learn more about credit payoff strategy from
https://brainly.com/question/20391521
#SPJ1
See full question below
If you buy $1000 bicycle, which credit payoff strategy will result in your paying the least
a) Pay off the bicycleas slowly as possible
b) Pay $100 per month for 10 months
c) Pay $250 per month until it's paid off
which type of network is the internet? choose the answer
Answer:
WAN or wide area network
Explanation:
The Internet is the most basic example of a WAN. It is connecting all computers together around the world.