Write a program that takes in an integer in the range 20-98 as input. The output is a countdown starting from the integer, and stopping when both output digits are identical. So for example if you start at 98 and count down, the minute you reach 88 both numbers that make up 88 are identical and so you should quit looping.


Ex: If the input is: 93

the output is: 93 92 91 90 89 88


Ex: If the input is: 77

the output is: 77


Ex: If the input is: 15

or any number not between 20 and 98 (inclusive), the output is:

Input must be 20-98


For coding simplicity, follow each output number by a space, even the last one.


Use a while loop. Compare the digits; do not write a large if-else for all possible same-digit numbers (11, 22, 33, …, 88), as that approach would be cumbersome for larger ranges.


In C (not C++) please.


#include
< stdio.h >

int main(void) {


/* Type your code here. */


return 0;

}

Answers

Answer 1

Answer:

Image 1: Input

integer x

x = Get next input

if x < 20 or x > 98

  Put "Input must be 20-98" to output

else

  while x/10 != x%10

     Put x to output

     Put " " to output

     x = x - 1

  Put x to output

  Put " " to output

Image 2: Output

Input:

93

Output:

93 92 91 90 89 88

Write A Program That Takes In An Integer In The Range 20-98 As Input. The Output Is A Countdown Starting
Write A Program That Takes In An Integer In The Range 20-98 As Input. The Output Is A Countdown Starting

Related Questions

How serious are the risks to your computer security?
Why is it important to protect a Wi-Fi network? What should you do to protect your Wi-Fi network?

Answers

The seriousness of  the risks to your computer security is not to be a severe one. This is because Computer security risks  are due to the handwork of  malware such as, bad software, that can infect a  computer, and make the hacker to destroy your files, steal your data, or even  have access to your system without one's knowledge or authorization.

What are the risk results for information and computer security?

The term “information security risk” is known to be those  damage that occurs due to  an attacks against IT systems. IT risk is made up of a wide range of potential events, such as data breaches, regulatory enforcement actions, financial costs, and a lot more.

Some Examples of malware are viruses, worms, ransomware, spyware, and a lot others.

Hence, The seriousness of  the risks to your computer security is not to be a severe one. This is because Computer security risks  are due to the handwork of  malware such as, bad software, that can infect a  computer, and make the hacker to destroy your files, steal your data, or even  have access to your system without one's knowledge or authorization.

Learn more about computer security from

https://brainly.com/question/12010892

#SPJ1

Match each task with the features necessary to complete the task.
Move a row with text to another location in
the table.
Place the content evenly into the cells of the
table.
Resize the length of a column in a table.
Use the AutoFit option.
Use the Ruler or cursor.
Use Cut and Paste.

Match each task with the features necessary to complete the task.Move a row with text to another location

Answers

Answer:

Hopefully this help you. Sound like you are using Microsoft Excel

Explanation:

Match each task with the features necessary to complete the task.Move a row with text to another location

When the InfoSec management team’s goals and objectives differ from those of the IT and general management communities, what items should be considered for the resolution, and who should be involved and provide an example of a situation where such a conflict might exist

Answers

phone holder 2 questions

When water reaches the pole, most of it turns to ice. Some salt is trapped between ice crystals, but most is left behind in the unfrozen seawater. This causes an increase in?

A. Evaporation
B. Salinity
C. Pressure
D. Temperature

*science wok btw*

Answers

Answer:

b should be the right answer

Explanation:

i agree i think it is salinity because salinity means the concentration of salt in something so yes

Write your own function, named Quizzer, which when called will do the following:

Generate 2 random integers between 1-10 (inclusive)
Print the 2 numbers to the screen as a math problem, e.g. 2 * 10 = ?
Ask the user what the product (multiplication) of the 2 numbers is (e.g. the answer to the math problem)
Return True if the user's answer was correct, False otherwise.
Additionally, your solution should include a main program which, when your python file is run will call your Quizzer function (one time) and store the result from Quizzer in a new variable named success. If success is True after Quizzer is done running, print to the screen: "Good job!" Else, print to the screen the "Better luck next time."

