• Comments are blank which can be blank entered into documents


. Can be blank by clicking on Previous and blank icons in the blank group


electronically

notes

Comments

Next

navigated ​

Answers

Answer 1

Answer:

"can be blank by clicking on previous and blank icons in the blank group...

navigated

Explanation:

Been a while since i learned this this is a edu guess.


Related Questions

Assume that your body mass index (BMI) program calculated a BMI of 20.6. What would be the value of category after this portion of the program was executed?

# Determine the weight category.
if BMI 39.9:
category = "morbidly obese"
elif BMI <= 24.9:
category = "normal"
elif BMI <= 39.9:
category = "overweight"
The value of category will be (normal/overweight/.underweight/morbidly obese)

Answers

Answer:

normal is the answer

Answer:

normal

Explanation:

python 3.4 code practice question 2

“Write a program to convert a fraction to a decimal. Have your program ask for the numerator first, then the denominator. Make sure to check if the denominator is zero. If it is, print out “Error - cannot divide by zero.”

Answers

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

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

if denominator != 0:

   print(numerator/denominator)

else:

   print("Error - cannot divide by zero.")

The fraction can only be described as "undefined" if the denominator is ever 0.

Explain about the denominator is zero?

The mathematical error (not specified) of dividing a number by zero can be graciously overcame by using exception handling. The output of division by zero will be displayed as infinity if you write code without employing exception handling, which cannot be further processed.

A fraction cannot have zero as the denominator since zero cannot be divided by anything. The reason is that you get back 6 when you multiply the answer, 2, by the divisor, 3. Because the denominator cannot be zero, the fraction is invalid and has no value.

"Enter a number: " input = int numerator

Denominator: int ("Enter a number: "); input;

if the numerator!= 0

print(numerator/denominator)

else:

print("Error - cannot divide by zero")

("Error - cannot divide by zero.")

To learn more about denominator is zero refer to:

https://brainly.com/question/17546250

#SPJ2

Question # 4
Dropdown
Choose the correct term to complete the defintion of your user-defined data type.
v player
life = 3
magic = False
name =

Answers

Answer:

class

Explanation:

edg2020

Answer: class

Explanation: got it right on edgen

Question #3
Multiple Select
Which statements are true about a user-defined data type? Select 3 options.
It can only include one data type.
I
It can include bool data.
It cannot be changed once you define it.
It can include string data.
O It can include numeric data,

Answers

An attribute of a piece of data known as a “data type” instructs a computer system how to interpret that data's value.

What are the different type data type and their uses?

Data is categorized into different types by a data type, which informs the compiler or interpreter of the programmer's intended usage of the data.

Most computer languages provide a variety of data types, including integer, real, character or string, and Boolean.

The operations that can be performed to create, alter, and use the variable in another calculation without running the risk are specified by the data type.

Knowing the various types of data makes it easier to make sure that the values of each property are as expected and that the data is gathered in the right format.

A programming language is said to be strongly typed if it only permits operations on variables that respect their data type.

Therefore, It can include string data, bool data, numeric data.

Learn more about data type here:

https://brainly.com/question/14581918

#SPJ2

Answer:

A D E

Explanation:

Please Help Me
If you had an acer chrombook and it was family linked you had two accounts on it. (The administrater which is the family linked account and a school account) and you forgot the original password to the account how do you completely reboot the computer and start all over again.Like completely reboot like its new.

Answers

Answer:

Sign out of your Chromebook.

Press and hold Ctrl + Alt + Shift + r.

Select Restart.

In the box that appears, select Powerwash. Continue.

Follow the steps that appear and sign in with your Google Account. ...

Once you've reset your Chromebook:

Explanation:

Hope this helps. :)

CA U ANSWER IN 5min. well lets find out ANSWER HERE. :)

Answers

Answer:

Both are True

I hope this helps!

Answer:

Explanation:

12 is 1

and 13 is false but i aint so sure

why do many experts recommand longer time horizonal if you are doing high risk investment

Answers

Answer:In general, the longer your time horizon, the better you can handle fluctuations in value and take more risk in order to reap greater rewards.

