Answers

Answer 1

Answer:

Explanation:

The Oxford Cleric, or otherwise just known as the Cleric, is from a series of tales called the Canterbury Tales. He had a rather simple life as a cleric and was more commonly seen as a philosopher. The Cleric was just a student who used all of his money on books instead of on clothes and was considered poor.


Related Questions

how dependent are we on technology? ​

Answers

very independent  : ) we use it for everything

is cheque money? give reason​

Answers

Answer:

Cheque is not money. cheque is a paper instructing the bank to pay a specific amount from the person's account to the person in whose name the cheque has been drawn. The facility of cheque against demand deposits makes it possible to directly settle the payments without the use of withdrawal.

Explanation:

SOMEONE HELP PLZZZZ!!!!

Answers

Answer:

D

Explanation

LAN = Local Access Network

The IT worker works on networks.

I need to know how to input this into python on zybooks. I've been stuck on this for days and I keep running into "invalid syntax" or "unknown word red" Summary: Given integer values for red, green, and blue, subtract the gray from each value. Computers represent color by combining the sub-colors red, green, and blue (rgb). Each sub-color's value can range from 0 to 255. Thus (255, 0, 0) is bright red, (130, 0, 130) is a medium purple, (0, 0, 0) is black, (255, 255, 255) is white, and (40, 40, 40) is a dark gray. (130, 50, 130) is a faded purple, due to the (50, 50, 50) gray part. (In other words, equal amounts of red, green, blue yield gray). Given values for red, green, and blue, remove the gray part. Ex: If the input is 130 50 130, the output is: 80 0 80 Find the smallest value, and then subtract it from all three values, thus removing the gray.

Answers

Answer:

Here is the C++ program:  

#include <iostream>   //to use input output functions  

using namespace std;   //to identify objects cin cout  

int main() {   //start of main method  

int red,green,blue,smallest;   //declare variables to store integer values of red,green, blue and to store the smallest value  

cout<<"Enter value for red: ";  //prompts user to enter value for red  

cin>>red;  //reads value for red from user  

cout<<"Enter value for green: ";  //prompts user to enter value for green  

cin>>green;  //reads value for green from user  

cout<<"Enter value for blue: "; //prompts user to enter value for blue  

cin>>blue;   //reads value for blue from user  

//computes the smallest value

if(red<green && red<blue) //if red value is less than green and blue values  

smallest=red;   //red is the smallest so assign value of red to smallest  

else if(green<blue)   //if green value is less than blue value  

smallest=green;   //green is the smallest so assign value of green to smallest  

else  //this means blue is the smallest  

smallest=blue;  //assign value of blue to smallest  

//removes gray part by subtracting smallest from rgb  

red=red-smallest;  //subtract smallest from red  

green=green-smallest;  //subtract smallest from green  

blue=blue-smallest;  //subtract smallest from blue  

cout<<"red after removing gray part: "<<red<<endl;  //displays amount of red after removing gray  

cout<<"green after removing gray part: "<<green<<endl;  //displays amount of green after removing gray

cout<<"blue after removing gray part: "<<blue<<endl;  } //displays amount of blue after removing gray  

Explanation:

I will explain the program using an example.  

Lets say user enter 130 as value for red, 50 for green and 130 for blue. So

red = 130  

green = 50  

blue = 130  

First if condition if(red<green && red<blue)   checks if value of red is less than green and blue. Since red=130 so this condition evaluate to false and the program moves to the else if part else if(green<blue) which checks if green is less than blue. This condition evaluates to true as green=50 and blue = 130 so green is less than blue. Hence the body of this else if executes which has the statement: smallest=green;  so the smallest it set to green value.  

smallest = 50  

Now the statement: red=red-smallest; becomes:  

red = 130 - 50  

red = 80  

the statement: green=green-smallest;  becomes:  

green = 50 - 50  

green = 0  

the statement: blue=blue-smallest; becomes:  

blue = 130 - 50  

blue = 80  

So the output of the entire program is:  

red after removing gray part: 80                                                                                                 green after removing gray part: 0                                                                                                blue after removing gray part: 80  