Answers

Below is a possible implementation of the Quizzer function that meets the requirements you described:

python

import random

def Quizzer():

   # Generate 2 random integers between 1-10 (inclusive)

   num1 = random.randint(1, 10)

   num2 = random.randint(1, 10)

   

   # Print the 2 numbers to the screen as a math problem

   print(f"{num1} * {num2} = ?")

   

   # Ask the user what the product (multiplication) of the 2 numbers is

   user_answer = int(input("Enter your answer: "))

   

   # Check if the user's answer was correct

   if user_answer == num1 * num2:

       return True

   else:

       return False

# Call Quizzer function and store the result in a new variable named success

success = Quizzer()

# Check if success is True and print appropriate message to the screen

if success:

   print("Good job!")

else:

   print("Better luck next time.")

What is the function about?

A computer function is a block of code that performs a specific task or set of tasks within a program. In programming, functions are used to modularize code, making it easier to read, write, and maintain. Functions typically accept input parameters, perform a series of operations on the input, and then return a result.

Functions in programming languages like JavaScript, Python, and Java are defined using a specific syntax. Here's an example of a simple function in JavaScript:

javascript

function addNumbers(num1, num2) {

 return num1 + num2;

}

Read more about function here:

https://brainly.com/question/179886

#SPJ1

Draw a use case diagram based on the info above

Draw a use case diagram based on the info above

Answers

Answer:

(See attached file)

Explanation:

Actors: Adult, Publisher, Agent, Editor

Description:

Compilation of Magazine is done by the editor.

Publisher is responsible for publishing the Magazine.

Agent sells the published Magazine.

Adult buys and reads the Magazine.

Draw a use case diagram based on the info above

Justify any FOUR significant factors to remember when installing your motherboard

Answers

Answer:

The answer is below

Explanation:

When a computer system is being assembled by individuals or to provide a repair. There are factors to remember when installing your motherboard. Some of them include:

1. RAM (Random Acess Memory) support: Ensure the RAM of the PC supports the motherboard capacity.

2. Main Use of the PC: The motherboard to be installed on a PC should be based on the regular usage of the PC.

3. Compatibility with the operating system of the PC is essential. This will allow you to check if it will work well with PC without a glitch

4. Cost of the motherboard: it is advisable to go for a motherboard that can deliver value even if it is somehow expensive.

1. Which image file type is unique since it can also include vector graphics?

Answers

Answer:

SVG, EPS, PDF or AI types of graphic file formats.

Explanation:

To my knowledge, vector graphics can be contained in SVG, EPS, PDF or AI types of graphic file formats.

A microchip in a smart card stores the same data as the _____ on a payment card.

Answers

Answer: magnetic stripe

Explanation:

Which line of code will find the first occurrence of a three in an array?

Assume that you have previously imported the array module and created the array.

arr.index(3)
index(arr, 3)
arr.index[3]
index[arr,3]

Answers

Answer:

It is arr.index(3)

Explanation:

The line of code that will find the first occurrence of a three in an array is arr. index(3). The correct option is A.

What is an array?

An array is a collection of data of similar types. For example, if we want to store the names of 100 people, we can create a string array that can hold 100 names.

An array is a group of related data elements that are stored in adjacent memory regions. It is the most basic data structure since each data element may be accessed directly by using only its index number.

To build an array, supply the data type (such as int) and the array name in square brackets []. To add values to it, use a comma-separated list enclosed by curly braces: myNumbers int

Therefore, the correct option is A. arr.index(3).

To learn more about array, refer to the link:

https://brainly.com/question/19570024

#SPJ5

what is information technology​

Answers

Explanation:

The study or use of electronic equipment, especially computers, for collecting, storing and send out information.

