Fill in the blank
What is the output of this program?
age = 4
if age > 5
print("more")
else
print("less")
Output:

Answers

Answer 1

age = 4

if age > 5:

print("more")

else:

print("less")

Answer: Less

Explanation: 4 is less than 5, so it will print less. I just tried it out on PyCharm.


Related Questions

When viewing the Mail Merge Recipients dialog box, what kinds of actions can you perform? Check all that apply. find recipient filter recipients print recipients sort column headings select/deselect recipients

Answers

Answer:

a,b,d,e on edg 2020

Explanation:

Answer:

Everything is correct except option 3/letter C.

Explanation:

A, B, D, and E

What are technology trends in science check all that apply

Answers

Answer:

3D Printing Molecules.

Adaptive Assurance of Autonomous Systems.

Neuromorphic Computing (new types of hardware) and Biomimetic AI.

Limits of Quantum Computing: Decoherence and use of Machine Learning.

Ethically Trustworthy AI & Anonymous Analytics.

Explanation:

What is the tag used for?

Answers

Answer:

The title tag is an HTML title element critical to both SEO and user experience that is used to briefly and accurately describes the topic and theme of an online document. The title tag is displayed in two key places: Internet Browser – Title Tags display in the top bar of internet browsers.

Explain the following terms as used in word processin
(a)
Drop cap
(b) A superscript
An indent​

Answers

Answer:

A drop cap (dropped capital) is a large capital letter used as a decorative element at the beginning of a paragraph or section. The size of a drop cap is usually two or more lines.

a superscript is a character(s) half the height of a standard character and printed higher than the rest of the text.

In word processing, the word indent is used to describe the distance, or number of blank spaces used to separate a paragraph from the left or right margins.

4.1 lesson practice

Answers

Can you please include the picture of the question. Thank you! :D

help help help help help help help help

Answers

Answer:

ok witch qeston

Explanation:

Answer:

2

Explanation:

What were the first computers made

Answers

Answer:

In 1943 he ENIAC computing system was built by John Mauchly and J. Presper Eckert

Explanation:

Answer:

ENIAC (Electronic Numerical Integrator and Computer)

What is Interface in computers

Answers

Answer:

An interface could be the design of the homescreen or the way a shell of a computer is designed. I could be wrong tho......

Explanation:

In which of the following scenarios would it be best to use a for loop?
1. When you need to stop looping based on input from the user
2. When you need to check that a user's input is valid.
3. When you want to ask the user for 10 numbers
4. When you need to be able to use the block of code in many places in your program

Answers

Answer:

I would say 3 is the most likely answer ("When you want to ask the user for 10 numbers").

You use for loops to perform a task x times usually.

WILL MARK QUICKEST CORRECT ANSWER AS BRAINLIEST 11 PTS


Gary says, “Ports are where data enter a network before it reaches a gateway. The data travel via transmission media.”


Explain why Gary is right or wrong.



A) Gary is wrong. Ports are where connectors attach to destinations, not where data enter the network.


B) Gary is wrong. Gateways block data, so data don’t enter through them.


C) Gary is right.

Answers

Answer: Gary is wrong. Data do not travel via transmission media.

Answer:

the answer is Gary is wrong. Ports are where connectors attach to destinations, not where data enter the network.

Explanation:

correct on ed

Part 1 Create a program that asks the user for a temperature in Fahrenheit, and then prints the temperature in Celsius. Search the Internet for the correct calculation. Look at Chapter 1 for the miles-per-gallon example to get an idea of what should be done.

Part 2 Create a new program that will ask the user for the information needed to find the area of a trapezoid, and then print the area.

Part 3 Create your own original problem and have the user plug in the variables.

IN PYTHON

Answers

Answer:

Written in Python

import math

#1. Temperature Conversion

degreeF = float(input("Degree Fahrenheit: "))

degreeC = (degreeF - 32) * 5/9

print("Degree Celsius: "+str(round(degreeC,2)))

#2. Area of Trapezoid

Base1 = float(input("Base 1: "))

Base2 = float(input("Base 2: "))

Height = float(input("Height: "))

Area = 0.5 * (Base1 + Base2) * Height

print("Area: "+str(round(Area,2)))

