Write a calculator program that will allow only addition, subtraction, multiplication & division. Have the
user enter two numbers, and choose the operation. Use if, elif statements to do the right operation based
on user input. using python

Answers

Answer 1

num1 = float(input("Enter the first number: "))

num2 = float(input("Enter the second number: "))

operation = input("Which operation are you performing? (a/s/m/d) ")

if operation == "a":

   print("{} + {} = {}".format(num1, num2, num1+num2))

elif operation == "s":

   print("{} - {} = {}".format(num1, num2, num1-num2))

elif operation == "m":

   print("{} * {} = {}".format(num1, num2, num1*num2))

elif operation == "d":

   print("{} / {} = {}".format(num1, num2, num1/num2))

I hope this helps!


Related Questions

Match the AI artist with their creation:

Artists:
David Cope, Brian Foo, Jordan Wirfs Brock, Refik Amarillo, Obvious (with GAN created by Robbie Barrat)

Creations:
Experiments in Music Intelligence (EMI), Portrait of Edmond de Bellamy, Mixed Attraction, Machine Hallucinations, Sounds of a Volatile Stock Market

Answers

Explanation:

Experiments in Music Intelligence (EMI) ⇒ David Cope

Portrait of Edmond de Bellamy  ⇒ Obvious (with GAN created by Robbie Barrat)

Mixed Attraction & Machine Hallucinations ⇒ Refik Amarillo and  Brian Foo

Sounds of a Volatile Stock Market ⇒ Jordan Wirfs Brock

Which type of cut extends an audio clip from a preceding video clip to a subsequent video clip?

K-cut

J-cut

L-cut

A-cut



Adobe Premiere Pro cc 2018

Answers

Answer:

L-cut

Explanation:

In the field of cinematography, professional video editors use video editing software application such as Adobe Premiere Pro to create wonderful and remarkable videos with the aid of various video editing techniques such as J-cut, rolling edit, ripping edit, L-cut etc.

A L-cut can be defined as a split edit technique which typically allows the audio out point of a clip to be extended beyond the video out point of the clip in order to make the audio from the preceding video clip (scene) to continue playing over the beginning of a subsequent video clip.

Hence, L-cut is a type of cut that extends an audio clip from a preceding video clip to a subsequent video clip.

Describe
the
Visual basic
select case construct​

Answers

Answer:

Select Case statement allows a variable to be tested for equality against a list of values. Each value is called a case, and the variable being switched on is checked for each select case.

Answer:

ggggggggggggggggggg

what are the characteristics needed in a secure hash function?​

Answers

Cryptographic hash functions are utilized in order to keep data secured by providing three fundamental safety characteristics: pre-image resistance, second pre-image resistance, and collision resistance.

The characteristic needed in a secure hash function is image resistance functions.

What are the characteristics?

Characteristics refer to any feature or trait of any object which provides any information about the concept. These are unique in nature and makes difference with one another.

A group of cryptographic operations called Secure Hash Algorithms is designed to safeguard data. It functions by hashing the data to change it. It applies a severe value to a text before using a private key to encrypt the hash code.

One of a good hash function's essential characteristic include  The data being hashed completely determines the hash result, and the hash function uses all of the input data.

The characteristics necessary for a secure hash function are Avoiding collisions Resistance to the preimage and subsequent resistance to the preimage.

Learn more about the Secure Hash function, here:

https://brainly.com/question/2642496

#SPJ6

Question #2
Multiple Choice
What is the next line?
>>> my Tuple = [10, 20, 50, 20, 20, 60]
>>> my Tuple.index(50)
O 4
O 2
O 3
O 1

Answers

Answer:

The index of 50 is 2.

Explanation:

Index method is sued to return the index of a number or element in a list.

The syntax of using the index method when we have to find the index of a specific element is:

>>>ListName.Index(element)

It has to be remembered that the indexes of a list start from zero.