Explanation:

7.4 Code Practice: Question 2
Adjust the code you wrote for the last problem to allow for weighted classes. Add a parameter weighted ( 1 = yes, 0 = no) and then return the correct number for the GPA. Weighted classes get one extra point on the GPA value.

I could really use some help on this and 7.5 (I’ll ask that question for 7.5 later)

Answers

def GPAcalc(grade, weighted):

   grade = grade.lower()

   dictionary = {"a": 4, "b": 3, "c": 2, "d": 1, "f": 0}

   if weighted == 1 and grade in dictionary:

       return "Your GPA score is: "+str(dictionary[grade] + 1)

   elif weighted == 0 and grade in dictionary:

       return "Your GPA score is : "+str(dictionary[grade])

   else:

       return "Invalid"

print(GPAcalc(input("Input a letter grade: "), int(input("Is it weigthed? (1= yes, 0= no)"))))

I modified the code a bit to cut down on the use of if and elif statements. If you need me to change it, I will. Best of luck.

The program is an illustration of conditional statements.

Conditional statements are statements whose execution is dependent on its truth value.

The program in Python, where comments are used to explain each line is as follows:

#This initializes the dictionary

dict = {"a": 4, "b": 3, "c": 2, "d": 1, "f": 0}

#This gets input for grade

grade = input().lower()

#This gets input for the weighted average

weighted = int(input())

#If the weighted average is 1, and the grade is in the dictionary

if weighted == 1 and grade in dictionary:

   #This prints the GPA score

   print("Your GPA score is: "+str(dict[grade] + 1))

#If the weighted average is 0, and the grade is in the dictionary

elif weighted == 0 and grade in dictionary:

   #This prints the GPA score

   print("Your GPA score is : "+str(dict[grade]))

#Otherwise

else:

   #The grade is invalid

   print("Invalid")

Read more about similar programs at:

https://brainly.com/question/19241597

White lines
A.separate traffic lanes moving in opposite directions
B.separate traffic moving in the same direction
C.indicate a handicap parking space
the
D.indicate temporary parking

Answers

Answer:

Its B                                                                                                                                            

Explanation:

Answer: B

Explanation:

1. What is a digital networking app?

Answers

Digital networking is building relationships through social media. Just like traditional networking is an ongoing thing, in the digital world, you read people's posts, comment and share them. You interact and again and again.

Answer:

Digital Networking is a web based and mobile app that makes networking today easy and meaningful.

Explanation:

If you want to change a number in a cell, you must delete it first before entering a new number
True
False
This is with Google Sheets.

Answers

Answer:

true

Explanation:

hope this helps.................

Which of the following represents a backup system that will aid in recovery for any type of disaster or disruption?

Transfer operations
Integrity operations
Redundancy operations
Independent operations

Answers

Answer: redundancy operations

Explanation:

yoooooo guys what up

can yall help
In three to five sentences, compare and contrast paraphrasing and summarizing.
will mark brainlist

Answers

Answer:

To put simply, paraphrasing refers to the conversion of the original or the concerned source material into the own or personal words of the reader or the interpreter. In contrast, summarizing mainly refers to the conversion of the main idea/concept/s or content of any original text or source material into the writer's or interpreter's own words.

Explanation:

Paraphrasing commonly engages putting any original text of any source material into the own words of the reader or the interpreter of the material.On the other hand,summarizing mainly involves converting the central idea/s or the content/s of the source material into the own words of the reader or interpreter of the source material.

Paraphrasing involves selection of any specific broader section or part of the source material and its conversion into a shorter version in terms of the own words of the reader or the interpreter,whereas,summarizing construes selection of the overall of main idea/s or content of the source material and putting it into a condensed form,expressed in the own words of the reader or interpreter.

Select the four elements typically included as part of a motherboard.

chipset
webcams
speakers
expansion cards
keyboard
sockets
clock generator

Answers

Answer:

Chipset, Expansion Cards, Sockets and Clock generator

Explanation:

Answer:

2

3

5

6

Explanation:

on edg

The sheep in the image below is an example of which of the following?

balanced space
positive space
negative space
neutral space

