1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Lady_Fox [76]
3 years ago
6

After successfully building a machine language version of thePascal compiler, one could in principle discard the P-code interpre

ter andthe P-code version of the compiler. Why might one choose not to do so?
Computers and Technology
1 answer:
MA_775_DIABLO [31]3 years ago
6 0

Answer:

Pascal is a high-level programming language, and anyone can decide to write a machine language compiler with it, If Pascal language specifications get to change or somewhere in the code a bug is discovered, it will be easier to build the machine language compiler again from the Pascal code version than deciding to modify the machine language.

Explanation:

You might be interested in
Wich of the following is true about how your skill set relates to a future career
larisa [96]

The statement which is true about how your skill set relates to a future career is: D. Skills from part-time jobs and volunteer work may prove beneficial in future jobs.

<h3>What is a career field?</h3>

A career field can be defined as a series of sequential jobs that use similar skills, and they typically lead to the short and long-term career goals of an individual such as an employee.

<h3>What is a skill acquisition plan?</h3>

A skill acquisition plan can be defined as a written plan that is used to outline the goals, objectives, materials, teaching methods, and data collection techniques for teaching trainees or employees, a specific skill or set of skills.

This ultimately implies that, skill acquisition plans include all of the following:

  • Goals
  • Objectives
  • Materials
  • Data collection

In conclusion, we can infer and logically deduce that the statement which is true about how your skill set relates to a future career is that skills you acquired from part-time jobs and volunteer work may prove beneficial in future jobs.

Read more on skill acquisition plans here: brainly.com/question/15352575

#SPJ1

Complete Question:

Which of the following is true about how your skill set relates to a future career? (1 point)

Employers like to hire people with only full-time job experience.

Employers consider subject-specific skills for new positions.

Skills learned in high school should not be included.

Skills from part-time jobs and volunteer work may prove beneficial in future jobs.

5 0
2 years ago
What is an Pseudocode Algorithm for drying clothes
Lisa [10]

Answer:

Sort out the clothes and find the light colored clothes, wash them, dry them, and fold them, repeat the steps for the dark colored clothes.

3 0
2 years ago
PLEASE HELP!!
Elden [556K]

Answer:

Paquete de red o paquete de datos es cada uno de los bloques en que se divide la información para enviar, en el nivel de red. Por debajo del nivel de red se habla de trama de red, aunque el concepto es análogo. En todo sistema de comunicaciones resulta interesante dividir, la información a enviar, en bloques de un tamaño máximo conocido. Esto simplifica el control de la comunicación, las comprobaciones de errores, la gestión de los equipos de encaminamiento (routers), etcétera.

Al igual que las tramas, los paquetes pueden estar formados por una cabecera, una parte de datos y una cola. En la cabecera estarán los campos que pueda necesitar el protocolo de nivel de red; en la cola, si la hubiere, se ubica normalmente algún mecanismo de comprobación de errores.

Explanation:spero  teyaudee

8 0
3 years ago
In which scenario would someone most likely be
andrew11 [14]

Answer:

Option 1. Brent is preparing for his class speech

Explanation:

I chose option one because he would need presentation software to show his class about his speech

5 0
4 years ago
Create a new Java application called "AverageCalculator" (without the quotation marks) that prompts the user with three separate
k0ka [10]
<h2>Answer:</h2>

//import the Scanner class

import java.util.Scanner;

public class AverageCalculator {

   public static void main(String[] args) {

       //Create an object of the Scanner class to allow for user's input

       Scanner input = new Scanner(System.in);

       

       //Create first prompt for the user to enter the first number

       System.out.println("Please enter the first number");

       

       //Use the Scanner object input, to receive the first number

       //And store in a double variable called fnum

       double fnum = input.nextDouble();

       

       //Create second prompt for the user to enter the second number

       System.out.println("Please enter the second number");

       

       //Use the Scanner object input, to receive the second number

       //And store in a double variable called snum

       double snum = input.nextDouble();

       

       //Create third prompt for the user to enter the third number

       System.out.println("Please enter the third number");

       

       //Use the Scanner object input, to receive the third number

       //And store in a double variable called tnum

       double tnum = input.nextDouble();

       

       //Declare a variable of type double, called avg, to hold the average of the three numbers

       double avg;

       

       //Now find the average of the three numbers,

       // and store the result of the average in the avg variable declared above

       avg = (fnum + snum + tnum) / 3;

               

       //Print out the result with explanatory text while you convert

       //all numbers to 2 decimal places by using the String.format() method.

       //The String.format() method takes in two arguments - the format descriptor and  

       //the number to be transformed.

       //First argument : In this case, the format descriptor is %.2f

       //Where the % sign signifies that the string (%.2f) is a format specifier.

       //The .2 specifies 2 decimal places. It means, you would use .3 if you wanted the number in 3 decimal places.

       //The f signifies that the number in question is a floating-point number.

       //Second argument : specifies the floating-point number to be transformed.        

       System.out.println("The average of the numbers " + String.format("%.2f", fnum) + ", " + String.format("%.2f", snum) + ", and " + String.format("%.2f", tnum) + " is " + String.format("%.2f", avg));

   

}      //End of main method

   

}   // End of class declaration

<h2>Sample output:</h2><h2>---------------------------------------------------------------</h2>

>> Please enter the first number

30

>> Please enter the second number

100

>> Please enter the third number

21

>> The average of the numbers 30.00, 100.00, and 21.00 is 50.33

<h2>---------------------------------------------------------------</h2>

<h2>Explanation:</h2>

The code above has been written in Java and it contains comments explaining every segment of the code. Please go through the comments carefully for more understanding.

<h2>Code without comments:</h2><h2 />

import java.util.Scanner;

public class AverageCalculator {

   public static void main(String[] args) {  

       Scanner input = new Scanner(System.in);

       System.out.println("Please enter the first number");

       double fnum = input.nextDouble();

       System.out.println("Please enter the second number");

       double snum = input.nextDouble();

     

       System.out.println("Please enter the third number");        

       double tnum = input.nextDouble();

     

       double avg;

       avg = (fnum + snum + tnum) / 3;

               

       System.out.println("The average of the numbers " + String.format("%.2f", fnum) + ", " + String.format("%.2f", snum) + ", and " + String.format("%.2f", tnum) + " is " + String.format("%.2f", avg));

   

}  

   

}

4 0
3 years ago
Other questions:
  • The _____ is the mechanism inside a computer that actually does the arithmetic and logical operations.
    15·1 answer
  • ____ is necessary in any computer system because some resources such as memory, cpu, and dedicated devices must be exclusively a
    6·1 answer
  • Which phrase refers to the collection of geospatial data through the use of satellite images/pictures?
    13·1 answer
  • A database planner names a field “Organic ingredients_3”. Why would this name Create possible problems in programming?
    8·2 answers
  • A chain of dry-cleaning outlets wants to improve its operations by using data from
    7·1 answer
  • Name the Python Library modules which need to be imported to
    5·1 answer
  • Please please help I don’t understand this
    7·2 answers
  • Technology and Communications Quiz Active 1 Which of the following inventions has had the greatest impact on sound technology? A
    11·1 answer
  • A user may enter some text and the number of times (up to a maximum of 10) to repeat it. Display the text repeated that many tim
    12·1 answer
  • create a list of numbers 0 through 40 and assign this list to the variable numbers. then, accumulate the total of the list’s val
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!