what is wrong with my code???

using System;

namespace FavoriteNumber
{
class Program
{
static void Main(string[] args)
{

Console.Write("Enter your favorite number!: ");
int faveNumber = Console.ReadLine()
int number = Convert.ToInt32("string value")

Answers

Answer 1

Answer:

using System;

namespace FavoriteNumber  

{

class Program

{

static void Main(string[] args)  

{

Console.Write("Enter your favorite number!: ");  

int number = Convert.ToInt32(Console.ReadLine());  

}

}

}


Related Questions

Write a program that will add up the series of numbers: 99, 98, 97… 3, 2, 1. The program should print the running total as well as the total at the end. The program should use one for loop, the range() function and one print() command.

Answers

Answer:

isum = 0

for i in range(99,0,-1):

   isum = isum + i

print(isum)

Explanation:

This line initializes isum to 0

isum = 0

The following iteration starts from 99 and ends at 1

for i in range(99,0,-1):

This line adds the series

   isum = isum + i

This line prints the sum of the series

print(isum)

The program that will add up the series of numbers: 99, 98, 97… 3, 2, 1 is represented as follows using for loop, the range() function and one print() function.

sum = 0

for i in range(1, 100):

   sum += i

print(sum)

The code is written in python.

The variable sum is initialise to zero.

For loop is used to loop through the range of number 1 to 100(excluding 100).

Then the numbers are added to the sum initialised to zero.

The total sum is then printed.

learn more on python here: https://brainly.com/question/22164565?referrer=searchResults

Assign sub_lyric by slicing rhyme_lyric from start_index to end_index which are given as inputs. Sample output with inputs: 4 7

Answers

sub_lyric = rhyme_lyric[start_index:end_index]

in public speaking situation the sourse of the message is the person listening to the speech​

Answers

Answer:

The answer to this question is given below in the explanation section

Explanation:

This question is about terminologies or elements used in public speaking.

So generally, in public speaking, the source is the person who is giving the speech, the channel is the speaker's use of verbal and nonverbal communication, and the receivers are the audience members listening to the speech.

Why is forwarding messages useful?
O to pass along messages and attachments to those who should see them
* to return a message to the message sender and all other original recipients
O to courtesy copy someone with a reply message
O to move old messages into a message archive

Answers

A. To pass along messages and attachments to those who should see them.

Answer:

A. to pass along messages and attachments to those who should see them

Hope this helps :D

Why the following code is giving error NAME="REHMAAN" PRINT ("hello') PRINT ("HI")

Answers

Answer:

corrected code:

NAME="REHMAAN"  

print ("hello")  

print ("HI")

Explanation:

In python, put every statement on its own line. Even indentation matters.PRINT should be in lowercase, i.e., printThe string quotes should be both " or both ', but not a mix like in "hello'

Which is the main function of the operating system?
a. Manages the hardware and operating system
b. Manages the software and operating system
c. Manages the hardware and software
d. Manages the hardware and file system​

Answers

Answer:

manage hardware and operating system

what is the name of the symbol that is used to classify and categorize information?​

Answers

Answer:

A Hashtag

Explanation:

Answer: it’s Hashtags#

In Python
1.9 LAB: Input: Mad Lib

Mad Libs are activities that have a person provide various words, which are then used to complete a short story in unexpected (and hopefully funny) ways.

Complete the program to read the needed values from input, that the existing output statement(s) can use to output a short story.

Ex: If the input is:

Eric
Chipotle
12
cars
Then the output is:

Eric went to Chipotle to buy 12 different types of cars

Answers

name = input("Enter a name: ")

place = input("Enter a place: ")

number = input("Enter a number: ")

noun = input("Enter a noun: ")

print("{} went to {} to buy {} different types of {}".format(name, place, number, noun))

I hope this helps!

Following are the Python program for input value and prints its value with the message.

Program Explanation:  

In the python code, four variables "na, l, nu, no" are declared that inputs value by using the input method. In this, except for the "nu" variable, all is used for the input string value. After input value, the print method has used that prints value with a message.

Program:

#defining variable that uses the input method to the input value

na = input()#defining na variable to input value

l = input()#defining l variable to input value

nu = int(input())#defining nu variable to input integer value

no = input()#defining no variable to input value

print(na, 'went to', l, 'to buy', str(nu), 'different types of', no)# printing input value and print value with message

Output:

Please find the attached file.

Learn more:

brainly.com/question/18752544

Classify the following attributes as binary, discrete, or continuous. Also classify them as qualitative (nominal or ordinal) or quantitative (interval or ratio). Some cases may have more than one interpretation, so briefly indicate your reasoning if you think there may be some ambiguity. Example: Age in years. Answer: Discrete, quantitative, ratio

a)Time in terms of AM or PM.

b)Brightness as measured by a light meter.

c)Brightness as measured by people's judgments.

d)Angles as measured in degrees between 0 and 360.