In the given statements, first a list is created with elements and the second statement will get the index of 50 in the list.

Hence,

The index of 50 is 2.

The next line can be written to display the index of 50 as:

print("The index of 50 is:",my Tuple.index(50))

(Language is in Java)

Write an interactive version of the InchesToFeet class that accepts the inches value from a user.



class InchesToFeetInteractive
{
public static void main(String[] args) {
// Modify the code below
final int INCHES_IN_FOOT = 12;
int inches = 86;
int feet;
int inchesLeft;
feet = inches / INCHES_IN_FOOT;
inchesLeft = inches % INCHES_IN_FOOT;
System.out.println(inches + " inches is " +
feet + " feet and " + inchesLeft + " inches");
}
}​

Answers

import java.util.Scanner;

public class InchesToFeetInteractive

{

public static void main(String[] args) {

   Scanner scan = new Scanner(System.in);

   final int INCHES_IN_FOOT = 12;

   int inches = scan.nextInt();

   int feet;

   int inchesLeft;

   feet = inches / INCHES_IN_FOOT;

   inchesLeft = inches % INCHES_IN_FOOT;

   System.out.println(inches + " inches is " +

   feet + " feet and " + inchesLeft + " inches");

   }

}

We import the Scanner class and then initialize a new Scanner named scan. We then get an integer representation of inches from the user and calculate the feet and inches from the value entered by the user.

many web browsers include _________ tools to make it easier for designers to locate the source of a style that has been applied to a specific page element.
a. designer
b. planner
c. developer
d. creator

Answers

Answer:

c. developer

Explanation:

DEVELOPER TOOLS are tools that enables designers to easily and quickly edit web page and as well diagnosed issues or problem on a website which will inturn enables them to build a great and better websites without stress reason been that when a designer makes use of DEVELOPER TOOLS they can quicky track down and as well fix the problem that was diagnosed within a minute or seconds thereby saving time when developing a website profile.

Bob approaches a beverage vending machine at a fast food kiosk. He has the option of choosing between hot and cold beverages. What control
structure would Bob be using if he chose a cold beverage? In contrast, if he made fresh fruit juice at home using a set of instructions, what
control structure would Bob be using?
Bob would be using the [__]
control structure if he chose a cold beverage. He would be using the [__]
control.
structure if he made fresh fruit juice at home using a set of instructions

Answers

Answer: I took the test and selection was correct for the first blank,

for the second blank its sequence

Explanation:

A loop that will output every other name in the names list.
A loop that will output only the positive numbers in the numbers list.
A loop that will output the sum of all the values in the numbers list.
A loop that will output only the numbers that are odd.
A loop that will output only the names that come before "Thor" in the alphabet from the names list.
A loop that will find the maximum or minimum value in the numbers list. This algorithm requires an additional variable that is assigned to the first element in the list. Then, in a loop compare each element to the variable. If the element is > (for max) or < (for min), assign the variable to the element. After the loop, print the variable.
in python
PLEASE HELPPPP

Answers

Answer:

names = ['Peter', 'Bruce', 'Steve', 'Tony', 'Natasha', 'Clint', 'Wanda', 'Hope', 'Danny', 'Carol']

numbers = [100, 50, 10, 1, 2, 7, 11, 17, 53, -8, -4, -9, -72, -64, -80]

for index, element in enumerate(names):

if index % 2 == 0:

 print(element)

for num in numbers:

 if num >= 0:

   print(num, end = " ")

count = 0

for i in numbers:

 count += i

avg = count/len(numbers)

print("sum = ", count)

print("average = ", avg)

for num in numbers:

 if num % 2 != 0:

   print(num, end = " ")

Explanation:

I'm stuck on the last two.. I have to do those too for an assignment.

What facilitates the automation and management of business processes and controls the movement of work through the business process?A. Content management system B. Groupware system C. Knowledge management system D. Workflow management systems

Answers

Answer:

D. Workflow management systems

Explanation:

Workflow management systems can be defined as a strategic software application or program designed to avail companies the infrastructure to setup, define, create and manage the performance or execution of series of sequential tasks, as well as respond to workflow participants.

Some of the international bodies that establish standards used in workflow management are;

1. World Wide Web Consortium.

2. Workflow Management Coalition.

3. Organization for the Advancement of Structured Information Standards (OASIS).

Workflow management systems facilitates the automation and management of business processes and controls the movement of work through the business process.

The following are various types of workflow management systems used around the world; YAWL, Windows Workflow Foundation, Apache ODE, Collective Knowledge, Workflow Gen, PRPC, Salesforce.com, jBPM, Bonita BPM etc.

Workflow management systems are a type of strategic software program or application created to provide businesses with the infrastructure to build, define.

What is Knowledge system?

Several of the worldwide organizations that create guidelines for workflow management are; First, the World Wide Web Consortium. Workflow Management Coalition . OASIS, or the Organization for the Advancement of Structured Information Standards.

Workflow management systems assist business process automation and administration and regulate how work is moved through those processes.

The knowledge base's content consists of a collection of carefully chosen (and quality-checked) Internet sites; each item is tagged, and an abstract provides a brief summary of its subject matter.

Therefore, Workflow management systems are a type of strategic software program or application created to provide businesses with the infrastructure to build, define.

To learn more about Workflow management, refer to the link:

https://brainly.com/question/31567106

#SPJ2

Drawing a line to follow the direction of the notes will help you determine what aspect of the music?
A. the key signature
B. the instrumentation
C. the contour
D. the accidentals

subject is music

Answers

Answer:

A. the key signature

Explanation:

When drawing a line to follow the direction of the notes, THE KEY SIGNATURE will help determine the aspect of the music.

Key signature are simply sets of symbols on the musical stave that are written after the clef in a musical notation. They help to determine the aspect of the music because they indicate the direction of the notes.

Maya is preparing a presentation for her science class on how solar panels produce energy. Why would a
diagram be the best choice to represent her information?
O It is the best way to show how something functions.
O It is the easiest way to present complex scientific data.
O It is the best way to show how much energy can be produced.
O It is the easiest way to present large amounts of numerical data.

Answers

A.) it the best way to show how something functions

Answer:

a

Explanation:

Natalie wrote a short program for parallel arrays as part of an assignment. What will be the first line of output based on her code?

public class parArray
{
public static void main(String[] args){
int[] empID = {101, 102, 103};
String[] emp_name = {“Jamie Doe”, “Patricia Jack”, “Paul Nick”};
String[] dept = {“Finance”, “Technology”, “HR”};
for ( int i = 0; i {
System.out.print( empID[i] + “\t”);// \t = inserts a tab space
System.out.print( emp_name[i] + “\t”);
System.out.print( dept[i] + “\t”);
System.out.println();
}
}
}

A. 103 Paul Nick HR
B. 101 102 103
C. Jamie Doe Patricia Jack Paul Nick
D. 101 Jamie Doe Finance

Answers

Finance of the pack of them both it will be HR first

Write a code segment that uses a loop to create and place nine labels into a 3-by-3 grid. The text of each label should be its coordinates in the grid, starting with (0, 0). Each label should be centered in its grid cell. You should use a nested for loop in your code.

Answers

Answer:

The question is answered using Python:

for i in range(0,3):

    for j in range(0,3):

         print("("+str(i)+", "+str(j)+")",end=' ')

         num = int(input(": "))

Explanation:

The programming language is not stated. However, I answered using Python programming language

The next two lines is a nested loop

This iterates from 0 to 2, which represents the rows

for i in range(0,3):

This iterates from 0 to 2, which represents the columns

    for j in range(0,3):

This prints the grid cell

         print("("+str(i)+", "+str(j)+")",end=' ')

This prompts user for input