Answers

Answer:

balanced space.

Explanation:

This is a edu guess.

is spin to win paying or is a scam app​

Answers

Answer:

scam bro.

Explanation:

Answer:

yes it's a scam app when I tried it and after a few days it hasn't been delivered to my house though

I need help with this question!

Answers

Answer:

5 and 10

Explanation:

Given

The above code segment

Required

Determine the outputs

Analysing the code segment line by line

[This initialises c to 0]

c = 0

[The following iteration is repeated as long as c is less than 10]

while (c < 10):

[This increments c by 5]. Recall that c is initially 0. Hence, c becomes 0 + 5 = 5

c = c + 5

[This prints the value of c which is 5]

print(c)

The iteration is then repeated because the condition is still true i.e. 5 is less than 10

c = c + 5 = 5 + 5 = 10

[This prints the value of c which is 10]

print(c)

The iteration won't be repeated because the condition is now false i.e. 10 is not less than 10.

Hence, the output is 5 and 10.

What are the requirements to access email on the web?

A. a webmail provider's URL and a password
B. a webmail provider's URL a username and a password
C. a credit or debit card, a username, and a password
D. an email server ID and a password

Answers

Answer:

it's B

Explanation:

You need to have a provider (such as outlook) and a username/password

It’s either A or D u Choose now

How do you create multiple columns in Word?

A.Click Home>Paragraph, Alignment



B.Click Page Layout > Columns, Click the column layout you want



C.Select the text or click in the section you want to change, Click Page Layout > Columns, Click the column layout you want.

Answers

Answer:

I think it's B

Explanation:

it sounded right to me.

. While ________is the protocol used to view web pages, browsers also support protocols for functions such as transferring large files.

A)HTML
B)HTTP
C)FTP

Answers

Answer:

HTTP

Explanation:

Answer:

B) HTTP

Explanation:

This is hypertext transfer protocol.

There are many apps that help find you cheaper gas. If the cost of a gallon of regular gas is $3 at one station and $3.50 at another gas station and your car takes 12 gallons to fill up your car. How much extra are you spending at the more expensive gas station? $5 $6 $7 $8

Answers

Answer:

$7

Explanation:

Why was that feast held

Answers

Answer:

if its christianity then its his and his diciples but for tech?

Explanation:

i dont really know

Answer:

because he wants to pray to god that he has such a good day in church, i guess.

Explanation:

what best defines "opportunity cost"

Answers

Answer: You have a oputernity to buy it so say there are other people are not looking but they want it its like an auction you have to pretty much bid

Explanation:

what is the difference between second generation and third generation of computer​

Answers

Answer:

The main difference between second generation (2G) and third generation (3G) technology is data. 2G services were developed with mostly voice services in mind, but are capable of providing relatively slow (14.4kbps) speed data services.

______________ is a pre-designed format to help users with the creation of a document, like a flyer, brochures, or resumes. What's the answer for the blank?

A.PowerPoint
B.Excel
C.Template
D.Pie Chart

Answers

The answer should be Template

DO NOW
1. What are the 4 things that make a computer a
computer?

Answers

Answer:

CPU, GPU, Hard drive, Video Card

Explanation:

What is the nature of the news in the film "EPIC 2015"?

Answers

Answer:

The narrator of "epic 2015" describes the year 2015 as the "worst of times" because it was a collection of trivial information that may not be true. There is another reason The narrator of "epic 2015" describes the year 2015 as the "worst of times" because we will not have news organizations.

Explanation:

The narrator of EPIC 2015 describes it as the collection of trivial news ad information that is not necessarily true all the time.
Hence, the news in 2015, according to the narrator of EPIC 2015 is created y apathetic journalists who are not committed to truth. It was described as the worst of times because we will not have news organisations.

Choose the proper term to describe each of the following examples.
senate.gov:
IP Address
SMTP account name
domain name

23.67.220.123:
IP Address
SMTP account name
domain name

Answers

Answer:first 1

Explanation:

what are the important reason to practice Opreational Health and Safety procedure?

Answers

To prevent injury

to protect the environment

