What is assembler? What is Compiler?What is interpreter?

Answers

Answer 1

Answer:

A compiler is a software that converts programs written in a high level language into machine language.

An interpreter is a software that translates a high level language program into machine language while an,

assembler is a software that converts programs written in assembly language into machine language.

Answer 2

Explanation:

1A. Assembler is a program that converts assembly level language (low level language) into machine level language.

2A. Compiler compiles entire C source code into machine code.

3A. interpreters converts source code into intermediate code and then this intermediate code is executed line by line.

PLEASE THANK, RATE AND FOLLOW ME,

AND PLEASE MARK ME AS "BRAINLIEST" ANSWER

HOPE IT HELPS YOU


Related Questions

What are the most important considerations when comparing computer systems? Check all of the boxes that apply.

the type of mouse
the type of keyboard
computer speed
amount of storage

Answers

C and D



Explanation:




True or false: The Nickelodeon the first movie theater to become successful showing only films opened in Pittsburgh in 1915

Answers

Answer:

ture

Explanation:

Answer:

TRUE I THINK....................

Explanation:

A ___ covers several adjacent buildings of a school and business.

capus area networking

virtual private network

metropolitan area network

personal area network

Answers

Answer:

Campus Area Network.

Explanation:

Doesn't need explaining.

Answer:

campus area network

Explanation:

correct on edge

Choose the term that best matches the definition.
v rules used by a computer network.

A. Network protocol
B. Hierarchy protocol
C. Procedure

Answers

Answer: it’s network protocol

Explanation:

Answer:

A. Network protocol

Explanation:

On Edge, it states that network protocol are, "rules used by computers in a network." Therefore, it's confirmed.

I hope this helped!

Good luck <3

Babbage’s punch cards, which used numbers from 0 to 9. Digital or analog.

Answers

Answer:

Analog

Explanation:

yuh

Answer:

Your answer would be

1. Digital

2. Analog

3. Digital

4. Analog

5. Analog

Explanation:

Edge 2022

help me pleaseeeeeeeee​

Answers

Answer:

Git hub or. Stackoverflow has most of the answers about programming

Explanation:

What is the gear ratios of a gear train with an input gear of 48 teeth and an output gear of 12?

A. 1:4
B. 1:3
C. 4:1
D. 3:1

Answers

Answer:

D: 4:1

Explanation:

If you divide 48 by 12, you get 4. 12 is 1/4 of 48. Therefore, you keep it at 4:1.

In order to compute the gear ratio, one of two methods can be used: either divide the output speed by the input speed (i=Ws/We) or divide the number of teeth on the driving gear by the number of teeth on the driven gear (i=Ze/Zs). Thus, option C is correct.

What gear ratios of a gear train with an input gear?

The total debt divided by the total shareholders' equity yields the net gearing calculation. The amount of equity that would be needed to pay off all outstanding obligations is shown by the ratio, which is expressed as a percentage.

The speed ratio (also known as velocity ratio) of a gear train is the proportion of the driver's speed to the driven or follower's speed. Train value: The gear train's train value is defined as the difference between the speed of the driver and the speed of the driven or follower.

Therefore, 48 divided by 12 results in 4. 12 is 1/4 of 48. You leave it at 4:1.

Learn more about gear ratios here:

https://brainly.com/question/28883796

#SPJ2

HELP ASAP!!Prompt
What is a default font?

Answers

Answer:

default font is the text styling that is usually used by a computer when a document is opened, such as Times New Roman. Font, Typography terms.

A default font is known to be the key or main font that is used by any person or firm.

What Is a Default Font?

A default font is regarded as the primary type of font that is often used in any of document or writeup by a firm or by an individual.

Conclusively, A firm or a company uses this font in their products such as Calibri  as the main font in their document.

Learn more about default font from

https://brainly.com/question/23359310

If a 60 lb. load is placed on the platform, what will the pressure gauge reading be if the piston area is 5 sq.in? Give your answer
in psi.
Help Please

Answers

Answer:

The pressure gauge reading will be;

12 psi

Explanation:

The question relates to relationship of pressure and area

The given parameters for the measurement are;

The weight of the load = 60 lb

The required area of the piston = 5 in.²

Pressure exerted by a force can be defined as follows;

[tex]Pressure = \dfrac{Force}{Area}[/tex]

The weight of the load = The force applied by the load

Therefore;

[tex]Pressure = \dfrac{Force}{Area} = \dfrac{60 \ lb}{5 \ in.^2} = 12\dfrac{lb}{in.^2} = 12 \ psi[/tex]

The gauge reading will be 12 psi.

Explanation:

hey u just answered my question

can u tell me r u a girl

The used of PPE in the shop includes the following, except:
A. safety apron
B. safety goggles
B. safety helmet
D. safety net

Answers

It should be C. Safety Helmet I think

Answer:

Safety helmet is not included in PPE

10 facts about academics

Answers

Answer:

when ur in academics ur smart

Explanation:

Click each image that you consider to be a computer.

Answers

Answer:

the 1 with the dude whos sitting at the desk with the really old computer. witch is probly 4\d

Explanation:

This is a human-made physical system.

ecosystem

health care system

bicycle

school system

Answers

the answer is health care system

please help me also

What is the purpose of a Post Mortem Review? (5 points)

Answers

Answer:

The interpretation of the discussion is characterized throughout the explanation portion below.

Explanation:

A post-mortem investigation, as well widely recognized as the autopsy, has become a post-mortem assessment of that same body. This same goal of some kind of post-mortem should be to investigate what happened. Post-mortems have been performed by pathologists (Physicians specializing in considering the mechanisms as well as tends to cause including its illness).

If tech is smarter than us. How did a human make something smarter than him/her?

Answers

Answer:

hey eliza you there

Explanation:

Answer:

Well, really we are the smart ones since we created it and we put all of the info inside of that robot

Explanation:

The input force used to provide power to a machine is the _____.

Linkage
Powertrain
Power Adapter
Power Source

Answers

Answer:

D    power source

Explanation:

whitebox learning

What are the benefits of writing functions that use parameters and return List 2 please and explain what is return

Answers

Answer and explanation:

There are many benefits of writing functions that use parameters and return. Some of them are:

1. Flexibility: With functions having parameters, several values of the parameters can be used at invocation time thereby making the application flexible. For example, given the following function in Java.

public void showName(String name){

   System.out.println("Your name is " + name);

}

To call this method (function), the programmer could use various values for the name parameter used in the function like so:

showName("John");

showName("Doe");

If the function didn't have a parameter, it is possible it will only print a hardcoded name every time the function is called.

2. Scope Control: When a function is allowed to return a value, it helps to work around scope issues since variables declared within a function are limited to that function and do not exist outside the function. This means that the values of these variables cannot be used anywhere else outside the function in which they are being declared. However, if the function returns a value, the value can be used anywhere else in the program.

For example:

public String getDouble(int x){

   int y = x * 2

   return y;

}

The function above returns twice the value of the argument supplied to it. Since the integer variable y is declared within the function, it's value cannot be used outside the function. However, since the value is being returned by the function, it could be used anywhere the function is being called. Thanks to the return keyword.

what is this answer?

Answers

Answer:

ITS ALL ABOUT C

Explanation:

READ IT CAREFULLY

Approximately how many tweets are posted on Twitter each day? 500 500 thousand 500 million 500 billion

Answers

Answer:

around 500 million

Explanation:

Why was the IPv6 address format created? Select one:
A. It allows you to use words instead of numbers to identify a computer.

B. It supports faster download speeds than IPv4.

C. It allows computers on the LAN to safely connect to each other.

D. It can provide many more internet addresses than IPv4.​

Answers

Answer: D

Explanation:

The image shows a bar graph.

A bar graph shows a series of 4 vertical bars along an x and y axis.

In which scenarios would using this graph be best for a presentation? Check all that apply.

showing change in a community’s average median age over a century
comparing the percentages of the types of pets owned in a community
showing how the world’s shark population has changed over 50 years
comparing the number of men and women who earned engineering degrees in a decade
showing the percentages of the various religions practiced in Indonesia

Answers

Answer:

showing change in a community’s average median age over a century

showing how the world’s shark population has changed over 50 years.

comparing the number of men and women who earned engineering degrees in a decade

Explanation:

The purpose of project management is to fix problems.
True
False

Answers

Answer:

true

Explanation:

How would Patrick save his formatted message in Outlook?
O The Draft Folder saves a real-time version automatically.
O Click Save As Draft and it is placed in the Saved Folder.
O Click Save and it remains in the Draft folder for later edits.
O Click Archive and it will save the message in your Documents folder.

Answers

Answer:

O Click Save and it remains in the Draft folder for later edits.

Explanation:

I hope it's help

Answer:

The Answer is C!

Hope it helps

Explanation:

Why is it important to organize your computer files?

“With a explanation”

Answers

Answer: So then every thing is not cluster together and you have everything where you can get to it faster and it just makes everything  100 times better then it not being organized :) hope this helped and if it didn't I'm so sorry

Explanation:

18
Taglarim
1 point
Plagiarism is considered an act of
type your answer...
and is the most type your answer...
violated offense under most schools' academic code of conduct.
5
1

Answers

Answer:

Plagiarism; meaning

Explanation:

plagiarism is presenting someone else's work or ideas as your own with or without their consent by incorporating it into your work without full acknowledgement.

Select the correct answer from each drop-down menu.
Complete the following sentence.
In this last step of initiation phase, projects are . At this stage, the project is with projects that are running.