e)Bronze, Silver, and Gold medals as awarded at the Olympics.

f)Height above sea level.

g)Number of patients in a hospital.

h)ISBN numbers for books. (Look up the format on the Web.)

i)Ability to pass light in terms of the following values: opaque, translucent' transparent.

j)Military rank.

k)Distance from the center of campus.

l)Density of a substance in grams per cubic centimeter.

m)Coat check number. (When you attend an event, you can often give your coat to someone who, in turn, gives you a number that you can use to claim your coat when you leave.)

Answers

Answer:

is A

Explanation:

With the development of the sundial in Ancient Egypt around 1500 B.C., the terms a.m. and p.m. were first used. The concept of 24 “hours” per day originated with the Egyptians. Thus, option A is correct.

What Time in terms of AM or PM?

These Latin terms are used to describe time. Ante Meridian and Post Meridian are Latin terms that indicate “before noon” and “after midday,” respectively. Post Meriden, which means afternoon or after noon, is abbreviated as “P.M.”

Although early mechanical clocks displayed all 24 hours, clockmakers eventually discovered that the 12-hour method was easier and more affordable. A.M., or ante meridiem, is of course Latin for “before midday.

Therefore, A sundial uses the sun's location in the sky to tell the time, as its name suggests.

Learn more about Time here:

https://brainly.com/question/28050940

#SPJ5

Writing a Modular Program in Python
Summary
In this lab, you add the input and output statements to a partially completed Python program. When completed, the user should be able to enter a year, a month, and a day. The program then determines if the date is valid. Valid years are those that are greater than 0, valid months include the values 1 through 12, and valid days include the values 1 through 31.
Instructions
Notice that variables have been declared for you.
Write input statements to retrieve a year, a month, and a day from the user.
Include the print statements to output the following: month/day/year is a valid date. or month/day/year is an invalid date.
Execute the program entering the following input: month = 5, day = 32 year = 2014
Execute the program entering the following input: month = 9 day = 21 year = 2002
# Program Name: BadDate.py
# Function: This program determines if a date entered by the user is valid.
# Input: Interactive
# Output: Valid date is printed or user is alerted that an invalid date was entered.
validDate = True
MIN_YEAR = 0
MIN_MONTH = 1
MAX_MONTH = 12
MIN_DAY = 1
MAX_DAY = 31
year = int(input("Enter year:"))
month = int(input("Enter month:"))
day = int(input("Enter day:"))
# Get the month, then the day, then the year
# housekeeping()
# Check to be sure date is valid
if int(year) <= MIN_YEAR: # invalid year
validDate = False
elif int(month) < MIN_MONTH or int(month) > MAX_MONTH: # invalid month
validDate = False
elif int(day) < MIN_DAY or int(day) > MAX_DAY: # invalid day
validDate = False
# Test to see if date is valid and output date and whether it is valid or not
# endOfJob()
if validDate == True:

Answers

Answer:

Add these statements to the given code:

if validDate == True:  #if the date is valid

   print(str(month)+'/'+str(day)+'/'+str(year) + " is a valid date")  #prints the statement in month/day/year format. str() converts the values of month day and year to string

else:  #if data is not valid

   print(str(month)+'/'+str(day)+'/'+str(year) + " is an invalid date") #prints this statement in month/day/year format

Explanation:

Here is the complete program:

validDate = True

MIN_YEAR = 0

MIN_MONTH = 1

MAX_MONTH = 12

MIN_DAY = 1

MAX_DAY = 31

year = int(input("Enter year:"))

month = int(input("Enter month:"))

day = int(input("Enter day:"))

if int(year) <= MIN_YEAR:  

    validDate = False

elif int(month) < MIN_MONTH or int(month) > MAX_MONTH:

    validDate = False

elif int(day) < MIN_DAY or int(day) > MAX_DAY:

    validDate = False