The screenshot of the program along with its output is attached.

What does Tristan need to do to add a row at the bottom of the table shown?

He needs to put the insertion point at the end of 8.8 and press the Tab key.
He needs to put the insertion point at the end of 8.8 and press the Enter key.
He needs to put the insertion point at the end of freezers and press the Tab key.
He needs to put the insertion point at the end of freezers and press the Enter key.

Answers

Answer:

He needs to put the insertion point at the end of 8.8 and press the Tab key.

Explanation:

Answer:

A

Explanation:

when four consecutive numbers are added the sum is 46 find the integers plss anyone help me​

Answers

Answer:

The integers are 10,11,12,13

Explanation:

At first form an equation,

Let,

x = first number

x + x+1 + x+2 + x+3 = 46

Now solve the equation and youll get the answer,

x=10

For the other numbers,

x+1=11

x+2 = 12

x+3 = 13

Write a program Gas.java that computes and displays the price a person will pay for gas at the gas station. The program takes three command-line arguments: two double arguments referring to the price per gallon, and the number of gallons of gas, and one boolean argument referring to whether the person pays cash or credit (true for cash, false for credit). If the person pays with a credit card, there is an extra charge of 10% of the total price. Gas is never free. A person stopping to buy gas will always buy some amount of gas. Print the error message "Illegal input" if any of the double inputs is zero or negative, and end the program.

Answers

Answer:

double price, number, total;

boolean payment;

Scanner input = new Scanner(System.in);

System.out.print("Enter Amount of Gas: ");

price = input.nextDouble();

I've added the full source file as an attachment.

Where I used comments to explain difficult line

Explanation:

does anyone or has anyone ever done it?? please help it’s for like skills!

Answers

Answer:

is this mathmatics

Explanation:

When would you use database software instead of spreadsheet or word processing software?​

Answers

Answer: When I need to see table relationships and sort data by custom fields.

Explanation:

Answer: When I need to see table relationships and sort data by custom fields.

Explanation: took the quiz

What is the art of getting your work done through people in a harmonious way?
A.
having good interpersonal skills
B.
having good work ethics
C.
having high self-esteem
D.
having high work efficiency
E.
having conflict resolution skills

Answers

Answer:

A.

having good interpersonal skills

Answer:

it is (A)

Explanation:

IT professionals should help to protect users’ personal information, such as bank account information or Social Security numbers, to prevent

A.software piracy.

B.identity theft.

C.moonlighting.

D.corporate espionage.

Answers

Answer:

B

Explanation:

Answer:

b

Explanation:

What type of data is the result of each of the following lines of code?
str(2.34)

int('2')

float(2)

Answers

Answer:

snag

Explanation:

Often used in connection with a business
A: fair use
B: copy right
C: public domain
D: commercial use
E: Creative Commons

Answers

Answer:

I would have to say public domain (but i am not sure)

true or false Output is a tool with a power system that takes advantage of certain scientific laws that make the tool work better

Answers

Answer: True

Explanation: While digital evidence exploitation is a relatively new tool for law investigation when digital evidence is limited or does not exist. Do with the disappearance and death; searches found some mies; in fact, he was well-liked and often left his home open could take particular advantage, given the more limited poten.

What Information Technology is Walt Thomas responsible for?

Answers

Proactive designing i think

Answer:   employee productivity and activity management, selling the vast.

Explanation:

what is a document you can create with word processing software________?

Answers

Answer:

I think like Microsoft Word, Google Docs/Slides, or maybe other Microsoft writing services.

Explanation:

hope this helps!

Which phrase best describes a scenario in Excel 2016?

Answers

Answer:

what are the phrases?

Explanation:

He made me so angry when he didn’t let me make my point that I had to stalk after him.
a.
follow
c.
stem
b.
shoot
d.
branch

Answers

Answer: follow

Explanation:

Answer: A) follow

Explanation:

Do the binary numbers 001101 and 00001101 have the same value or different values

Answers

Answer:

Yes, the both have the same value.

Explanation:

This is the answer because:

001101 = 13

00001101 = 13

Hope this helps! :D

