PLZ HELP

Alejandro decided to save some time by copying and pasting code into the editor, but the program didn’t work. What is the most likely explanation for this?


A.

There was no binary converter.


B.

Interpreters can’t read symbols from a different font.


C.

There was no code editor available.


D.

There was an error in the original code.

Answers

Answer 1

Answer:

B needed points but its right

;)

Explanation:

Answer 2

A professional interpreter's job is to make it possible for two or more parties who speak different languages to communicate with one another. Because of this, qualified interpreters are limited to translating spoken words. Thus, option B is correct.

What Interpreters can’t read symbols from a different font?

Their responsibilities include accompanying clients on trips to help them communicate with others who speak different languages, translating speeches or presentations for audiences that are multilingual, and assisting with the conversion of spoken words into written communications.

Add > Symbol > Additional Symbols. Select the symbol in the resulting window, but also double-check that the font is set to your usual font on the line at the upper left. After that, type your shortcut. The symbol ought to display in the specified font when you use the shortcut.

Therefore, Interpreters can’t read symbols from a different font.

Learn more about font here:

https://brainly.com/question/7971447

#SPJ2


Related Questions

What is plagiarism? Suppose you are an online store owner & you caught someone copying your store items and selling them at a lower price. What will you do? Keep in mind that your business in ONLINE

Answers

Answer:

Plagiarism is the reproduction of someone's Idea, language , work or expressions like one's original idea , language, work or expression. and not giving acknowledgment to the owner of the Idea, language, work or expression.

when someone copies your store Items and sell them at lower price the best course of action is keep your business ideas and product secrets close to yourself because you cannot have a monopoly of the market since it is an online business

Explanation:

Plagiarism is the reproduction of someone's Idea, language , work or expressions like one's original idea , language, work or expression. and not giving acknowledgment to the owner of the Idea, language, work or expression.

when someone copies your store Items and sell them at lower price the best course of action is keep your business ideas and product secrets close to yourself next time, because you cannot have a monopoly of the market since it is an online business hence there will be no action

Taking a recipe and breaking it down into its individual sections, like ingredients, preparation, cooking instructions, and nutritional information, is an example of _____.

refinement

pattern recognition

decomposition

abstraction

Answers

Answer:

its C - Decomposition

Explanation:

100% edge

Fruits and vegetables lose some of their vitamins and phytonutrients, which are healthy plant molecules other than vitamins and minerals. The amount of nutrients destroyed increases with cooking time and temperature. Some nutrients can even start to be lost during food preparation. Thus, option C is correct.

What cooking instructions, include decomposition?

Boiling results in the greatest loss of nutrients, while other cooking methods more effectively preserve the nutrient content of food. When it comes to preserving nutrients, stir-frying, roasting, and steaming are some of the best ways to prepare vegetables.

There are three different sorts of cooking techniques: combination cooking, moist heat cooking, and dry heat cooking. Heat is used in each of these techniques to modify food uniquely. These three ways can be used to categorize all forms of cooking, including grilling and steaming.

Therefore, taking a recipe and breaking it down into its individual sections, like ingredients, preparation, cooking instructions, and nutritional information, is an example of (decomposition).

Learn more about cooking here:

https://brainly.com/question/5190639

#SPJ2

8. Cloud Storage is
a) Computer technology to control the weather.
b) Computer technology to make computers faster.
c) Computer technology to make computers slower.
d) Computer technology to store files on the Internet,

Answers

Answer:

The correct option;

Computer technology to store files on the internet

Explanation:

Cloud Storage provides a means where data files originally locally stored on a computer are stored in remote or off-site locations which are then accessible through a public internet source or through a private network

The provider of the cloud services takes responsibility for data which are stored in the site

A cloud storage consists of a data server that is connected to the internet to which files are transferred to by a user manually or by automation. The data server then sends the data further to other server. The user can then access the stored data through the cloud storage provider's users web interface.

Answer:

D

Explanation:

d) Computer technology to store files on the Internet,

Imagine that a you and a friend are exercising together at a gym. Your friend suddenly trips and falls, and it is clear that he or she has suffered an ankle sprain. Luckily you know exactly what has happened. Explain how your friend sustained the injury and, assuming you had the necessary supplies, including a first aid kit and a phone, explain what steps could you take to stabilize your friend's injury.
Name each of the five steps in the PRICE treatment.

Answers

Answer:

The sprain happened when the friend fell and the ligaments (in the ankle)  stretched, twisted or possibly tore. Sprain is manifested by pain, swelling, bruising and inability to move.