if validDate == True:

   print(str(month)+'/'+str(day)+'/'+str(year) + " is a valid date")  

else:

   print(str(month)+'/'+str(day)+'/'+str(year) + " is an invalid date")

I will explain the program with an example:

Suppose user enters 2002 as year, 9 as month and 21 as day so

year = 2002

month = 9

day = 21

All these are integers

validDate is set to True initially.

MIN_YEAR is set to 0 initially.

MIN_MONTH is set to 1  initially

MAX_MONTH is set to 12 initially

MIN_DAY is set to 1  initially

MAX_DAY is set to 31  initially

The first if condition if int(year) <= MIN_YEAR: checks if the year is less than MIN_YEAR. As the value of year is 2002 and that of MIN_YEAR is 0 so year is not less than or equals to MIN_YEAR. So this if condition evaluates to false. Thus the program moves to the elif part. The value of validDate remains true.

The elif condition elif int(month) < MIN_MONTH or int(month) > MAX_MONTH: checks if the month is less than MIN_MONTH  or greater than MAX_MONTH . Since the value of month is 9 so it is not less than value of MIN_MONTH which is 1 and it is not greater than the value of MAX_MONTH  which is 12. So this condition evaluates to false. Thus the program moves to the second elif part. The value of validDate remains true.

The elif condition elif int(day) < MIN_DAY or int(day) > MAX_DAY:  checks if the day is less than MIN_DAY  or greater than MAX_DAY. This is also not true because of value of day is 21 and it is not less than value of MIN_DAY which is 1 and it is not greater than value of MAX_DAY which is 31. So this condition also evaluates to false. So the program moves to the next statement. However the value of validDate remains true.

The next statement: if validDate == True:  evaluates to true because none of the above if elif conditions evaluate to true. Since this condition evaluate to true then statement in this if part executes which is:

   print(str(month)+'/'+str(day)+'/'+str(year) + " is a valid date")  

This is a print statement that prints the output on screen. str() method is used to convert the values of month, day and year to string form. So the output of this entire program is:

9/21/2002 is a valid date    

The program along with its output is attached in a screenshot.

What are the main types of reading tools? Check all that apply. please HELP​

Answers

Answer:

Comprehension

reference

Answer: Comprehension and language tools

Explanation:

I could be wrong but I'm pretty sure those are the answers.

i need to know thr full number of pie

Answers

Answer:

3.14159

Explanation:

Place the steps in order to link and place text into the document outline, effectively creating a master document.
Click Insert
Click Show Document.
Click Open.
Select the document file.
Click Outline view.

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

This question is asked about placing or linking text in an outline view and what would be the correct steps of placing text in an outline view.

The correct order to link and place text into the document outline, effectively creating a master document is given below:

Click Outline viewClick Show DocumentClick InsertSelect the document fileClick open

Answer:

Click Outline view

Click Show Document

Click Insert

Select the document file

Click open

Explanation:

What declarations, inputs, processing, and outputs are needed to calculate the area of a rectangle?​

Answers

Answer:

Declaration: length, width, area

Inputs: length & width

Processing: length & width

Output: area

Explanation:

The area of a rectangle uses the formula: [tex]A=lw[/tex]. In your coding, you need to ask for user input for the length and width in order to calculate the area.

Your processing would simplify multiple the user's input together stored in some type of sum variable.

Now I don't know what program language you are using but I will give you an idea.

Code (Python)

#Define variables equal to user input.

length = int(input("Enter the length of the rectangle: "))

width = int(input("Enter the width of the rectangle: "))

area = length * width

Your output would be the area, but you can manipulate it if you want.

print("The area of the rectangle is", area)

So the program would run like this:

Enter the length of the rectangle: 3 <--you type a number

Enter the width of the rectangle: 5

The area of the rectangle is 15

Sidenotes: if you are using ints, the number MUST be a whole number or the program will throw an error. If you are using decimals, use a float.

A speaker says:
Can you please bring me some milk I mean coffee?
Which of the following is the most correct way to transcribe this according to our Style
Guide? Type A, B, C, or D in the box below.
A) Can you please bring me some coffee?
B) Can you please bring me some milk, I mean coffee?
C) Can you please bring me some milk-- I mean, coffee?
D) Can you please bring me some milk -- I mean coffee?

Answers

The correct answer to the question is D