         num = int(input(": "))

If a document is stored on a file server but team members can edit the document​ anonymously, the content on the file server is:_______a. shared content with version management b. shared on Google drive c. shared content with no control d. shared with the public e. shared content with version control

Answers

Answer:

d

Explanation:

Because a decimal number

If a document is stored on a file server but team members can edit the document​ anonymously, the content on the file server is considered to be a: c. shared content with no control.

Cloud computing can be defined as a type of computing that requires shared computing resources such as cloud storage (data storage), servers, computer power, and software over the internet rather than local servers and hard drives.  Thus, it offer or avail individuals and businesses a fast, effective and efficient way of providing services to their clients over the internet.

Generally, cloud computing comprises three (3) service models and these are;

Infrastructure as a Service (IaaS). Software as a Service (SaaS). Platform as a Service (PaaS).

A file server can be defined as a type of computer that centrally stores, manage and fetch all data files (audio, image, text and video) as they are requested over the internet or network by end users (clients).

An access control refers to a security technique that is used to determine whether a user has the minimum requirements (credentials) to access, use or view resources such as documents on a computer by ensuring they are who they claim to be (authentication).

In this context, when a document (content on a computer) is shared on a file server without the implementation of an access control, the file can be anonymously edited by end users because it won't ask or request for authentication.

However, a shared content on a file server with an access control would only grant permission to authorized users while denying other users access to edit or modify its content.

Find more information: https://brainly.com/question/14014672

Car owners are worried with the fuel consumption obtained by their vehicles. A car owner wants trail of several
tankful (the amount a tank can hold) of fuel by recording kilometers driven and gallons used for each tankful. Write
a program that will take input the kilometers driven and gallons used for each tankful. Your program should compute
and display the kilometers per gallon obtained for each tankful. After processing all input information, the program
should compute and display the combined miles per gallon obtained for all tankful.

Answers

Answer:

Program written in Python:

Please note that -> is used for indentation purpose

count = int(input("Number of vehicles: "))

totaldist = 0; totalgall = 0

for i in range(count):

-> gallon = int(input("Gallons: "))

-> distance = int(input("Kilometers Travelled: "))

-> totaldist = totaldist + distance

-> totalgall = totalgall + gallon

-> rate = distance/gallon

-> print("Kilometer/Gallon: "+str(rate))

print("Miles/Gallon: "+str(totaldist * 1.609/totalgall))

Explanation:

The program uses loop to ask for distance and gallons used by each vehicles.

At the end of the loop, the program divided the total distance by all vehicles in miles by total gallon user by all vehicles

[This line prompts user for number of vehicles]

count = int(input("Number of vehicles: "))

[This line initialised total distance and total gallon to 0]

totaldist = 0; totalgall = 0

[This iterates through number of vehicles]

for i in range(count):

[This prompts user for gallons used]

gallon = int(input("Gallons: "))

[This prompts user for distance traveled]

distance = int(input("Kilometers Travelled: "))

[This calculates total distance]

totaldist = totaldist + distance

[This calculates total gallons]

totalgall = totalgall + gallon

[This calculates the rate by each vehicles: kilometres per gallon]

rate = distance/gallon

[This prints the calculated rate]

print("Kilometer/Gallon: "+str(rate))

[The iteration ends here]

[This calculates and prints the rate of all vehicles. The rate is calculated by dividing total distance in miles by total gallons used]

print("Miles/Gallon: "+str(totaldist * 1.609/totalgall))

write c++ program to get from user the user and print whether it is positive or negative

Answers

Answer:

I think this is positive

Explanation:

how do hardware and software work together to allow a user to perform a function?
jointly, independently, repeatedly or separately?

Answers

Answer:

jointly

Explanation:

Because Hardware and Soft ware have to JOIN together to make something work

I hope i helped!

Hardware and software collaborate to enable a user to perform a function. The physical components of a computer system, such as the central processing unit (CPU) and memory, are referred to as hardware.

What is CPU?

CPU is an abbreviation for Central Processing Unit, which is the main component of a computer system that is in charge of executing instructions and processing data.

The CPU is often referred to as the computer's "brain" because it performs the majority of the calculations.

When a computer user performs a function, the software sends instructions to the hardware, which then executes the instructions and performs the function.

When a user types on a keyboard to create a document, for example, the keyboard sends signals to the CPU, which processes the input and sends the output to the software application to display on the screen.

Thus, in this way, hardware and software are interdependent and work together to enable a user to perform a variety of functions on a computer system.

For more details regarding CPU, visit:

https://brainly.com/question/16254036

#SPJ7

Assume that the message M has to be transmitted. Given the generator function G for the CRC scheme, calculate CRC. What will be the bit sequence that actually gets transmitted?

Answers

Let the message be M : 1001 0001   and the generator function is G : 1001

Solution :

CRC sender

                                               

1001     | 1001  0001  000