Information technology is the use of computers to store, retrieve transmit, and manipulate data, or information.

Which of the following correctly describes a work in the public domain?
A:Being part of an individual's personal collection
B:Belonging to society as a whole and not subject to copyright
C:Enduring the test of time like Beethoven, Shakespeare, and Van Gogh
D:Existing in civic locations like libraries and schools

Answers

Answer:

B

Explanation:

I took the test got a 100

Please help me. Anyone who gives ridiculous answers for points will be reported.

Please help me. Anyone who gives ridiculous answers for points will be reported.
Please help me. Anyone who gives ridiculous answers for points will be reported.

Answers

Answer:

Well, First of all, use Linear

Explanation:

My sis always tries to explain it to me even though I know already, I can get her to give you so much explanations XD

I have the Longest explanation possible but it won't let me say it after 20 min of writing

what is a form of technology that you think will make your life easier?

Answers

Answer:

Digital communication technologies

Explanation:

connecting people across the globe has become easier and faster. Platforms such as Zoom, Room, Microsoft teams, WebEx, and many others are buzzing virtual world spaces to connect and share.

4. The hard drive is a long-term storage, which means the data is still saved even if you turn the computer off or unplug it. True False​

Answers

Answer:

True

Explanation:

A hard drive doesn´t wipe itself after a certain amount of time like RAM does. The data you store on it will stay there until the hard drive is either destroyed, or you delete to the data yourself.

positive and negative of adblock plus

Answers

Answer:

Pros and cons of ad blockers

Remove distracting ads, making pages easier to read.

Make web pages load faster.

Keep advertisers from tracking you across websites.

Reduce bandwidth (especially important with mobile devices)

Reduce battery usage (again, important for mobile devices)

p

3) Which of the following operators is used for performing exponentiation?​

Answers

Answer:

pls make more detailed

Explanation:

The operator that is used for performing exponentiation is ^. The correct option is A.

What are exponential?

One technique to determine the exponential value of the supplied base and exponent values in Python is to use the exponentiation operator. Between the base and exponent values, we utilize the (**) double asterisk/exponentiation operator.

It provides a string in exponential notation that represents the Number object. Using the syntax number.to Exponential (value) The '.' operator is used with a number to invoke the toExponential() method, as demonstrated in the syntax above.

The ^ symbol represents the exponent. This symbol is known as a carrot (). As an illustration, 4 raised to 2 can be expressed as 42 or 42.

Therefore, the correct option is A) ^.

To learn more about exponential, refer to the link:

https://brainly.com/question/28596571

#SPJ6

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

A) ^

B) #

C) *

D) /

Statistics are often calculated with varying amounts of input data. Write a program that takes any number of non-negative integers as input, and outpu

Answers

Answer:

Explanation:

The following program is written in Java and is a function that asks the user for an input and keeps doing so until a negative value is entered, in which case it calculates the average and max values and prints it to the screen.

public static void average () {

                       int num;

                       int sum = 0;

                       Scanner in = new Scanner(System.in);

                       System.out.println("Enter Number");

                       num = in.nextInt();

                       int count = 0;

                       int max = 0;

                       while(num >= 0)

                       {

                               sum+=num;

                               System.out.println("Enter Number");

                               num = in.nextInt();

                               count++;

                               if(num>=max){

                                       max = num;

                               }

                       }

               System.out.println(sum/count);

               System.out.println(max);

               }

Answer:hi

Explanation:

3
3
Select the correct answer.
What type of color does this image convey?
ما
ОА.
warm
OB. neutral
OC. cool
OD
warm and neutral

33Select the correct answer.What type of color does this image convey?.warmOB. neutralOC. coolODwarm

Answers

Answer:

it is D warm and Neutral

Explanation:

Is there a parrapa level for stage 1 in umjammer lammy?

Answers

Answer:yes there WAS a parrapa level but it was scrapped from the game I think you can find it in beta versions of the game but