What are the benefits of online notebooks? Check all that apply..

They allow users to store files.
They allow users to share files.
They give users a way to practice for tests.
They help users organize assignments.
They allow users to clip information from web pages.
They can serve as school calendars.

Answers

Answer:

its a They allow users to store files. b They allow users to share files. d They help users organize assignments and f They can serve as school calendars.

Explanation:

:))))

Answer:

abdf

Explanation:

Netbooks, also called mini notebooks or subnotebooks, are a subgroup of desktops.
True
False

Answers

Answer:

false desktop is on your computer or your actual desk top

Explanation:

Bulleted and Numbered List button appear in the ………….. Toolbar.​

Answers

Answer:

The answer to this question is given below in the explanation section

Explanation:

Bulleted and Numbered List button appear in the Paragraph Toolbar.​

On word processing software, these options display in paragraph toolbar in the Home ribbon.

for example, in MS Word, you can find them in the Home tab under paragraph groups of command.

however, it is noted that these options are appear in some other software under the formating toolbar.

The binary number 0100001 represents the number 65

Answers

Answer:

Explanation:

This statement is not always true. It can represent another number when the chunk size is different. If the chunk size is 4, then it would represent two numbers, 64 and 1.

The statement below is correct in at least one number system (besides base-1). That is, the statement is correct if we assume the numbers are expressed in a base other than 10. It is up to you to find out which number base makes each statement correct. You need to justify your answer by converting the numbers in each operation to base 10 and showing that the statement is correct. For example, 36/6 = 7 is clearly not correct in base 10 but it is correct in base 12 because 3612 = 4210 and 4210/610 = 710. Thus, 3612/612 = 712 is true.

25 + 1 + 15 + 229 = 261

Answers

Answer:

The base is 19

Explanation:

Given

[tex]25 + 1 + 15 + 229 = 261[/tex]

Required

Determine the base

Represent the base with n;

So, we have

[tex]25_n + 1_n + 15_n + 229_n = 261_n[/tex]

Convert the above to base 10;

[tex]2 * n^1 + 5 * n^0 + 1 * n^0 + 1 * n^1 + 5 * n^0 + 2 * n^2 + 2 * n^1 + 9 * n^0 = 2 * n^2 + 6 * n^1 + 1 * n^0[/tex]

[tex]2 * n + 5 * 1 + 1 * 1 + 1 * n + 5 * 1 + 2 * n^2 + 2 * n + 9 * 1 = 2 * n^2 + 6 * n + 1 * 1[/tex]

[tex]2n + 5 + 1 + n + 5 + 2n^2 + 2n + 9 = 2n^2 + 6n + 1[/tex]

Collect Like Terms

[tex]2n^2 + 2n + 2n +n+ 5 + 1 + 5 + 9 = 2n^2 + 6n + 1[/tex]

[tex]2n^2 +5n + 20 = 2n^2 +6n+1[/tex]

Collect Like Terms

[tex]2n^2 - 2n^2 +5n -6n = 1-20[/tex]

[tex]-n = -19[/tex]

[tex]n = 19[/tex]

List three possible ways a company can process your data through
their privacy policy.

Answers

Answer:

A company will only process your personal data when they have a legal basis for doing so.

The legal basis to process personal data will one of the following:

1.For the performance of contract:  for recruitment process, for human resource management, and to manage those carrying out work on behalf of PI.

2.For legal requirement:  to comply with applicable regulatory obligations and employment law.

3.For their legitimate interests: to administer their website, to manage their donations, to carry out research and investigations and to manage volunteer.

Media plays an important role in shaping the socio-economic mind set of the society. Discuss the adverse impact of the today's media technologies when compared to the traditional methods.

Answers

While today's media technologies offer unprecedented access to information, they also come with adverse effects. The proliferation of misinformation, the culture of information overload, and the reinforcement of echo chambers all contribute to a negative impact on the socio-economic mindset of society when compared to traditional media methods.

Today's media technologies have undoubtedly revolutionized the way information is disseminated and consumed, but they also bring adverse impacts when compared to traditional methods.

One significant drawback is the rise of misinformation and fake news. With the advent of social media and online platforms, anyone can become a content creator, leading to a flood of unverified and inaccurate information.

This has eroded trust in media sources and has the potential to misinform the public, shaping their socio-economic mindset based on falsehoods.