#3. Addition of Two Numbers

Num1 = float(input("Number 1: "))

Num2 = float(input("Number 2: "))

print("Result: "+str(Num1 + Num2))

Explanation:

This line imports the math library

import math

Program 1 starts here

#1. Temperature Conversion

This line prompts users for input in degree Fahrenheit

degreeF = float(input("Degree Fahrenheit: "))

This line converts to degrees Celsius

degreeC = (degreeF - 32) * 5/9

This line prints the converted degree

print("Degree Celsius: "+str(round(degreeC,2)))

Program 2 starts here

#2. Area of Trapezoid

The next three lines prompts user for necessary inputs

Base1 = float(input("Base 1: "))

Base2 = float(input("Base 2: "))

Height = float(input("Height: "))

This line calculates the area

Area = 0.5 * (Base1 + Base2) * Height

This line prints the area

print("Area: "+str(round(Area,2)))

The third program begins here. I've decided to write a program that sums two numbers

#3. Addition of Two Numbers

The next two lines prompt user for inputs

Num1 = float(input("Number 1: "))

Num2 = float(input("Number 2: "))

This line calculates and prints the sum

print("Result: "+str(Num1 + Num2))

what is the output? there are no answer options and I'm completely lost.

>>>answer = "five times"

>>>answer[2:7] ​

Answers

The string answer = "five times"

All strings start at index 0 and end at the length of the string minus 1

So, if we count appropriately, index 2 is v and index 7 is m

answer[2:7] goes from v to m including v but not m, therefore,

answer[2:7] = "ve ti"

In a user interface, a screen is best understood as
A.a console


b.a variable


c.an input


d. an element

Answers

Answer:

d. an element

Explanation:

User Interface design is simply the designs that are used to model a product like an application.

In a user interface, a screen is best understood as an element.

Explain the five most important things that should be taken into consideration when designing a computer network.

Answers

Explanation:

Many computer experts (networkers) believe that you consider the following when designing a computer network:

Budget: By considering the amount available to be spent on setting up the computer network, it allows buying the best quality equipment considering the available funds.Type of network connectivity: This involves determining whether the network would only be a wireless connection or wired connection using cables, or involves both combinations.Type of security: This involves deciding the type of network security to be installed. Answering: Would it cloud systems be used? What type of firewall systems to use, etc?The type of hardware and software: This is very important in other to determine how optimal the network would be.Disaster recovery plan: For example, what type of back-up power would be required or affordable, solar power, or generator?

What sequence is used to create a brochure document from a template?

Answers

Answer:

computer is used to create a voucher document

What do you mean by this statement,
“Life is not a grand harmony, Conflict exist. We must learn how to live with it, use it constructive and minimize it’s destructive aspect”.

Answers

Answer with Explanation:

The statement above means that life is not always about happy moments; rather, it also includes unhappy times which teaches us many lessons. People should be aware of this, so that they'd also look at the good side of unhappy/sad moments in life. For example, when a beloved person dies, it is natural for one to cry. However, it is also important to stand up after that experience and become even stronger. This is a constructive way of moving on with life. A destructive aspect would be, not being able to move on and being stuck on one's death without thinking about the future anymore.

The best explanation of the given statement is:

If there is mutual understanding, then this would help in the conflict resolution to minimize the destructive impact.

What is Mutual Understanding?

This refers to the ability of a person or multiple persons to be able to have different points of view but also to understand that one view is NOT absolute.

With this in mind, we can note that because life is not a grand harmony, there will always be conflict, but if there is mutual understanding, then this would help in the conflict resolution to minimize the destructive impact.

Read more about conflict resolution here:

https://brainly.com/question/2267795

What statement best describes percentage values in CSS?
A.It's the fraction of the value that came before it.
B.It's the smallest controllable element on the screen.
C.It's always the width of an indent.
D.It's a value that is relative to the width of its HTML element or to the page.

Answers

Answer:

Im sorry if its wrong but i believe its D.

Explanation:

D. It's a value that is relative to the width of its HTML element or to the page.

Answer:

The answer is

Explanation:

D. It's a value that is relative to the width of its HTML element or to the page.