When was JavaScript founded?
Write in this format:
mm/yy

Answers

Answer:

It was founded in 09/95

Explanation:

Answer: 09/1995

JavaScript was founded in the September of 1995, in early fall. It is a very common dynamic computer programming language.

I wrote the answer in mm/yy format, so this answer should meet the requirements.

Hope this helps! Best of Luck!

how has input device helped u

Answers

Answer:

Today, input devices are important because they are what allows you to interact with and add new information to a computer. For example, if a computer had no input devices, it could run by itself but there would be no way to change its settings, fix errors, or other various user interactions

Explanation:

Answer: well it allows u to ad new info to your pc/ basically an easier way to transfer from one device to another

Explanation: i would give a better answer but i'm feeling lazy today srry

A struggle between opposing forces or characters is

Answers

Answer:

Conflicts

Explanation:

The struggle between two opposing forces or characters in a story. Conflicts can exist between two people, between a person and nature or a machine or between a person a whole society. a conflict can be internal, involving opposing forces within a person's mind.

Answer:

Conflict

Explanation: Took the test

whats the answer to 9? i really need help with this in the next 20 minutes. ty if u help me!

Answers

Answer:

A very precise number B

Explanation:

Hope you pass

Which utility causes the computer to run slow? defragmentation utility OR compression utility?

Answers

Answer:

compression

Explanation:

Which graphic file format would you choose if you needed to make an animated graphic for a website?

ai

png

gif

py
please help

Answers

Answer:

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

Explanation:

The correct option for this question is gif.

Gif is a series of images that are used as animated graphics for a website. A gif is the file format of an animated image. You may have seen many animated images on websites like stickers etc.

other options are not correct because:

ai: is adobe illustrator file format

png: png is an image file format but not for an animated image

py: py is a file extension of the python file.

Answer:

gif

Explanation:

does anyone have a pdf of the greatest by eddie van der meer????

Answers

Answer

aight' so im finding it but i have to asnwer before someone else so look in the comments for it.

Explanation:

Just wait i getting it rn

So this is not exactly a question but I can’t find the answer anywhere else. Also if you answer this, please do, I will give you brainliest.



What does the blue circle with the i in it mean on EBay?

Answers

Answer: Well, in transit means "in the process of being transported" according to Merriam Webster, so I would think that would mean that it is being shipped from China over to America (Or wherever you may live) currently. Hope this helped!

Explanation:

idk just anwser this and get get some points lol

Answers

Answer:

ok thxxxxx :)

Explanation:

Answer:

thank you

Explanation:

Poems are a kind of persuasive document
Yes or no?

Answers

Answer:

i believe the answer yes because the author wants the audience sympathetic attention.

Answer:False

Explanation:

What is the technical term of a native programming language?​

Answers

Native Code Or Machine Language