Additionally, the 24/7 news cycle and constant access to information through smartphones and other devices have created a culture of information overload and short attention spans.

Traditional media, such as newspapers and magazines, allowed for more in-depth analysis and critical thinking. Today, the brevity of news headlines and the focus on sensationalism prioritize clickbait and catchy content over substantive reporting.

This can lead to a shallow understanding of complex socio-economic issues and a lack of nuanced perspectives.

Furthermore, the dominance of social media algorithms and personalized news feeds create echo chambers, reinforcing existing beliefs and biases.

This hampers the exposure to diverse viewpoints and reduces the potential for open dialogue and understanding among individuals with different socio-economic backgrounds.

For more such questions on proliferation,click on

https://brainly.com/question/29676063

#SPJ8

Logical operators can simplify nested conditional statements. For example, can you rewrite this code using a single if statement?

if (x > 0) {
if (x < 10) {
System.out.println("positive single digit number.");
}
}

Answers

In Java we have these wonderful things called logical operators. They are && and ||. The ampersand signs stand for and, while the straight lines stand for or.

To rewrite your code we can use the ampersand.

if (x > 0 && x < 10){

   System.out.println("Positive single digit number.");

}

I hope this helps!

Which are types of lines? Choose three answers.
Straight
Textured
Rectilinear
Contrasting
curvilinear

Answers

Straight
Curvilinear
Rectilinear

The only types of lines from the options are;

Straight, Rectilinear and Curvilinear lines

Types of lines are usually based on the form and not thickness.

Now, let us look at the options;

Option A; Straight line is a type of line because it tells us the line is of a straight form and does not have any bend or curve anywhere.

Option B; Textured line is not a type of line because it deals with thickness of line and not form.

Option C; Rectilinear is a term used to describe a straight line motion. Thus, if a line is rectilinear, it means it is a straight line.

Option D; Contrasting line is not a type of line because it is dealing with texture and thickness and not form.

Option E; Curvilinear line is a type of line because it denotes a line that is curved at its edges but straight at its' body

Thus, the only types of lines from the options are;

Straight, Rectilinear and Curvilinear lines

Read more at; https://brainly.in/question/39292519

A media source is considered valid if it

Answers

Answer: D

Explanation:

Answer:

d

Explanation:

no

which device protects computer systems from voltage fluctations

Answers

Answer:

Surge suppressor

Explanation:

Surge suppressor is used as shield against power fluctuations.

It helps to protect our system from damage against spikes.

It diverts extra electrical voltage on the line to the ground.

1. From where you can access save command?

A. Home tab

B. Insert

C. Review Tab

D. Right Click

E. None of above

F. All of these

G. Both A and B.

2. Which of the following is not a font style ?

A. Status bar

B. Tool bar

C. Menu bar

D. Title bar

E. Both B and D.

Answers

Answer:

1 no. ans

none of above

this ans is not 100% correct but also it help may help you

Question # 5 Dropdown What is the output for the following code? >>> phrase = "help23" >>> phrase.isalnum() h​

Answers

The output is True because the string phrase contains only letters and numbers.

Answer:

true

Explanation:

Write a C++ program that manage the student’s grades. Starting with a fixed number of students (use 10 for simplicity) the user will input the grades for each student. The number of grades is given by the user. The grades are stored in an array. Two functions are called for each student. One function will give the numeric average of their grades. The other function will give a letter grade to that average. Grades are assigned on a 10-point spread. 90-100 A 80- 89 B 70-79 C 60-69 D Below 60 F

Answers

Answer:

#include <iostream>

using namespace std;

float findAverage(double grades[], int numOfgrades) {

   float sum = 0;

   for ( int i = 0 ; i < numOfgrades; i++ ) {

       sum += grades[i];

   }

   return (sum / numOfgrades);

}

char findLetterGrade(double grades[], int numOfgrades) {

   char letter;

   if(findAverage(grades, numOfgrades) >= 90 && findAverage(grades, numOfgrades) <= 100)

       letter = 'A';

   else if(findAverage(grades, numOfgrades) >= 80 && findAverage(grades, numOfgrades) <= 89)

       letter = 'B';

   else if(findAverage(grades, numOfgrades) >= 70 && findAverage(grades, numOfgrades) <= 79)

       letter = 'C';

   else if(findAverage(grades, numOfgrades) >= 60 && findAverage(grades, numOfgrades) <= 69)

       letter = 'D';

   else if(findAverage(grades, numOfgrades) >= 0 && findAverage(grades, numOfgrades) <= 59)

       letter = 'F';

       

   return letter;

}