Problem: Longest Palindromic Substring (Special Characters Allowed)

Write a Python program that finds the longest palindromic substring in a given string, which can contain special characters and spaces. A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward. The program should find and return the longest palindromic substring from the input string, considering special characters and spaces as part of the palindrome. You do not need a "words.csv" as it should use dynamic programming to find the longest palindromic substring within that string.

For example, given the string "babad!b", the program should return "babad!b" as the longest palindromic substring. For the string "c bb d", the program should return " bb " as the longest palindromic substring.

Requirements:

Your program should take a string as input.
Your program should find and return the longest palindromic substring in the input string, considering special characters and spaces as part of the palindrome.
If there are multiple palindromic substrings with the same maximum length, your program should return any one of them.
Your program should be case-sensitive, meaning that "A" and "a" are considered different characters.
You should implement a function called longest_palindrome(string) that takes the input string and returns the longest palindromic substring.
Hint: You can use dynamic programming to solve this problem. Consider a 2D table where each cell (i, j) represents whether the substring from index i to j is a palindrome or not.

Note: This problem requires careful consideration of edge cases and efficient algorithm design. Take your time to think through the solution and test it with various input strings.

Answers

A Python program that finds the longest palindromic substring in a given string, considering special characters and spaces as part of the palindrome is given below.

Code:

def longest_palindrome(string):

   n = len(string)

   table = [[False] * n for _ in range(n)]

   # All substrings of length 1 are palindromes

   for i in range(n):

       table[i][i] = True

   start = 0

   max_length = 1

   # Check for substrings of length 2

   for i in range(n - 1):

       if string[i] == string[i + 1]:

           table[i][i + 1] = True

           start = i

           max_length = 2

   # Check for substrings of length greater than 2

   for length in range(3, n + 1):

       for i in range(n - length + 1):

           j = i + length - 1

           if string[i] == string[j] and table[i + 1][j - 1]:

               table[i][j] = True

               start = i

               max_length = length

   return string[start:start + max_length]

# Example usage

input_string = "babad!b"

result = longest_palindrome(input_string)

print(result)

This program defines the longest_palindrome function that takes an input string and uses a dynamic programming approach to find the longest palindromic substring within that string.

The program creates a 2D table to store whether a substring is a palindrome or not. It starts by marking all substrings of length 1 as palindromes and then checks for substrings of length 2.

Finally, it iterates over substrings of length greater than 2, updating the table accordingly.

The program keeps track of the start index and maximum length of the palindromic substring found so far.

After processing all substrings, it returns the longest palindromic substring using the start index and maximum length.

For more questions on Python program

https://brainly.com/question/30113981

#SPJ8

due to the success of your remote access solution, you now have several remote access servers on your network. to centralize administration of network policies, you need to configure the corpnps server as a radius server.

Answers

The CORPNPS server must first be configured as a RADIUS

Describe how to set up the Corpnps server to act as a Radius server?Install and set up the NPS Server first. On a Windows server, install and set up the NPS Server. Set the appropriate authentication protocols and settings on the NPS Server.Set up the servers for remote access. Set up the remote access servers to need NPS Server authentication. Configure the appropriate authentication settings and protocols.Set up the NPS server settings. Set the NPS Server up to enforce network regulations, including encryption options, authentication procedures, and other security settings.Check and validate the setup. By logging into the remote access servers with the configured authentication methods, you can test and validate the configuration. Check to see if the network policies are being correctly applied.

To learn more about The CORPNPS server must first be configured as a RADIUS refer to:

https://brainly.com/question/15289808

#SPJ4

What are the core steps to add revisions or features to a project?(1 point)
Responses

Evaluate feasibility of the goals, create a list of functionality requirements, and develop the requirements of the feature.

Evaluate feasibility of the goals, develop programming solutions, and evaluate how well the solutions address the goals.

understand the goals, evaluate the impact on the project, create a list of functionality requirements, and develop the requirements of the feature.