Explanation:

Here the appropriate steps to stabilize the injury:

1.       Call for help.

2.       Rest the injured area to avoid further damage.

3.       Put ice ( for 15 to 20 minutes) to help limit the swelling.

4.       Apply compression bandage to prevent more swelling.

5.       Elevate the injured ankle above the heart to limit swelling.

Hope this helps UvU

What are the benefits of writing functions that use parameters and return? Try to list at least two.

Answers

Answer:

Explanation:

Writing functions that use parameters and return helps improve code readability and manages complexity by reusing code.

By repeating code and creating methods that utilize arguments and return, you may increase readability of code and control complexity. Instead of creating two distinct functions, parameters may be used to mix the two.

Parameters and results of the tests enable us to build code that is more readable and adaptable to a wider range of contexts. However, we'll need to practice reading, developing, and troubleshooting code like this because it operates a little more than the programmed we're used to.

Learn more:

https://brainly.com/question/15260986?referrer=searchResults

How are “cells” in a spreadsheet formed?

Answers

Cell: A cell is a rectangular area formed by the intersection of a column and a row. ... For example the cell in Column "C" in Row "3" would be cell C3. Column: Columns run vertically on the spreadsheet screen. An Excel spreadsheet contains 256 columns that are labeled with the letters of the alphabet.

Answer:

Mitosis

Explanation:

New cells are created from a process called cell division. The new cells are produced when a cell, called the mother cell, divides into new cells called daughter cells. When two daughter cells have the same number of chromosomes as the original cell, the process is called mitosis.

Python exercise grade 10

Write a program that determines which dates comes earlier on the calendar. The user

may enter any number of dates. The user will enter 0/0/0 to indicate that no more dates

will be entered

Example:
Enter a date (month): 3

Enter a date (date): 6

Enter a date (year): 2008

03/06/2008

Enter a date (month): 5

Enter a date (date): 17

Enter a date (year): 2007

05/17/2007

Enter a date (month): 6

Enter a date (date): 3

Enter a date (year): 2007

06/03/2007

Enter a date (month): 0

Enter a date (date): 0

Enter a date (year): 0

5/17/2007 is the earliest date

Answers

earliest = ""

while True:

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

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

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

   if month == 0 and day == 0 and year == 0:

       break

   if month < 10:

       month = "0"+str(month)

   if day < 10:

       day = "0"+str(day)

   string_date = str(month)+"/"+str(day)+"/"+str(year)

   print(string_date)

   if earliest == "":

       earliest = string_date

   else:

       year,month,day=int(year),int(month),int(day)

       lst = list(map(int,earliest.split("/")))

       if year < lst[2]:

           earliest = string_date

       elif year == lst[2] and month < lst[0]:

           earliest = string_date

       elif year == lst[2] and lst[0] == month and day < lst[1]:

           earliest = string_date

print(earliest,"is the earliest date")

I wrote my code in python 3.8. Best of luck.

A pizza delivery restaurant decides to stop hiring drivers and start hiring cyclers to deliver its pizza. The restaurant thinks this will cut costs because it will not have to pay for gas. This is an example of which of the following supply chain management drivers?


A. information

B. facilities

C. transportation

D. inventory

Answers

Answer:

C. i think im sorry if  im wrong plz forgive

What does the aperture on a camera control?

Answers

Answer:

Aperture controls the brightness of the image that passes through the lens and falls on the image sensor.

Explanation:

PLZ HELP What is the problem with this program?

name = "Jenny"

name = input("What is your name?")

A.
the variable name has to begin with a capital letter

B.
input should be output

C.
the first line should be omitted because the second line defines the variable

D.
the variable needs to begin with a number to distinguish it from other variables

Answers

Answer:

B

Explanation:

the answer is B imput should be output

Answer: I think the answer is (C)

I'm doing the exam rn and that what i think

Explanation:

3.2 code practice question 2. Not in a rush.​

Answers

Answer:

value = float(input("Enter a number: "))

if (value >= 90):

   print("Great!")

Explanation:

Think back on the Font Tester App. Can you think of an example of another app or feature of an app which would use a


loop to control different elements on a screen?

Answers

Answer:

The search bars in search engines to find the most reliable information.  

Explanation:

A system consumed 0.4 seconds of processor time, 0.3 seconds accessing the network, and 0.5 seconds accessing the disk drive to execute the task. Where is the bottleneck in this network

Answers

Answer:

the disk drive

Explanation:

A bottle neck in a network is the condition through which the data flows becomes limited by the network of the computer system. It occurs in the user network or within the servers where there are contention for any internal server resources.