int main()

{

   int numOfgrades, grade;

   

   for (int i = 0; i < 10; i++) {

       cout<<"Enter the number of grades for student #" << i+1 <<": ";

       cin >> numOfgrades;

       double grades[numOfgrades];

       

       for (int j = 0; j < numOfgrades; j++) {

           cout<<"Enter the grade" << j+1 <<" for student #" << i+1 <<": ";

           cin >> grade;

           grades[j] = grade;

       }

       cout << "Student #" << i+1 << " got " << findLetterGrade(grades, numOfgrades) << endl;

   }

   

   return 0;

}

Explanation:

Create a function named findAverage that takes two parameters, grades array and numOfgrades

Inside the function, create a for loop that iterates through the grades and calculates the sum of the grades. Then, return the average, sum/numOfgrades

Create another function named findLetterGrade that takes two parameters, grades array and numOfgrades

Inside the function, check the average grade by calling the findAverage() function. Set the letter grade using the given ranges. For example, if the result returned from findAverage() function is between 80 and 89, set the letter to 'B'. Then, return the letter.

In the main:

Create a for loop that iterates for each student, in this case 10 students. Inside the loop:

Ask the user to enter the number of grades for student. Using this value, create a grades array.

Create another for loop (inner for loop) that will set the grades array using the values entered by the user.

When the inner loop is done, call the findLetterGrade() function passing the grades array and numOfgrades as parameter and print the result

what is the purpose of file extensions apex

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The extension apex stands for the Android Pony Express Package file.

It is a zipped compressed package file that Google and other Android device manufacturers use for distributing updates to low-level system libraries on Android devices.  It contains security updates deployed to Android devices. For example, instead of waiting to publish a full system upgrade, a device manufacturer can update an individual library to apply a patch or add a system feature.

A. They execute mail merge options

B. They tell the operating system what kind of document you are creating

C.They set up files in a organized hierarchy

D. They run spelling checker and grammar checker

This help y’all figure it out easier? These are the options apex shows

Other Questions
Which part of our control system is working when our skin realizes it is feeling pressure?A. SensorsB. Communication center C. Control centerD. Targets/Response Which model would best describe the population of a city if it increases in size by a factor of two every 29 years?A)doubling time growth modelB) learning curve modelC) logistic curve modelD) half-life decay model PLEASE HELP ME!!!! thank u Items owned that could be sold for cash what is the purpose of a society's oral tradition If other people see you differently, youll end up seeing them differently too. WHAT DOES THIS QUOTE MEAN TO YOU ???? IF YOU CAN SEND ME THE REST OF THE ANSWERS TO THE QUESTIONS ON THE PHOTO ILL SEND YOU 3 bucks on Apple Pay what is the value of x in the equation 2(3x -4) = 10 Please i need this done ASAP!!!!!!!!! Write the following statement in if-then form. "All freshman are required to attend orientation." Can we say that the mantle is in a viscous stateis that correct (or is it solid?) Simplify the expression: -7x + 4 - 11 - 7x + 7 + 2x + 12x * 1 ptsThe day after a protest held by an employee's union, 32 out of 40 employees did notshow up for work at the shoe factory. Which represents the percent of the employeeswho did show up for work the day after the protest?O 8%32%O 20%O 80%Question 3 Relative meansyouto the person watching the train go by. The book is not moving toDistance vs. DisplacementAbigail leaves her house and travels 4 blocks north, 4 blocks west, 4 blocks south andthen 4 blocks east How far did she go?There are 2 correct answersAnswer 1:Answer 2 In this figure, ABCD and m1=110.What is m5? Question 1 Which statement best describes why pathogens are harmful?A Pathogens can never be destroyed.B Pathogens disrupt homeostasis by infecting cells.C Pathogens deliver oxygen to body cells. D Pathogens produce antibodies that will then kill the host. why is it important that the early colonies like maryland allowed some degree of religious freedom?PLEASE I NEED IT ASAP!! Why natural science important? The contact between the Native Americans and the Europeans brought about the What message does the Ghanaian national anthem give??? 5. Fireplaces for cooking were used both inside and outside the house by which prehistoric culture? Someone help quick I dont know if Im right on the question