Communicate with the client, create a sprint backlog, develop the project, and evaluate how well the solution fits the requirements.

Answers

The core steps to add revisions or features to a project are ""Understand the goals, evaluate the impact on the project, create a list of functionality requirements, and develop the requirements of the feature." (Option C)

How  is this so?

 

The core steps to add revisions or features to a project include understanding the goals,evaluating the impact on   the project, creating a list of functionality requirements,and developing   the requirements of the feature.

These steps ensure that the goals are clear, the impact is assessed, and the necessary functionality is identified and implemented effectively.

Learn more about project management at:

https://brainly.com/question/16927451

#SPJ1


Steve Jobs


Born
Feburary 24, 1955


Death
October 5, 20122


Steven Paul Jobs was an American inventor, designer and entrepreneur who was the co-founder, chief executive and chairman of
Apple Computer.

Apple's revolutionary products, which include the



  • iPod

  • iPhone

  • iPad


Apple Computer


In 1976, when Jobs was just 21, he and Wozniak started Apple Computer in the Jobs’ family garage. They funded their entrepreneurial
venture by Jobs selling his Volkswagen bus and Wozniak selling his beloved scientific calculator. Jobs and Wozniak are credited with
revolutionizing the computer industry with Apple by democratizing the technology and making machines smaller, cheaper, intuitive and
accessible to everyday consumers.


Wozniak conceived of a series of user-friendly personal computers, and — with Jobs in charge of marketing — Apple initially marketed
the computers for $666.66 each. The Apple I earned the corporation around $774,000. Three years after the release of Apple's second
model, the Apple II, the company's sales increased by 700 percent to $139 million.


In 1980, Apple Computer became a publicly-traded company, with a market value of $1.2 billion by the end of its very first day of
trading. Jobs looked to marketing expert John Sculley of Pepsi-Cola to take over the role of CEO for Apple.


The next several products from Apple suffered significant design flaws, however, resulting in recalls and consumer disappointment.
IBM suddenly surpassed Apple in sales, and Apple had to compete with an IBM/PC-dominated business world.


In 1984, Apple released the Macintosh, marketing the computer as a piece of a counterculture lifestyle: romantic, youthful,
creative. But despite positive sales and performance superior to IBM's PCs, the Macintosh was still not IBM-compatible.


Sculley believed Jobs was hurting Apple, and the company's executives began to phase him out. Not actually having had an
official title with the company he co-founded, Jobs was pushed into a more marginalized position and thus left Apple in 1985.


Answers

Answer:

what Is your question it is not clearly stated

_____ is responsible for packet forwarding. Group of answer choices Internet Protocol Transmission Control Protocol User Datagram Protocol Extensible Authentication Protocol

Answers

Answer:

Networklayer is the correct answer

Internet Protocol is responsible for packet forwarding. Hence, option A is correct.

What is packet forwarding?

The fundamental technique for distributing data among systems on a network is packet forwarding. Typically on two distinct systems, packets are transmitted between a source interface and a destination interface.

In the data plane, forwarding is the process of deciding the path packets will take from source to destination. In the control plane, routing is the process of transporting packets from a router's input to the correct router output.

When uIP gets a packet with a destination IP address that does not match any of the node's IP addresses, packet forwarding is carried out. A node often has several addresses, including at least one broadcast or multicast address and one or more unicast addresses.

Thus, option A is correct.

For more information about packet forwarding, click here:

https://brainly.com/question/20813972

#SPJ6

Directions: Everyone around the world plays the lottery. Today we are going to design our own lottery game and see if we can win and rig the game to help us win. For this project we are going to simplify the lottery systems and follow the following rules:
There are 3 lottery numbers that we have to match
The 3 numbers can only be between 0-10
Winning Outcomes:
Option 1 - You match all 3 numbers and have them in order -> you win 1,000
Option 2 - You match all 3 numbers in any order -> you win 500
Option 3 - You match 2 numbers in any order -> you win 250
Option 4 - You match 1 number in any order-> you win 100
Option 5 - You match nothing -> you don't win