Given storeMonthlySales NUM STOREST[NUM MONTHST[NUM DEPTS] is a three-dimensional array of floating point values. Write a C++ function, printMonthlySales, to calculate and print the total value of sales during a specific month by each department and in each store plus totals by store and department and overall sales. The return type of the function is void and the function must have 2 input parameters Sales array and the month the user specified (edit for correct month values!). The constants NUM STORES, NUM_MONTHS, and NUM_DEPTS must be accessed globally by defining the following global variables #define NUM DEPTS 2 #define NUM STORES 2 #define NUM-MONTHS 12 or const int NUM-MONTHS-12; or const in NUM_DEPTS 2; or const int NUM_STORES 2; The array Sales is initialized by the following statement within main() float storeMonthlySales[NUM STOREST[NUM MONTHS1[NUM DEPTS]- 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3.0, 3.1,3.2, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 2.1, 2.2,2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3.0, 3.1, 3.2 Output: Sales for month of value (where value represents "January", "March", etc.) Dept # value value col value sum Dept # Store Total Store # value row value sum tore # value row value sum Dept Total col value sum total overall sales User enters a new month as many times as they wish and run printMonthlySales against the new month alue Validate user input ("y" or "n") when asking if the user wants to enter a new set of values

Answers

Answer:

Y

Explanation:

YEZ

There’s a scientific theory out there that says that our brain uses an algorithm to create our thoughts and it’s called the Theory of Connectivity. This theory suggests that information comes into our brains, is processed, stored, and then results in an output. Does this process sound familiar to you? In what ways do our bodies take in input and respond, sometimes without our control? Give two examples

Answers

Answer:

1. Yes, the process sounds familiar to me. It looks like the mechanism of operation of the computer.

2a. Through reflex actions, our bodies take in input and respond sometimes without our control.

b. Two examples are sneezing and the scratch reflex.

Explanation:

The principle of the theory of connectivity which involves the input, processing, storage, and output of results is similar to the workings of the human body which has to accept input from the external surroundings which it processes and provides an output for. Reflex actions are involuntary actions made in response to a stimulus. When the body receives the input, the response is made most times before we are aware of it.

Scratch reflex occurs when the sensory neurons located on the periphery of our skins are activated due to stimuli that could be in the form of touch, an insect bite, etc. Sneezing is another example of a reflex action.          

Answer:

The process does sound familiar to me; it is like the mechanism of operation of the computer. Through reflex actions, our bodies take in input and respond sometimes without our control, such as shivering, blinking, and sneezing.

Explanation:

Instructions PhoneNumbersjava + 1 import java.util.*; 2 class PhoneNumbers 3 public static void main(String[] args) 4 //write code here A personal phone directory contains room for first names l and phone numbers for 30 people. Assign names and phone numbers for the first 10 people. Prompt the user for a name, and if the name is found in the list, display the corresponding phone number. If the name is not found in the list, prompt the user for a phone number, and add the new name and phone number to the list. Continue to prompt the user for names until the user enters quit. After the arrays are full (containing 30 names), do not allow the user to add new entries. Use the following names and phone numbers: Name Phone # Gina Marcia (847) 341-2392 Rita Jennifer (414) 234-0912 Fred Neil Judy (608) 435-0434 Arlene (608) 123-0312 LaWanda (920) 787-9813 Deepak (930) 412-0991 (847) 341-0912 (847) 354-0654 (414) 435-6567 (608) 123-0904

Answers

Answer:

What is the question?

3.3 Code Practice: Question 1
Instructions

Test if a date is a payday based on the day of the month (15th or the 30th).
Sample Run

Enter today's day numerically: 17
Sorry, not a payday.
Enter today's day numerically: 30
It's payday!

please help in python!

Answers

Answer:

date = int(input("Enter today's day numerically: "))

if date == 15 :

 print("It's payday!")

elif date == 30 :

 print("It's payday!")

else:

 print("Sorry, not a payday.");

Explanation:

The program illustrates the use of if-conditions

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

#This gets integer input for day

day = int(input("Enter today's day numerically: "))

#This checks if day is 50 or 30

if day == 15 or day == 30:

   #If yes, this prints payday

   print("It's payday!")

#If otherwise

else:

   #If otherwise, this prints not a payday

   print("Sorry, not a payday.")

At the end of the program, the program outputs payday or not a payday; depending on the input from the user

See attachment for sample run

Read more about Python programs at:

https://brainly.com/question/22841107

When programming, the word "execute" means which of these?
to kill
to edit
to run
to revise

Answers

Answer:

to run!

Explanation:

hope this is helpful!

which of the following best describes the relationship between oxygen and chlorine

Answers

Answer:

Oxygen - More size, Less covalent, Less electronegative. Chlorine - More size, Less covalent, Less electronegative.

These are the things they have in common.

What is Groovefunnels?

Answers


GrooveFunnels is a game-changer and it’s disrupting the market quite a bit.

Explanation:

Griovefunnels is a suite of digital marketing tools desinged to help you run a sucessfull online business .

What does B the represent

Answers

Answer:

The B represents a boolean.

What is the name for the strip of frequently used icons on a computer? O App O Program O Toolbar O Utilities panel ILL MARK YOU BRAINEST​

Answers

Answer: The name of the strip is the Toolbar.

Answer:

its quite obvious toolbar

Explanation:

Write two statements that each use malloc to allocate an int location for each pointer. Sample output for given program:

Answers

Answer:

In the following code, you can see the usage of malloc.

#include <stdio.h>

#include <stdlib.h>

int main(void) {

  int* numberPointer1 = NULL;

  int* numberPointer2 = NULL;

  numberPointer1 = (int *)malloc(sizeof(int *));

  numberPointer2 = (int *)malloc(sizeof(int *));

  *numberPointer1 = 44;

  *numberPointer2 = 99;

  printf("numberPointer1 = %d, numberPointer2 = %d\n", *numberPointer1, *numberPointer2);

  free(numberPointer1);

  free(numberPointer2);

  return 0;

}

Explanation:

Malloc allocates memory in the heap according to the input size and returns a pointer to the location where it was allocated, with an extra, it clears all allocated space.


Select a student organization belonging to the Career and Technical Student Organizations
participate.

Answers

Answer:

You should choose a CTSO related to the field of computers. Research online and create a brief report on the mission of the organization, and state the reason why you want to participate in this organization. You may use online resources to find information about the organization. Ensure you cover the following points: List the goals and purposes of this organization. Include the benefits, duties, and responsibilities of being a member of the student organization. Provide a brief description of the requirements and the process of gaining membership of the organization. Describe the opportunities provided by this organization for developing leadership skills.

PLEASE HELP!!!

For this activity, you will create two designs for the same project. For example, you might choose to create a CD cover for your favorite band’s newest release, or you might want to design a menu for the local deli. No matter what you decide for your subject matter, the two designs must involve different media. One of these media will be an image-editing program, such as Inkscape. You will learn more about the basic tools available in Inkscape later in this lesson. The two designs should incorporate different techniques. For example, you might make one design abstract, while making the other more realistic. Be sure to save both of your designs. Scan or take a picture of the design that wasn’t created in an image-editing program. You will submit this item later in this lesson as your portfolio item. Select the link to access the Techniques Activity Rubric.

Answers

Answer:

I'm not exactly sure on what the question is, but from reading it, I determined that you'll be creating 2 different designs using Inkscape/Photoshop. I'm leaving 2 of my designs in here for you to use on your project. Unknown on what to do about the design that wasn't created in an image-editing program.

Write a program which has your own versions of the Python built-in functions min and max. In other words, write the functions called maximum(aList) and minimum(aList) that do the job of the built-in Python functions max(aList) and min(aList)respectively. They should take a list as an argument and return the minimum or maximum element . Test your functions with the list [7, 5, 2, 3, 1, 8, 9, 4]. Hint: Pick the first element as the minimum (maximum) and then loop through the elements to find a smaller (larger) element. Each time you find a smaller (larger) element, update your minimum (maximum).

Answers

Answer:

def maximum(aList):

   highest = aList[0]

   for number in aList:

       if number > highest:

           highest = number

       

   return highest

def minimum(aList):

   lowest = aList[0]

   for number in aList:

       if number < lowest:

           lowest = number

       

   return lowest

print(maximum([7, 5, 2, 3, 1, 8, 9, 4]))

print(minimum([7, 5, 2, 3, 1, 8, 9, 4]))

Explanation:

Create a function named maximum that takes one parameter, aList

Initialize the highest as the first number in aList

Create a for loop that iterates through the aList. Compare each number in aList with highest. If a number is greater than highest, set it as new highest.

When the loop is done, return the highest

Create another function named minimum that takes one parameter, aList

Initialize the lowest as the first number in aList

Create a for loop that iterates through the aList. Compare each number in aList with lowest. If a number is smaller than lowest, set it as new lowest.

When the loop is done, return the lowest

Call the functions with given list and print the results

Other Questions
3.6 + 8.3 find the sum plz need help Which sentence best expresses a theme developed in Julie of the Wolves?1: Traditional wisdom is often threatened by modern ways of life.2: An eskimo girl learns the value of listening to her elders.3: The theme is the value of traditional wisdom.4: Miyax's decision to run away actually leads her to her father. PLZ I HAVE 10M TO GET THIS WITH 13 QUESTIONS Which of the following is the primary reason for using juries in trials involving serious crimes? A. It limits the effect of corruption from government officials. B. It limits government accountability for a judges sentencing. C. It prevents harsh punishments like the death penalty from being used too often. D. It allows for faster trials. 4 is 1/4 of what number? Which is TRUE of Southern industry in the antebellum era of the U.S.?1.It accounted for about 1/3 of America'smanufacturing2.It focused on banking and finance.3.It didn't really exist.4.It produced goods that were rarely exported.5. It provided about 60% of U.S. exports A bag contains 120 marbles. Some are red and the rest are black. There are 19 red marbles for every black marble. How many red marbles are in the bag? Explain your reasoning. What is urbanization and how did it affect the population density? Mrs. Johnson wants to order pizza for her students. There are 21 students in her class Her goal was for each student to get 1/5 of a pizza. How many pizza's does she need to order? What is the translation of the following sentence in english According to the Yerkes-Dodson Law: A. To get your best performance, be as stressed as possible. B. Stress can help improve performance. C. Maximal performances are achieved when you have no stress. D. Everyone needs the same level of stress to succeed. At a bakery, Victor makes 20 cupcakes. He puts themin equal rows with 10 cupcakes in each row. Whichcalculation can be used to find the number of rows ofcupcakes Victor makes? Evaluate 2p - 99 for p = 7 and g = 6.The value of the expression is Approximately how deep below the ground are they capable of digging in meters? (b1) Waterways is thinking of mass-producing one of its special-order sprinklers. To do so would increase variable costs for all sprinklers by an average of $0.70 per unit. The company also estimates that this change could increase the overall number of sprinklers sold by 10%, and the average sales price would increase $0.20 per unit. Waterways currently sells 491,740 sprinkler units at an average selling price of $26.50. The manufacturing costs are $6,863,512 variable and $2,050,140 fixed. Selling and administrative costs are $2,651,657 variable and $794,950 fixed. If Waterways begins mass-producing its special-order sprinklers, how would this affect the company Which is it , if you are right I will give brainliest Frank has been working with a patient for several days. He reports to the registered nurse that the patient requires additional care. What role is Frank performing here?assistantadvocatetechnicianfriend Humans are unusual because our cultural practices can actually change our environmental circumstances. We can change the environment in which natural selection acts on our traits. Describe how this process has played out in the evolution of adult lactose tolerance. Describe how this process has played out in the maintenance of the sickle-cell trait. Can you hypothesize any similar situations where our future evolution may be influenced by cultural practices we have today Which inference about the speaker is best supported by the following passage (lines 23-27)?Yeah, it was awful what you guys did to us.It's real decent of you to apologize.No, I don't know where you can get peyote.No, I don't know where you can get Navajo rugs real cheap.No, I didn't make this. I bought it at Bloomingdales.A. The speaker repeatedly faces common stereotypes and perceptions about Native American culture,B. Native Americans like giving advice to people about things like Navajo rugsC. The speaker of the poem likes to shop at Bloomingdales.D. The speaker of the poem is looking for an apology from the person asking the questions, Which expression has a value of 2/3 when x = -5? Find the difference (10m+3)-(4m-2)