             1001                            

            0000  0001            

                        1000

                       1001            

                        0001  000

                                 1 001  

                                 0001

Here the generator is 4 bit - 1, so we have to take three 0's which will be replaced by reminder before sending to received--

eg    1001  0001  001    

Now CRC receiver

                                                   

1001         | 1001    0001   001

                1001                          

                 0000 0001

                            1001                  

                            1000

                           1001              

                            0001  001

                           0001  001      

                                   0000

No error

This diagram shows who is responsible in preventing cyberbullying.
A flowchart.
Top box is labeled Cyberbullying can be prevented!
A line leads to two boxes labeled Parents/guardians, Schools.
Lines lead from Schools to boxes labeled Administrators, Teachers, Students.
Based on the diagram, which explains the most effective way to stop cyberbullying?

Answers

Answer:

Parents monitor home computer use, administrators secure school computers, and students report cyberbullying.

Explanation:

this should be right

Jerry can use an
program to restrict information from going out without his permission.

Answers

The answer is predictions

Answer:

ok but what do you want?

Explanation:

ANTIVIRUS or anti cookie software

is what it is i think

Write a program that outputs inflation rates for two successive years and whether the inflation is increasing or decreasing. Ask the user to input the current price of an item and its price one year and two years ago. To calculate the inflation rate for a year, subtract the price of the item for that year from the price of the item one year ago and then divide the result by the price a year ago. Your program must contain at least the following functions: a function to get the input, a function to calculate the results, and a function to output the results. Use appropriate parameters to pass the information in and out of the function. Do not use any global variables.

Answers

The inflation calculator program is an illustration of Python functions; where the functions are executed when called or evoked

The inflation program

The inflation calculator program written in Python, where comments are used to explain each action is as follows:

#Thie function gets all input

def getInput():

   cPrice = float(input("Current Price: "))

   pYear1 = float(input("Year 1 Price: "))

   pYear2 = float(input("Year 2 Price: "))

   return cPrice, pYear1, pYear2

#This function prints inflation rate

def printinfRate(myinfRate):

  print("Inflation infRate: ",myinfRate)

#This function calculates inflation rate

def calcinfRate(cPrice, pPrice):

  infinfRate = (pPrice - cPrice)/ pPrice