When creating this project you can use a while loop to ensure that each of the 3 values do not repeat.

Use random.randint() to generate your random numbers.

Have the user enter their 3 numbers for the lottery and then run the program to see if they have won or not. You can use different .py files or create methods to run parts of the program.

Answers

The code is given below.

What do you mean by Python programming?

Python is a high-level, interpreted programming language that was first released in 1991. It is named after the Monty Python comedy group and was created by Guido van Rossum. Python is known for its readability, simplicity, and ease of use. It supports multiple programming paradigms, including procedural, object-oriented, and functional programming.

Python is widely used in a variety of applications, including web development, scientific computing, data analysis, artificial intelligence, and more. It has a large and active community of developers who contribute to its development and provide support to users. Python also has a vast library of pre-written code that can be easily imported and used, making it a great choice for rapid prototyping and development.

Here is an example code in Python to implement the lottery game:

python

Copy code

import random

def check_numbers(user_numbers, lottery_numbers):

   user_numbers_set = set(user_numbers)

   lottery_numbers_set = set(lottery_numbers)

   # Check if all 3 numbers match

   if user_numbers_set == lottery_numbers_set:

       # Check if the numbers are in order

       if user_numbers == lottery_numbers:

           return 1000

       # If the numbers are not in order

       else:

           return 500

   # Check if 2 numbers match

   elif len(user_numbers_set.intersection(lottery_numbers_set)) >= 2:

       return 250

   # Check if 1 number matches

   elif len(user_numbers_set.intersection(lottery_numbers_set)) >= 1:

       return 100

   # If no numbers match

   else:

       return 0

def main():

   # Generate 3 random numbers between 0 and 10

   lottery_numbers = random.sample(range(0, 11), 3)

   # Ask the user for their 3 numbers

   user_numbers = [int(input("Enter number 1: ")), int(input("Enter number 2: ")), int(input("Enter number 3: "))]

   # Check if the user has won the lottery

   winnings = check_numbers(user_numbers, lottery_numbers)

   # Print the result

   if winnings > 0:

       print(f"Congratulations! You have won ${winnings}")

   else:

       print("Sorry, you did not win the lottery.")

if __name__ == "__main__":

   main()

In this code, the check_numbers function takes in two lists, user_numbers and lottery_numbers, and returns the amount won based on the number of matches and their order. The main function generates the 3 random lottery numbers, asks the user for their numbers, and calls the check_numbers function to determine if they have won the lottery. The final result is displayed to the user with a message indicating the amount won or a message saying that they did not win.

To know more about function  visit:

https://brainly.com/question/29797102

#SPJ1

Can someone help me with this error? Will give brainliest and i will give more details if you need just please help​

Can someone help me with this error? Will give brainliest and i will give more details if you need just

Answers

Answer:

From what I see, you're trying to convert an int to a double&. This is illegal. Do you have any arrays with ints?

Why should we care about information being represented digitally? How does this impact you personally?

Answers

information digitally represented shows a level of understanding i.e it eases the stress of complexity. It is more interpretable.

it has a great impact on users personal since use can use and interpret information well as compared to other forms of represention

Reasons why the adoption of digital information representation should be made paramount include ; large storage, accessibility and retrieval among others.

Digital information may be explained to collection of records and data which are stored on computers and other electronic devices which makes use of digital storage components such as memory cards, hard drive and cloud services.

The advantages of digital data representation include :

Large storage space : Digital data representation allows large chunks of information to be kept and stored compared to traditional mode of data storage.

Easy accessibility : Digital information representation allows users to access and transfer data and stored information more easily and on the go as it is very easy to access and transfer information seamlessly to other digital devices.

Data stored digitally allows for easy manipulation and transformation of data as digital information allows for more orderly representation of information.