1(approved
2(compared

Those are the answers
#platogang

Answers

Answer:

Approved

Explanation:

Answer:

the answer is in the question

Explanation:

Propose a list of five milestones that would be reasonable in a mid-project prototype phase of a video game development project (any genre).

Answers

Answer:

Five milestones of a game development process are prototype, vertical slice, pre-alpha, alpha, and beta.

Explanation:

Game development is the process of creating or producing a functional bug-free game. The development process hits several milestones throughout its three stages or processes. These milestones are prototype, vertical slice, pre-alpha, alpha, beta, and gold master.

What is the base of a number system?

A.
the minimum number of digits needed to represent a number in that system
B.
the place value of the leftmost digit in numbers written in that system
C.
the place value of the rightmost digit in numbers written in that system
D.
the number of symbols used to represent numbers in that system

Answers

Answer:

A

the minimum number of digits needed to represent a number in that system

Examine the code below. When this program runs, what size will the text be when printed on the screen?


import simplegui


def draw(canvas):

for i in range (10):

canvas.draw_text("Hello", (10, 25 + 20*i), 20, "red")


frame = simplegui.create_frame("Testing", 400, 400)

frame.set_draw_handler(draw)

frame.start()

Answers

Answer:

The answer is 20

Explanation:

I have this homework

A good practice when using public domain content is to

a. Credit the source
b.Get a copy of the trademark
c.Make donations when able
d.Ask for permission

Answers

Maybe try C I don’t really get it
Other Questions
The myth frames Orpheus' decision to rescue Eurydice as a heroic act of love, whereas thepoem frames it asAan accident.B .a selfish act.a difficult decision.Da moral responsibility A toy moves 240 centimeters in 60 seconds north. Which is the toy's velocity? * Question 7 of 25What is the approximate value of sin C? 1. Sixteen-year-old Thomas is in a difficult position. He has been trying to break into the popular group at school, and now one of the members of the group has invited him to a party on Saturday. He really wants to go, but he has already volunteered to help his church youth group with an activity for first graders that night. In addition, he knows that there will be drinking at the party, and he has promised his mother that he would never drink in high school, and she trusts him. Predict what Thomas will do and explain his decision using Piaget's theory of cognitive development, Kohlberg's theory of morality, and Erikson's theory of identity formation. Write a quadratic function to model the graph. Please help!! Question 5 of 10Rise is the horizontal change between any two points on a line.A. TrueB. FalseSUBMIT How does the setting affect the narrator of the story?A. It makes the narrator feels far away from the cityb. It makes the narrator wish he was in the city C. It makes the narrator feels like the city wish he wasD. It makes the narrator wish he was in the forest in the city How have eastern Europe's relations with the rest of the world changed sincethe end of the Cold War?A. Most countries in eastern Europe refuse to trade with otherregions of the world.B. Many countries in eastern Europe have joined the European Union.C. Many countries in eastern Europe try to spread communism toneighboring states.D. Most countries in eastern Europe have few conflicts with theirneighbors. Which statement best compares the characteristics of Robert Wagner and Alfred E. Smith? Hi can someone help me out. This is due by the end of the day. Language Focus: Telling Stories with Past VerbsNarratives can be told in present tense or past tense. Telling a story in present makes it feel moreimmediate and more exciting. Read the following story, which is written in present tense, and thenwrite it again in past tense. Note that the story ends with a quote. Since the purpose of quotationmarks is to preserve the language in its original form, DO NOT change the quotes.There is a brilliant scientist who travels around to explain his new theory at universities all over the country. The scientistdoesn't like to drive, so he hires a driver to take him everywhere. The driver usually sits in the back of the room while thescientist gives his lecture.One day on their way to the 10 university of the week, the driver says that he has heard the lecture so many times thathe thinks he can give it himself. The scientist tells the driver that he will give him the chance to try. The scientist and thedriver trade clothes. The scientist sits in the back of the room while the driver gives the lecture perfectly.At the end of the lecture, a member of the audience asks a difficult question. The driver thinks fast. He says, "That is sucha simple question. In fact, to show you how simple it is, I am going to invite my driver to come to the front of the roomand answer it!" Please help me read the attached picture How did economics contribute to shifting attitudes toward slavery in Georgia between 1750 and 1860? HELP PLS MARKING BRANLIST 100 Pts TAKING TEST RNA sprinter runs the 50 m dash in 5.6 seconds. What is the sprinter's speed?280 m/s0.11 m/s44.4 m/s8.93 m/s Enter the numerator that makes the equation true.1 3/4 + 1 1/3 = 1 _/12 + 1 4/12The '_' is blank. What two primary colors do you need to make Red-OrangeRed and OrangeRed and BlueYellow and OrangeYellow and RedBlue and Yellow Subtracting Two Vectors not at the OriginVector p has an initial point at (3, 3) and its terminal point is at (5, 7).Vector Rs has an initial point at (4, -6) and its terminal point is at (1.-5).What is the component form of vector PO - R$? This be so hard I need a little more help Question 1Which number falls between 0.92 and 0.922?0.960.91 0.920.930.940.95Select an AnswerA) 0.918 B)0.921 C)0.938D)0.951 Use combining like terms to simplify the expression: 7x+25x+4