In the context, a system that consumes 0.4 seconds for the processor time and time 0.3 seconds for accessing the network. The system also takes 0.5 seconds for accessing disk drive for executing the task. So the bottle neck in this system is the disk drive.

which category does this fall in identity theft​

Answers

Answer:

A crime.

Explanation:

It's illegal.

Please help me for this question - Computer Science

Answers

Answer:

# F F F F 0 0

# F F 0 0 F F

# 0 0 F F F F

Explanation:

Hex values are your friend.

The first two digits represent red.

# F F 0 0 0 0 - Red

The second two digits represent green.

# 0 0 F F 0 0 - Green

The third two digits represent blue.

# 0 0 0 0 F F - Blue

If you know yellow is a combination of red and green, you express the corresponding digits.

# F F 0 0 0 0 - Red

# 0 0 F F 0 0 - Green

+

-------------------------------

# F F F F 0 0 - Yellow

Similarly,

If you know magenta is a combination of red and blue, you express the corresponding hex digits.

# F F 0 0 0 0 - Red

# 0 0 0 0 F F - Blue

+

-----------------------------

# F F 0 0 F F - Magenta

And finally,

If you know cyan is a combination of green and blue, you express the corresponding hex digits.

# 0 0 F F 0 0 - Green

# 0 0 0 0 F F - Blue

+

----------------------------

# 0 0 F F F F - Cyan

What does it mean to "express the digits"?

If you know anything about how color works on a computer, you'll know that you can express a certain amount of red, green and blue to get almost any color. These are known as "RGB" values. In RGB, the red, green or blue can individually go from 0 - 255. Think of it like a slider for how much you want of each color.

In RGB:

RGB (255, 255, 255) - White

Hex is just a really convenient and shorthand way to write the RGB color values.

In Hex:

#FFFFFF - White

Converting Denary to Binary
Work out the binary value of each denary number. Remember, any number you put a 1 under is
activated and will be added, anything with a 0 under is not activated and is not added One has been
done for you to show you how you can work it out
128
Denary
32
16
8
2
1
1
1
0
0
0
1
1
+
199
I need to make 199 out of the 8 different numbers I have across the top
I can use 128, this will leave me with 71 stil to make
I can then use 64, this will leave me with 7
can't use 16 or 8 as they won't fit into 7
I can use 4 which will leave me with 3
I can use 2 which will leave me with 1
can then use 1
I have made 199
Any number I used will be a one, numbers I didn't use are all
128
Denary
64
32
16
1
56
121
45
132
249

Answers

Answer:

Converting the numbers provided to decimal:

128: 10000000

64: 01000000

32: 00100000

16: 00010000

1: 00000001

56: 00111000

121: 01111001

45: 00101101

132: 10000010

245: 11111001

The space where text and content is entered and positioned for onscreen reading or printing

A. Page

B. Page margins

C. Insertion point

Answers

Answer:

Page.

Explanation:

A page typically occupies the largest portion of a document layout as it houses the main writeup or content of the document. The text contained in a document is written on a the main page of the document. The main page is surrounded by the page margin, which is an area which separates the tips or edges of an entire papwr and the writing area (page) of the document. The insertion point refers to an indicator which shows the position which a typed character will fall or be placed. Content written on a document's page is what is printed when the document is to be printed out and test entered on the page are what is seen by the reader.

If you have a 99% and you got a 50 on a test what is the grade please I will give brainless

Answers

Answer:

you would have a C

Explanation:

depends on your other grades. you can relax, ask your teacher for extra credit

Whats was the conflict of Theme Graphic Organizer - I was a Skinny Tomboy Kid

Answers

Answer: Answer: the conflict is the description what she did and felt as a child, how they feel like being disguised as a boy. Feeling as a outsider.

Explanation: your welcome.

Explanation:

Tone encapsulates the author's attitude toward a certain person, situation, or idea. Positive tones can be heard in some readings, while negative tones can be heard in others (negative). The reader can detect the tone by paying close attention to the diction, details, images, and language.

What conflict Graphic Organizer – I Skinny Tomboy Kid?

The speaker's language conveys a specific tone or attitude toward the poem's subject. For instance, the woman who speaks in “I Was a Skinny Tomboy Kid” has a tone of self-acceptance.

Because she is different from everyone else, and the author is attempting to convey the idea that if everyone were the same. The world wouldn't be as interesting, I believe the subject of “I Was a Skinny Tomboy Kid” is to accept your individuality.