The personal impact of digital information from an individual perspective is the large expanse of storage it allows and ease of retrieval.

Learn more : https://brainly.com/question/14255662?referrer=searchResults

List and describe in detail any four power management tools that were developed by at
least two manufacturers to prevent and/or reduce the damage of processors from the
process of overclocking. Your answer must also include the manufacturers name

Answers

Power management tools is a kind of technology that enables the efficient and optimized management of the power that is consumed by computer hardware.

What is the purpose of a power management tool?

The key purpose of a power management tool is to help:

minimize power consumption;save costspreserve the optimal performance of the system.

Examples of power management tools are:

Signal chain PowerADI Power StudioLTpowerPlay, etc.

Learn more about Power management tools at:
https://brainly.com/question/12816781

NEED HELP WILL MARK BRAINLIEST AND 100 POINTS FOR ANSWER Which LIKE operator would match a single character?
*
?
[]
#

Answers

Answer:

1st choice

Explanation:

Answer:

?

Explanation:

? or _ (underscore)  = Any single character

* or %  = Zero or more characters

#  = Any single digit (0 — 9)

[charlist]  = Any single character in charlist

[!charlist]  = Any single character not in charlist

Other Questions
What is the volume of this prism56 cubic units16 cubic units112 cubic units28 cubic units The weight of an object on Mars varies directly with its weight on Earth. An object that weighs 50 pounds on Mars weighs 150 pounds on Earth. Determine a direct variation equation to represent this situation. If an object weighs 120 pounds on Earth, determine how much an object would weigh on Mars. Enter this amount, in pounds, into the space provided (enter numerical number only, not the units). Exhibit A Twinks, Inc. had the following inventories at the beginning and end of the current period: Beginning Ending Finished goods inventory $ 20,000 $ 22,000 WIP inventory $ 13,000 $ 15,000 Direct materials inventory $ 40,000 $ 33,000 Additional information assembled: Direct materials purchased $ 58,000 Purchase discounts $ 4,000 Transportation in $ 12,000 Direct labor costs $ 42,000 Factory overhead (actual) $ 13,000 Using the information from Exhibit A, what is cost of goods manufactured (COGM) for the period? Group of answer choices $124,000. $128,000. $130,000. $126,000. who does the treasure belong to in freak the mighty InstructionsClick the links to open the resources below. These resources will help you complete the assignment. Once you have created your file(s) and are ready to upload your assignment, click the Add Files button below and select each file from your desktop or network folder. Upload each file separately.Your work will not be submitted to your teacher until you click Submit.DocumentsProject-Time Line of the Roman Empire-Student Guide (Word doc)Project-Time Line of the Roman Empire-Student Guide (PDF)Project-Time Line-Rubric (Word doc)Project-Time Line-Rubric (PDF)File Upload France's colonization of Vietnam was considered What caused Britain and France to go to war (French and Indian War)? The bonds between hydrogen atoms and an oxygen atom in a water molecule _____ hydrogen bonds because hydrogen bonds _____ based on slight charge differences, rather than sharing of electrons. Which of the following identifies specific parts of a plant that must join together to create a new cell?A. pollen and ovule B. carpel and stamenC. carpel and ovuleD. pollen and seed If a firm hires an additional worker and discovers that its total output has fallen, then it must be true that:________ How does buying in bulk affect costs? Please Answer!I need it ASAP! Why would slave states be in favor of counting slaves as part of their total population?. A single-cell organism can do everything a cell from a multicellular organism can do except Critics argue that free trade agreementsO offer goods too freely.O are unfair to international businesses.O put people out of jobs.O are too fair.O transfer power from international organizations to local groups. Plz help me !!!!! I need help me In the myth Prometheus, who saves Prometheus in the end? how is carbon dioxide collected in laboratory What is the total surface area of the cone? Select the two sentences from the text that best support the conclusion NASA did not always build rockets that they used