its the law you can get fined a lot of dollars

Hope you get the question right :)

JAVA
Take two String inputs of the same length and merge these by taking one character from each String (starting with the first entered) and alternating. If
the Strings are not the same length, the program should print "error".
Sample Run 1:
Enter Strings:
balloon
atrophy
baatlrloopohny

Sample Run 2:
Enter Strings:
terrible
mistake
error

Answers

import java.util.Scanner;

public class JavaApplication83 {

   

   public static void main(String[] args) {

       Scanner scan = new Scanner(System.in);

       System.out.println("Enter Strings: ");

       String word1 = scan.nextLine();

       String word2 = scan.nextLine();

       String newWord = "";

       if (word1.length() == word2.length()){

           for (int i = 0; i < word1.length(); i++)

           {

               newWord += word1.charAt(i) +""+word2.charAt(i);

           }

       

       }

       else{

           newWord = "error";

       }

       System.out.println(newWord);

   }

   

}

I hope this helps!

Other Questions
answer correctly for brainleist! (have to be correct) and u get 10 pts! ASAP Please help fast Russia is located on which two continents?A.Asia and AfricaB.Oceania and AfricaC.Asia and EuropeD.Africa and EuropePlease select the best answer from the choices providedABCD Which is NOT true about the Boston Massacre?A) The colonists instigated the fight by throwing snowballsB) 28 Colonists were killed by British SoldiersC) Paul Revere made an inaccurate engraving of the eventD) One of the men killed was an African American I need some new bands to listen to please say some but no country pleaseI like k-pop, rock, pop, emo rap, and hip hop Based on this document state the reason the bonus marchers went to Washington Read this excerpt from an argumentative essay. A celebritys image is not real. It is an illusion created by makeup, publicists, professional photographers, and the media. Which answer choice provides the best evidence to support the ideas in the excerpt? A recent survey shows that more than half of kids said that their role models are celebrities rather than people they know. Celebrity stylist Johan Blizeck says, "Every celebrity has flaws. They only appear to be perfect because they have lots of professional help." An anonymous celebrity said, "I dont want to be role model and I never tried to be one. I just want to make money." Examples of celebrities whom kids look up to include professional athletes, movie actors and actresses, models, and musicians. A seismograph is usually placed on the surface of the ground to feel any vibration.TrueFalse Pablo created the bar model and equation after paying a $9.79 lunch bill with a $20 bill.A bar diagram. The top bar contains 20.00. The bottom bars contain c and 9.79.20.00 = c + 9.79What is the value of c, and what does it represent in this problem?The value is $10.21, and it shows the cost of Pablos lunch.The value is $29.79, and it shows the cost of Pablos lunch.The value is $10.21, and it shows the change Pablo received.The value is $29.79, and it shows the change Pablo received. QuestionWhere are mountains being continuously formed under water?A. In the Pacific ocean where an oceanic plate is subducting beneath acontinental plate. B.In the Atlantic ocean where the plates are separating. Identify the slope HELP VERY QUICK help please ! dont know if im doing it correctly Help plsssssssssssssssssssssss thanks so much Why is there a need of communication among people especially individuals with different backgrounds? Justin has a crate that is 8 feet long 2 feet wide and 3 feet tall decide weather each of the crate sizes described below has the same volume as Justin's crate In "The Tell-Tale" by Edgar Allan Poe, the narrator claims to know the old man is making excuses for the noises he hears. Why is the narrator saying this? Support your answer. Find the value of x so the function has the given value. t(x)=2x-4;t(x)=1/2 Don operates a taxi business, and this year one of his taxis was damaged in a traffic accident. The taxi was originally purchased for $17,000 and the adjusted basis was $1,500 at the time of the accident. The taxi was repaired at a cost of $2,750 and insurance reimbursed Don $730 of this cost. What is the amount of Don's casualty loss deduction Divide. Write the quotient in lowest terms. 1 7/94/5 Select all the correct answers.Which expressions are equivalent to this exponential expression?(52)-3.545-4250 0 0 0 0525-1051ResetResetNext HELP PLEASE! Thank you! 15 POINTS