  printinfRate(round(infinfRate,2))

#The main function begins here

#This gets the prices

cprice, pYear1, pYear2 =  getInput()

#The next 2 lines calls the calcinfRate function to calculate the inflation rate

calcinfRate(cprice, pYear1);

calcinfRate(pYear1, pYear2)

Read more about Python Programs at:

https://brainly.com/question/16397886

Write a function that returns a pointer to the maximum value of an array of float ingpoint data: double* maximum(double* a, int size) If size is 0, return NULL.

Answers

Answer:

double * maximum( double arr[], int size){

   int max = 0;

   if ( size == 0){

       return 0;

   } else {

        for (int i = 1; i < size; i++){

           if (arr[i] > arr[0]){

               max = arr[i];

           } else {

               max = arr[0];

           }

         }

         return max;

   }

}

Explanation:

The C++ source code above returns the maximum value of an array as a pointer. The function accepts two parameters, the array in question and the size of the array. The for loop iterates over the items in the array and checks for the largest, which is returned as a pointer since the function "maximum" is defined as a pointer to the floating-point number memory location.

A file named numbers.txt contains an unknown number of lines, each consisting of a single integer. Write some code that computes the sum of all these integers, and stores this sum in a variable name sum. *PYTHON*

Answers

f = open("numbers.txt", "r")

lst = [int(x) for x in f.read().splitlines()]

sum = 0

for x in lst:

----sum += x

I had to add the four dashes to maintain the structure of my code. You can replace them with spaces. Also, I wouldnt recommend having a variable named sum because python has a built in function named sum. You can test this code by putting print(sum) at the end of the code.

2. Answer any
a. What are the reasons that determine that God is great?
Illustrate. (God's Grandeur)
b. How does Mrs. Mooney succeed in her mission at the
end? Explain. (The Boarding House)
C. Why is Martin Luther King's speech so popular till now
Explain. (I Have a Dream)
d. How were the handicapped, black and weak childre
viewed in the past? (The Children who Wait)
e. Why is Lydia Pinkham the most notable character in th
essay? Explain.(Women's Business)
f. What are the consequences of overpopulation? Sugges
some of the solutions of it. (Two long Term Problems​

Answers

Answer:

C

Explanation:

martin luther kings speech is being restated in todays current events in the BLM protests because martin luther king was basically fighting for black peoples rights and the 14th and 15th amendments were supposed to help black peoples rights and freedom but today people aret following that because of police violence/brutality

What are three techniques used to generate ideas? O A. Free writing, brainstorming, and concept mapping O B. Free writing, clustering, and detail mapping O c. Free writing, pre-writing, and drafting O D. Pre-writing, drafting and revision​

Answers

freewriting brainstorming and concept mapping

Both pre writing and post reading strategies has been used to enhance comprehension as well as the skill of the learner.

What is Pre-writing or surveying?

Pre-reading or surveying is the process of skimming a text to locate key ideas before carefully reading a text (or a chapter of a text) from start to finish. It provides an overview that can increase reading speed and efficiency.

Reading strategies aim to facilitate the understanding of difficult texts. These strategies are very effective and can facilitate not only reading but also the interpretation of the text. Among the reading strategies, we can mention the use of context clues, which facilitate the understanding of difficult and unknown words.

Synthesizing the text is also a very beneficial strategy, as it allows the text to become smaller, more objective, and direct. Reading strategies should be used even by people who find it easy to read texts with different difficulties, as it allows the text to be understood in a deeper and more complete way.

Therefore, Both prereading and post reading strategies has been used to enhance comprehension as well as the skill of the learner.

More information about context clues at the link:

brainly.com/question/8712844

#SPJ2

What does advance mean​

Answers

Answer:

Hey there, there are many meanings for advance here are some answers

VERB

advance (verb) · advances (third person present) · advanced (past tense) · advanced (past participle) · advancing (present participle)

move forward in a purposeful way.

"the troops advanced on the capital" · "she stood up and advanced toward him"

synonyms:

move forward · proceed · move along · press on · push on · push forward · make progress · make headway · forge on · forge ahead · gain ground · approach · come closer · move closer · move nearer · draw nearer · near · draw nigh

antonyms:

retreat

cause (an event) to occur at an earlier date than planned.

"I advanced the date of the meeting by several weeks"

synonyms:

bring forward · put forward · move forward · make earlier

antonyms:

postpone

make or cause to make progress.

"our knowledge is advancing all the time" · "it was a chance to advance his own interests"

synonyms:

promote · further · forward · help · aid · assist · facilitate · boost · strengthen · improve · make better · benefit · foster · cultivate · encourage · support · back · progress · make progress · make headway · develop · become better · thrive · flourish · prosper · mature · evolve · make strides · move forward (in leaps and bounds) · move ahead · get ahead · go places · get somewhere

antonyms:

impede · hinder

(especially of shares of stock) increase in price.

"two stocks advanced for every one that fell"

put forward (a theory or suggestion).

"the hypothesis I wish to advance in this article"

synonyms:

put forward · present · come up with · submit · suggest · propose · introduce · put up · offer · proffer · adduce · moot

antonyms:

retract

lend (money) to (someone).

"the bank advanced them a loan"

synonyms:

lend · loan · credit · pay in advance · supply on credit · pay out · put up · come up with · contribute · give · donate · hand over · dish out · shell out · fork out · cough up · sub

antonyms:

borrow

pay (money) to (someone) before it is due.

"he advanced me a month's salary"

synonyms:

spend · expend · pay · lay out · put up · part with · hand over · remit · furnish · supply · disburse · contribute · give · donate · invest · pledge · dish out · shell out · fork out/up · cough up

NOUN

advance (noun) · advances (plural noun)

a forward movement.

"the rebels' advance on Madrid was well under way" · "the advance of civilization"

synonyms:

progress · headway · moving forward · forward movement · approach · nearing · coming · arrival

a development or improvement.

"genuine advances in engineering techniques" · "decades of great scientific advance"

synonyms:

breakthrough · development · step forward · step in the right direction · leap · quantum leap · find · finding · discovery · invention · success · headway · progress · advancement · evolution · improvement · betterment · furtherance

an increase or rise in amount, value, or price.

"bond prices posted vigorous advances"

synonyms:

increase · rise · upturn · upsurge · upswing · growth · boom · boost · elevation · escalation · augmentation · hike

an amount of money paid before it is due or for work only partly completed.

"the author was paid a $250,000 advance" · "I asked for an advance on next month's salary"

synonyms:

down payment · advance against royalty · deposit · retainer · prepayment · front money · money up front

a loan.

"an advance from the bank"

synonyms:

credit · mortgage · overdraft · debenture · lending · moneylending · advancing · sub

(advances)

an approach made to someone, typically with the aim of initiating a sexual encounter.

"women accused him of making improper advances"

synonyms:

sexual approaches · overtures · moves · a pass · proposal · proposition · offer · suggestion · appeal · come-on

ADJECTIVE

advance (adjective)

done, sent, or supplied beforehand.

"advance notice" · "advance payment"

synonyms:

preliminary · leading · forward · foremost · at the fore · sent (on) ahead · first · exploratory · explorative · pilot · vanguard · test · trial · early · previous · prior · beforehand

ORIGIN

Middle English: from Old French avance (noun), avancer (verb), from late Latin abante ‘in front’, from ab ‘from’ + ante ‘before’. The initial a- was erroneously assimilated to ad- in the 16th century.

Explanation:

Those are every single definition for advance!

a bus is full of passengers. if you count them by either twos, threes, or fives, there is one left. if you count them by seven there will be none left. find the least number of passengers in the bus?​

Answers

Answer:

91

Explanation:

You know that the number must end in 6 or 1 to get a left over of 1 when divided by 5. Six won't work because  2  divides evenly into a number ending into 6.

So the number ends in 1.

21 doesn't work because 3 divides into 21 evenly.

31 doesn't work because 7 does not divide into it.

41 doesn't work. 41 is prime. 7 won't divide into it.

51 is divisible by 3

61 seven does not evenly divide into 61.

71 seven leaves a remainder of  1

81 7 leaves a remainder.

91 Answer

Which careers require completion of secondary education, but little to no postsecondary education? Mathematical Technicians and Mechanical Engineers Sociologists and Electronics Engineering Technicians Food Science Technicians and Zoologists Nondestructive Testing Specialists and Surveying Technicians

Answers

Answer:

Nondestructive Testing Specialists and Surveying Technicians

Answer:

D

Explanation:

What game is this?????? ?

Answers

Answer:

name the emoji

Explanation:

Answer:

Stop wasting points

Explanation:

Other Questions
what is a medical problem associated with being sedentaryA.Liver DiseaseB.Food Poisoning C.Brain Cancer D.Diabetes Who did the Democractic Republicans support for president in the election of 1828? ASAP WILL MARK BRAINLIEST (03.01 MC)Interest Rates and Interest Charges8.99%, 10.99%, or 12.99% introductory APR for one year,Annual Percentage Rate (APR) based on your creditworthinessfor PurchasesAfter that, your APR will be 14.99% This APR will vary with the marketbased on the Prime Rate.Jonathan is applying for a new credit card. He has missed several loan payments in the past, and his creditscore has been affected. Which introductory APR might he expect to receive on the card?O 8.99%10.99%12.99%14.99%A soooo yea uh i need help :'3 2 1/3 feet :4 1/2 feet help Please help with the 9.10 exercise the name of the text:9.BOOKS IN OUR LIFEBooks, I think, we can't live without them.I consider that books are with us during all our life. When Iwas a child, my parents read them to me. I was pleased to listen tothe stories and tales. I learned many interesting things from books.I like to read books about animals, nature, and children.I like to get presents on my birthday, I am happy if it is abook. It doesn't matter what kind of book it is.You can learn many things from books. I am sure that booksplay a very important role in my life.In ancient times, books were written by hand. It wasdifficult to write a book with a pen. Then printing came intoour life. Printing played an important role in the developmentof literature and culture.Now there are many books in the shops, there are manybooks in our flats. But it is difficult to buy all the books whichwe want to read. That is why we get books in public libraries.Sometimes it is difficult to solve some problems. I think thatbooks can help us. Books should be our friends during all our life.10. Write answers to the following questions.a. What do you think, can books be our friends? Prove it.b. You like to read books, don't you?c. Do you have many books at home?d. Where can you buy books?e. Can you buy all books which you want to read?1. What is your favourite book? Which of the following most likely functions as the climax in a story? The beach was hot, humid, and full of so many sweating people I was convinced they affected the climate. I was able to grab the rope just as the canoe full of kittens was slipping away from the dock. We had started the day optimistic that we would be able to finish the float on schedule. I didn't understand what made the choir director so angry all of the time. hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhelp.how do you get out of the rain? what dose the term liveability mean? YES, THE RITUAL IS ALMOST COMPLETE. WE ARE NOW FRIENDS, BEST FRIENDS. SAY GOODBYE TO YOUR LOVED ONES BECAUSE WE ARE NOW FAMILY. LET THE RITUAL COMMENCE. Where does the magma or melted rock in volcanos originate? a. in the earths crust b. from the mantle c. in the earths core d. in the magnetosphere how do i find the value of x? Figure A is a scale image of figure B. What is the value of x? a recipe calls for 2/3 cup of milk for 11 cookies. How many cups of milk are needed for 165 cookies Lines 175184: What ironic shift is presented in lines 175176? How does this affect the readers perception of the person who has captured Juvencio? Select all that apply. How would you compare Venus's rotation to Earth's rotation? Venus's rotation is backward compared to Earth's.Venus's rotation is the opposite compared to Earth's.Venus's rotation is retrograde compared to Earth's.Venus's rotation is the same compared to Earth's.I need answers ASAP When would a person most likely need an interpreter? Every week hector works 20 hours and earns $210.00 he earns a constant amount of money per hour white a equation that can be used to determine the number of hours h hector works given the number of weeks w Question 1 of 20 :Select the best answer for the question.1. The capital city of the Byzantine Empire was located on the coast of theA. Mediterranean Sea.B. Black Sea.C. Bosporus Strait.D. Caspian Sea.Mark for review (Will be highlighted on the review page) Which is greater: 10cm or 103mm? How much greater?