Therefore, The description of what she did and felt as a child and how it feels to be pretending to be a boy creates the conflict. Feeling alienated.

Lean more about Skinny here:

https://brainly.com/question/29529416

#SPJ2


When protecting a book

You are not able to add a new sheet to the book, delete an existing sheet, or modify the title of the sheet.
true
false ??

Answers

false. maybe i honestly kind of think so

HELP ASAP PLEASE!!!

Answers

Answer:

Click and drag the mouse to select the cells

Explanation:

PLEASE HELP. How do you do this? ANSWER only if you know Please.

Answers

I think it might be 16. But I don’t really now so I say wait for another person’s answer this one might not be correct

Answer:

16

Explanation:

answer = num1 + num2 // 3+2 = 5

answer = answer + num1 // 5+3 = 8

return answer*num2 // 8*2 = 16

What are the difference between immediate window and view window.
(wrong answers will be reported)

Answers

Answer:

mmediate window is used to debug and evaluate expressions, execute statements, print variable values, and so forth. It allows you to enter expressions to be evaluated or executed by the development language during debugging.

The Command Window is used to execute commands or aliases directly in the Visual Studio integrated development environment (IDE).

Explanation:

Ict quiz I attached a picture

Answers

Answer:

error:invalid syntax

Explanation:

heeheee

In order to create a chart, which of the following must be selected?
O Data tools
O Worksheet tab
O Data source
O Table styles

Answers

A chart is the graphical presentation of data and is a part of the data visualization. The data is represented by the symbols and bars in a bar chart.

They are often sued to show large quantities of data in a simple and understandable form. For making a chart first we need to select data tools and then design tools.

Hence the option A is correct.

Learn more about the order to create a chart.

brainly.com/question/22004535.

Which of the following sentences use personification 


A. The stars in the sky are bright


B. The tree had leaves of green, yellow, and brown,


C. The truck pulled the heavy trailer out of the mud.


D. The snowflakes danced through the air.

Answers

Answer:

D

Explanation:

snowflakes cant dance.Its a human things.

Which of the following is a drilling cycle available with CAM software?
Point
Straight
Through
All of the above
None of the above

Answers

Answer:

straight just like me

The terms Apps and Applications can be used interchangeably about software installed
on both computers and mobile devices. True or False

Answers

Answer:

False

Explanation:

Hope this helps and have a great day!!!!

Help me asap please

Answers

Number 3 is the answer good luck

Can someone help me plz

Answers

Answer:

O two one

O Not;And;Or

I hope its help for you

have a great day

Other Questions
Rita is making chili. The recipe calls for 4 3/4 cups of tomatoes.How many cups of tomatoes are used in the recipe? Enter your answer as a fraction greater than 1. HELP ASAPP I WILL GIVE BRAINLIEST 1. What does Holling realize he is missing as he gets off the bus? Howdoes the problem get resolved? Which of the best describes a solution PLEASE HELP ME! I WILL GIVE BRAINEST Which of the following statements is FALSE?a.The goal of the peace treaty was to find a way for Native Americans to roam the frontier freely while settlers were moved to specially reserved plots of land.b.Ulysses S.Grant assigned Quakers as federal agents to negotiate peacefully with Native Americans.c.Ulysses S. Grant wanted to reach a peaceful solution to the conflict with Native Americans.d.The Treaty of Medicine Lodge Creek provided that tribes would move to reservation in Oklahoma. Latoya can plant 1/3of her garden in 2/5 hour. If she continues working at this rate, what fraction of Latoyas garden can she plant in one hour? Two families go to a theatre The degree of the polynomial function below is ____ f(x)=-3x^5+4x-2 BRAINLIEST!! PLZ HELP which document claimed that states had the power to refuse to enforce or comply with federal laws that they determined were unconstitutional PLZ HELP! WILL MARK BRAINLEST What is the slope of the line (Picture below) JODJODODODODODOOODODODDOOOODODODOD Before the Maya baptism begins the person leading the ceremony needs to ask__________ to gods of the four corners.Immersive Reader (1 Point) for rain for blessing for wisdom for permission Poor c cups never had a chance to have a d cup its ok others feel your pain Eight is 1/5 of what number A 0.200 M NaOH solution was used to titrate a 18.25 mL HEsolution. The endpoint was reached after 31.20 mL of titrantwere added. Find the molar concentration of the original HFsolution. 9 - 3 1/3 + 1 = ?whats the answer? One card is selected at random from a deck of cards. Determine the probability that the card selected is a card greater than 3 and less than 8. Put the following least you greatest 125%1 1/21.26