Other Questions
The parking garage for a building is underground. Kennedy parks her car 4 floors below ground level. She plans to walk to the 3rd floor of the office building from her car. If she uses the stairs to walk from her car to the 3rd floor of the building, how many floors will she travel? 20. The product of five and four more than x is 60.a. 5x4+= 60b. 5x+4 = 60c. 5(x + 4) = 60d. 5+4+x=60 Peter says there are two distances for which he and Maria charge the same amount. To prove Peter is not correct, Maria graphs a line for her delivery charges and a line for Peters delivery charges. Each line represents the relationship between the amount (y), in dollars, each person charges for a delivery and the distance (x), in miles, each drives for the delivery. Without showing the graph, explain how Marias graph of the two lines proves Peter is not correct. An aluminium atom has a mass number of 27 and a proton number of 13. How many neutrons does this aluminium atom contain? Combat Fire, Inc. manufactures steel cylinders and nozzles for two models of fire extinguishers: (1) a home fire extinguisher and (2) a commercial fire extinguisher. The home model is a high-volume (54,000 units), half-gallon cylinder that holds 2 1/2 pounds of multi-purpose dry chemical at 480 PSI. The commercial model is a low-volume (10,200 units), two-gallon cylinder that holds 10 pounds of multi-purpose dry chemical at 390 PSI. Both products require 1.5 hours of direct labor for completion. Therefore, total annual direct labor hours are 96,300 or [1.5 hours (54,000 + 10,200)]. Expected annual manufacturing overhead is $1,570,706. Thus, the predetermined overhead rate is $16.31 or ($1,570,706 96,300) per direct labor hour. The direct materials cost per unit is $18.50 for the home model and $26.50 for the commercial model. The direct labor cost is $19 per unit for both the home and the commercial models.The companys managers identified six activity cost pools and related cost drivers and accumulated overhead by cost pool as follows. Expected Use of Drivers by ProductActivity Cost Estimated Expected Use ofCost Pools Drivers Overhead Cost Drivers Home CommercialReceiving Pounds $87,100 335,000 215,000 120,000Forming Machine hours 157,500 35,000 27,000 8,000Assembling Number of parts 390,600 217,000 165,000 52,000Testing Number of tests 61,200 25,500 15,500 10,000Painting Gallons 36,806 5,258 3,680 1,578Packing and Pounds 837,500 335,000 215,000 120,000shipping $1,570,7061.) Under traditional product costing, compute the total unit cost of each product. (Round answers to 2 decimal places, e.g. 12.25.)2.) Under ABC, complete the schedule showing the computations of the activity-based overhead rates (per cost driver). (Round your answers to 2 decimal places, e.g. 2.25.)3.) Complete the schedule assigning each activity's overhead cost pool to each product based on the use of cost drivers. (Use rates from part b above and round cost assigned to 0 decimal places, e.g. 12,250. Round overhead per unit to 2 decimal places, e.g. 2.25. Note that due to rounding your total cost assigned will be slightly different than calculated above.)Cost Driver Home ModelCommercial ModelCost Assigned4.) Compute the total cost per unit for each product under ABC. (Round your answers to 2 decimal places, e.g. 12.25.)Home Model $Commercial Model $5.)Classify each of the activities as a value-added activity or a non-value-added activity.ActivityReceiving value-addednon-value-addedForming non-value-addedvalue-addedAssembling value-addednon-value-addedTesting value-addednon-value-addedPainting non-value-addedvalue-addedPacking and shipping value-addednon-value-added Dave earned $12 for mowing 4 lawns. What is the rate earned per lawn mowed? Ashleigh hires a group of security staff. Each worker works an average of 80 hours per month at $14/hour. If her monthly labor cost for security workers is $23,520, how many security workers did Ashleigh hire? a) 15 b) 21 c) 36 d) 47 4 less than a number g equals 9Answer fast I will name you the most Brainly please help This question. Help. HELP Which of the following was not a consequence of the Industrial Revolution?(K12 Answers plz) The story is GideonCheck the boxes that describe the setting of the story.wine pressaltar of Baalwheat fieldsEphraimfarm in OphrahManasseh 10x-6y=-48 standard to slope intercept form in the Jewish 10 commandments, what is the significance of graven images Listen and choose the option that best answers the question.Select the best summary of the advice about safe driving that Paulina follows. Follow the speed limit. Text when at stop signs. Use hands-free phones. Respect traffic signs. Music slowing down is called what?A. ritardandoB. accelerandoC. crescendoD. piano What is an active site? A )a gland that secretes a particular enzymeB) a part of an enzyme molecule into which a substrate molecules fitsC)a part of the substrate to which an enzyme molecule attachesD)a place in the body where an enzyme works what is 0.345 in standard form PLEASE HELP ASAP!! IF YOU CAN please help me fix this sentence! there's 5 mistakes In 1957. tennis player Althena Gibson won the womans championship at Wimbledon later that year, she became the 1st African American woman to win the us open. (5) Letter: 8.5 inches by 11 inches Legal: 8.5 inches by 14 inches Junior legal: 5 inches by 8 inches Tabloid: 11 inches by 17 inches a. Are any of the paper sizes similar? b. The dimensions of government-letter paper are each 0.5 inch less than the dimensions of letter paper. Are these paper sizes similar? Question 2 c. By increasing the shorter side of legal paper by inch, it is similar to the size of junior legal paper.