Which of the following is a programming language that is interpreted? (5 points)

Assembly
Java
Machine
Python

Answers

Answer 1

Answer: python


i just did a test on this


Related Questions

Comparator method compare should return ________ if the first argument is greater than the second argument. a positive int value. zero. a negative int value. a String.

Answers

Comparator method compare should return option A: positive int value if the first argument is greater than the second argument.

What is a positive int?

The counting numbers or natural numbers, which are sometimes known as the positive integers, are said to be the numbers  such as 1, 2, 3, and a lot more. Note that any figure that is said to be higher than zero is one that is  considered positive.

Therefore, If an integer is more than zero, it is said to be positive; otherwise, one can say that it is negative. Zero is known to be characterized as being neither positive nor can it be known as negative.

Learn more about positive value from

https://brainly.com/question/25828920
#SPJ1

Parallel Computing and Distributed Computing
Sequential computing has been great, but computer scientists need every speed and storage advantage they can get. Clever computer scientists have found even more efficient ways to use computer hardware for certain types of problems.

parallel Computing
Parallel computing ​is the use of a computer that performs multiple instructions at the same time. The programs used for parallel computing must be designed so they can be broken down into smaller independent parts that each processor can work on.

Parallel computing uses multiple computing cores. A computing core​ is one processor in the CPU. Parallel computers will have many different processors in their CPUs instead of just one.

Speedup in Parallel Computing
The advantage of a parallel computing solution over a sequential computing solution can be measured in speedup. Speedup​ is the amount of time used to perform a task with sequential computation divided by the amount of time used to perform the same task with parallel computation.

For example, imagine that you run a program on a sequential computer and it takes 10 minutes to complete. Next, you run the same program on a parallel computer and it takes 5 minutes to complete. You would divide the 10 by the 5 and come up with a speedup of 2. This means your program is two times faster on a parallel computer.

Distributed Computing
Many computer problems are so complex that they take an extremely long time to run on one computer. Distributed computing​ is the use of multiple computers to solve a problem. Distributed computing is like parallel computing but with many different computers; parallel computing is the use of one computer with many different processors.

QUESTION:
A program takes 10 minutes to compute sequentially and has a speedup of 2 on a parallel computer, meaning it takes how many minutes. ??

Answers

Answer:

5 minutes

Explanation:

It is there in the section on Speedup in Parallel Computing

For example, imagine that you run a program on a sequential computer and it takes 10 minutes to complete. Next, you run the same program on a parallel computer and it takes 5 minutes to complete. You would divide the 10 by the 5 and come up with a speedup of 2

Write a recursive function encode that takes two Strings as an input. The first String is the message
to be encoded and the second String is the key that will be used to encode the message. The function
should check if the key and message are of equal length. If they are not the function must return the
string “Key length mismatch!” Otherwise the function must get the ASCII value of each character in
the key string and check if it is divisible by 2 if it is then the respective character in the message will be
encoded by getting the ASCII value of that character and adding 5. If corresponding key character it is
not divisible by 2 then 3 is added instead.

Answers

A recursive function that encodes that takes two Strings as input. The first String is the message to be encoded and the second String is the key that will be used to encode the message is given below:

The Recursive Function in C++

// C++ program to decode a string recursively

// encoded as count followed substring

#include<bits/stdc++.h>

using namespace std;

// Returns decoded string for 'str'

string decode(string str)

{

   stack<int> integerstack;

   stack<char> stringstack;

   string temp = "", result = "";

   // Traversing the string

   for (int i = 0; i < str.length(); i++)

   {

       int count = 0;

       // If number, convert it into number

       // and push it into integerstack.

       if (str[i] >= '0' && str[i] <='9')

       {

           while (str[i] >= '0' && str[i] <= '9')

           {

               count = count * 10 + str[i] - '0';

               i++;

           }

           i--;

           integerstack.push(count);

       }

       // If closing bracket ']', pop element until

       // '[' opening bracket is not found in the

       // character stack.

       else if (str[i] == ']')

       {

           temp = "";

           count = 0;

           if (! integerstack.empty())

           {

               count = integerstack.top();

              integerstack.pop();

           }

           while (! stringstack.empty() && stringstack.top()!='[' )

           {

               temp = stringstack.top() + temp;

               stringstack.pop();

           }

           if (! stringstack.empty() && stringstack.top() == '[')

               stringstack.pop();

           // Repeating the popped string 'temo' count

           // number of times.

           for (int j = 0; j < count; j++)

               result = result + temp;

           // Push it in the character stack.

           for (int j = 0; j < result.length(); j++)

               stringstack.push(result[j]);

           result = "";

       }

       // If '[' opening bracket, push it into character stack.

       else if (str[i] == '[')

       {

           if (str[i-1] >= '0' && str[i-1] <= '9')

               stringstack.push(str[i]);

           else

           {

               stringstack.push(str[i]);

               integerstack.push(1);

           }

       }

       else

           stringstack.push(str[i]);

   }

   // Pop all the element, make a string and return.

   while (! stringstack.empty())

   {

       result = stringstack.top() + result;

       stringstack.pop();

   }

   return result;

}

// Driven Program

int main()

{

   string str = "3[b2[ca]]";

   cout << decode(str) << endl;

   return 0;

}

Read more about recursive functions here:

https://brainly.com/question/489759

#SPJ1

cann anyone helppppp?​

Answers

Answer:

#include <stdio.h>

int main(){

   int limit;    

   int i;

   printf("Enter the limit: ");

   scanf("%d", &limit);

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

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

           printf("%d", j);

       }

       printf("\n");

   }

   return 0;

}

Explanation:

What method of accessing a scaffold is unsafe and should never be used

Answers

Answer:

blocks, bricks, walk boards

Explanation:

What happens when the condition is met in this program?
on start
set count to
while
do
count
play sound ba ding
change count by
pause 1000 ms
OA. The count is changed by 2.
OB. The count starts over.
C. A sound effect is played.
OD. The game pauses for 2 seconds.

Answers

In the given program, if the condition is met, the sound effect will be played. The correct option is C.

What is programming?

The development of individual pieces of software that allow the entire system to function as a single unit is referred to as systems programming.

Many layers are involved in system programming, including the operating system (OS), firmware, and development environment.

A "While" Loop is used to iterate over a specific block of code until a condition is met.

In the given scenario, the condition is that when the number is less or equal to 2, then the sound effect will be played else, the program will reset.

Thus, the correct option is C.

For more details regarding programming, visit:

https://brainly.com/question/11023419

#SPJ1

Answer:

C. a sound affect is played

trust me i just did it

2.3.2

Explanation:

what is mouse spealing

Answers

Answer:

use a mouse to move or position a cursor on computer screen

Explanation:

mouse cursor

State two differents between website and webpage.​

Answers

Answer:

The webpage is a single document on the web using a unique URL, while a website is a collection of multiple webpages in which information on a related topic or another subject is linked together under the same domain address.

Explanation:

Which of the following would not impact the digital divide

Answers

The answer choice that would not impact the digital divide is b. Less sharing of the work we produce

What is Digital Divide?

This refers to the term that is used to describe the wide gap between people who have access to internet and technology in relation to those who do not have such access.

Hence, we can see that from the complete question, there are four answer choices given and each one of them includes an option that would actually impact this digital divide such as:

a. A decline in the price of internet accessc. Expansion of free wifi connectivity in major citiesd. Legislation allowing communications companies to charge per website for access

However, it is important to note that critically looked at, one can see that the answer that would NOT impact the issue of digital divide is actually the topic and issue of Less sharing of the work we produce which is actually option B.

Read more about digital divide here:

https://brainly.com/question/14896873

#SPJ1

The complete question is:

Which of the following would not impact the digital divide?

a. A decline in the price of internet access

b. Less sharing of the work we produce

c. Expansion of free wificonnectivity in major cities

d. Legislation allowing communications companies to charge per website for access

use flash fill to fill range c4:c20 after typing LongKT in cell C4 and Han in cell C5

Answers

To use flash fill to fill range c4:c20 after typing LongKT in cell C4 and Han in cell C5, the process are:

1. Key in the needed information.

2. Then also key in three letters as well as click on enter for flash fill

How do you flash fill a column in Excel?

In Excel will fill in your data automatically if you choose Data > as well as select Flash Fill.

When it detects a pattern, Flash Fill fills your data for you automatically. Flash Fill can be used, for instance, to split up first and last names from a single column or to combine first as well as the last names from two different columns.

Note that only Excel 2013 as well as later are the only versions that support Flash Fill.

Learn more about flash fill from

https://brainly.com/question/16792875
#SPJ1

ROCK = 0 PAPER = 1 SCISSORS = 2 # Read random seed to support testing (do not alter) and starting credits
seed = int(input())
# Set the seed for random
random.seed(int(seed))

# Type your code here.

Answers

In this exercise we have to use the knowledge of computational language in python to write a code that Read random seed to support testing (do not alter) and starting credits seed = int(input()).

Writting the code:

import random

ROCK = 0

PAPER = 1

SCISSORS = 2

# Read random seed to support testing (do not alter) and starting credits

seed = int(input())

# Set the seed for random

random.seed(int(seed))

# Type your code here.

player_1 = input()

player_2 = input()

rounds = 0

count = 0

win_count1 = 0

win_count2 = 0

while True:

   rounds = int(input())

   if rounds >= 1:

       break

   else:

       print("Rounds must be > 0")

print(player_1 + " vs " + player_2 + " for " + str(rounds) + " rounds")

while count < rounds:

   p1 = random.randint(0, 2)

   p2 = random.randint(0, 2)

   if p1 == p2:

       print("Tie")

   elif p1 == ROCK:

       if p2 == SCISSORS:

           print(player_1 + " wins with rock")

           win_count1 = win_count2 + 1

       else:

           print(player_2 + " wins with paper")

           win_count2 = win_count2 + 1

       count = count + 1

   elif p1 == PAPER:

       if p2 == ROCK:

           print(player_1 + " wins with paper")

           win_count1 = win_count1 + 1

       else:

           print(player_2 + " wins with scissors")

           win_count2 = win_count2 + 1

       count = count + 1

   elif p1 == SCISSORS:

       if p2 == PAPER:

           print(player_1 + " wins with scissors")

           win_count1 = win_count1 + 1

       else:

           print(player_2 + "wins with rock")

           win_count2 = win_count2 + 1

       count = count + 1

print(player_1 + " wins " + str(win_count1) + " and " + player_2 + " wins " + str(win_count2))

See more about python at brainly.com/question/18502436

#SPJ1

Which camera settings will cause the amount of light entering the lens to change?

Answers

Answer:

Aperture

Explanation:

Aperture controls the lens' diaphragm, which controls the amount of light traveling through the lens to the film plane.

How is blockchain different from traditional database models?


Blockchain can lead to increased transparency and trust in data, ultimately driving more innovation, improved productivity, and quality.


Blockchain prohibits transparency by redefining the fundamental nature of business ecosystems and business flows.


Blockchain provides multiple versions of the data that can be kept by individual entities.


Blockchain increases innovation; however, it decreases productivity and quality.


I don't know this yet.

Answers

The difference between blockchain and traditional database models is that:  C. Blockchain provides multiple versions of the data that can be kept by individual entities.

What is a database?

A database simply refers to an organized and structured collection of data that're stored on a computer system as a backup and they're usually accessed electronically.

What is a blockchain?

A blockchain can be defined as a digital and dynamic financial system that is designed and developed to be used in recording and maintaining transactions that are associated with or made through the use of a bitcoin, usually as a database.

In this context, we can infer and logically deduce that unlike the traditional database models, blockchain is designed and developed to provide multiple versions of financial transactions (data), and they can also be kept by individual business entities.

Read more on blockchain here: brainly.com/question/25700270

#SPJ1

How is a high-level programming language compiled? (5 points)

All lines of code are translated together and then executed at once.

this is the correct answer
True
False

Answers

The way in which a high-level programming language is compiled is: A. All lines of code are translated together and then executed at once.

What is programming?

Programming simply refers to a process through which software developer and computer programmers write a set of instructions (codes) that instructs a software on how to perform a specific task on a computer system.

What is a compiler?

A compiler can be defined as a software program that is designed and developed to translate the entire source (all lines) code of a program all at once, in order to produce an object code.

This ultimately implies that, a compiler translates all lines of code of a software program that is written in a high-level programming language into low-level programming language (machine language) and then executed at once.

Read more on compiler here: https://brainly.com/question/27049042

#SPJ1

Complete Question:

How is a high-level programming language compiled?

A. A binary interpreter is used to translate each line of code.

B. All lines of code are translated together and then executed at once.

C. One line of code is translated and then executed before moving to the next line.

D. Six lines of code are translated and then executed before moving to the next set of six.

code for computer need a master code for it.

Answers

Answer:

Binary code comprises a series of zeros and ones, used to communicate instructions. This code is a low-level programming language. Each digit in a coded sequence connects to a switch in your computer.

need help for checking if wrong please help me correct it.The first question (iii) how to do?​

Answers

Answer:

Answer to ((iii))
total = number1 + number2;

All the rest look great

Explanation:

innovative ways of sharing information that could be advantageous of

Answers


How do you share innovative ideas?
Find out what questions they have and answer them. Ask them what thoughts they have about starting and plug those into the vision you had for the idea. Give them total freedom to reinvent the idea. Commit to helpfully watching over the co-creator's shoulder as they start to share ideas on moving forward

Question 11 Which one of the following is an infinite loop?
A. for i in range(-1):
print(i)
B. X=10
while x <= 10:
x=x-1
print (x)
C. for I in range (10):
print (I -10)
D. none of the above

Answers

Answer:

B.

x=10

while x <= 10:

    x=x-1

Explanation:

Since x starts at 10 and keeps decreasing, its value will be always less than 10 so the loop will never end

Someone who creates a new product to sell and takes on all of the risks
and responsibility
An entrepreneur
An accountant
A venture capitalist
A corporation

Answers

Answer: an entrepreneur

transferring data from a local computer to a remote computer is referred to as what?​

Answers

Answer: uploading

Explanation:

it’s referred as uploading when you move data from one to another

can helpppppppppppppp​

Answers

Answer:

#include <stdio.h>

int main(){

   float score, totalScore = 0.0;

   int count = 1;

   

   printf("Enter marks for Student %d (or -1 to stop): ", count);

   scanf("%f", &score);

   while (score != -1){

       count++;

       totalScore += score;

       

       printf("Enter marks for Student %d (or -1 to stop): ", count);

       scanf("%f", &score);

       

   }

   printf("Number of students: %d\n", count-1);

   printf("Average: %.2f\n", totalScore/(count-1));

   

}

Explanation:

Explain keyboard and it’s layout and how to type with a keyboard
List the function of keyboard in typing
Describe process of use of keyboard for typing

Answers

It depends on the country and the layout of the keyboard for example the French keyboard is different to the English keyboard. A keyboard's primary function is to act as an input device. Using a keyboard, a person can type a document, use keystroke shortcuts, access menus, play games and perform a variety of other tasks.

Parallel computing is to distributed computing as multiple processors are to which of the following?

a - software

b- a tablet computer

c - multiple computers

d - single processor

Answers

Parallel computing is to distributed computing as multiple processors are to "single processor" (Option D).

What is the advantage of Parallel computing?

It is to be noted that Parallel computing on a single computer use many processors to execute work in parallel, whereas distributed parallel computing employs numerous computing devices to accomplish such tasks.

Parallel computing refers to the study, design, and execution of algorithms in order to solve a problem using many processors. The basic goal is to solve a problem quicker or larger issue in the same amount of time by sharing the work among many processors.

Parallel computing has the advantage of allowing computers to run code more effectively, saving time and money by sorting through "huge data" faster than ever before. Parallel programming can also handle more difficult issues by pooling resources.

One of the benefits of parallel processing is not autonomy. Parallel processing is a computer strategy in which discrete elements of a bigger difficult operation are divided and processed on many CPUs at the same time, saving processing time.

Learn more about parallel computing:
https://brainly.com/question/20769806
#SPJ1

3) Which of the following would not impact the digital divide?
Expansion of free wifi connectivity in major cities
Legislation allowing communications companies to charge per website for access
O Less sharing of the work we produce
A decline in the price of internet access

Answers

A factor which would not impact the digital divide is: less sharing of the work we produce.

What is the digital divide?

The digital divide simply refers to a terminology which is used to describe the gap (vacuum) which typically exist between the group of people (the information rich and the information poor) who have unrestricted access to digital technology and those who are unable to access it.

This ultimately implies that, a digital divide is mostly influenced by the fact that legislation allow communications firms to charge end users (customers) per website for access and some parents being fond of limiting the amount of time their children spend using computing devices or the Internet.

Read more on digital divide here: https://brainly.com/question/14896873

#SPJ1

case study on leading entrepreneur of goa

Answers

Answer:

goa is in india

Explanation:

programming languages are used for giving instructions to computers

Answers

Programming languages are used for giving instructions to computers is a true statement.

Do programming languages give computer instructions?

Using computer programming languages, we can communicate with a computer in a language that it can understand.

There are numerous computer programming languages available that programmers can use to interact with a computer, just as there are numerous human-based languages.

Therefore, a programming language is seen as a set of rules that tends to  gives the computer instructions on what actions to take. There are a lot of programming languages; some examples are BASIC, COBOL, and others.

Learn more about Programming languages from

https://brainly.com/question/16936315
#SPJ1

programming languages are used for giving instructions to computers. True/false

What would the code for this be?
The language used is Python.
Please help.

Answers

Python, one of the most popular programming languages in the world, has created everything from Netflix’s recommendation algorithm to the software that controls self-driving cars. Python is a general-purpose language, which means it’s designed to be used in a range of applications, including data science, software and web development, automation, and generally getting stuff done.

What is Python?

Python is a computer programming language often used to build websites and software, automate tasks, and conduct data analysis. Python is a general-purpose language, meaning it can be used to create a variety of different programs and isn’t specialized for any specific problems. This versatility, along with its beginner-friendliness, has made it one of the most-used programming languages today. A survey conducted by industry analyst firm RedMonk found that it was the second-most popular programming language

I hope this helped you!

Write code that assigns valuesSum with the sum of all user inputs, while user input is less than 0. please help it keep saying im entering code wrong

Answers

Answer:

"""Write code that assigns values Sum

with the sum of all user inputs,

while user input is less than 0"""

sum = 0 #accumulator variable

# asks for user input converts to float number

num = float(input("Enter the next number to total(negative number to quit): "))  

# loop as long as number is 0 or positive

while (num >= 0):

   # add this number to accumulator sum

   sum += num      

   

   # since we are inside the loop we have to ask for the next one here

   num = float(input("Enter a number to total(negative number to quit): "))

                                                                           

print("Sum of all the numbers entered is ", sum)    

Explanation:

3.8.3 means that it is Python

Python code to compute sum as a running total and print it out as long as user does not enter a negative number

Accumulator variable sum keeps a running total

I have also attached a text file containing the code



How do a write 19/19 as a whole number

Answers

As a whole number it is 1.0.

Answer:

1.0

Explanation:

You divide 19 by 19 and get 1

Marixa has recently discovered that she loves to sing. Even though she hasn’t had any formal vocal training, singing comes naturally to her, and she wows others with her performances. What would a career counselor call this new discovery?

A.
a soft skill

B.
an expertise

C.
an academic skill

D.
aAn aptitude

Answers

Answer:

an aptitude

Explanation:

she has been adapting to her singing voice

Other Questions
How many centimeters are there in 12 yards?O 10.9728 cmO 36 cmO 91.44 cmO 1097.28 cm Ratio Table, This is due tonight PLS help me with these 5 Questions 40p + brainlyest . the code of ethics protects: a. the buying and selling public. b. only realtors. c. the real estate licensing authorities. d. real estate association executives. Explain how the scientists are able to determine the liquid and solid layers. Use at least two pieces of evidence to support your answer. Parliament's attempt to recovercost of the French and Indian War Please help Ill mark you as brainliest if correct!! solve the following equation a+2_3 =3_4 Personal genetic testing services, such as 23andMe, can be used to develop an individual's genetic profile. Which biotechnology method is used in this process?Question 9 options:Genetic modificationRecombinant DNADNA synthesisDNA sequencing 7. Identify the number of molecules in.2NH3 What is the approximate of 0.000000005 please help me I need this for my algebra test and I dont understand it When a genome is modified formedical or industrial use, it isknown asA. genetic engineeringB. meiosisC. electrophoresisD. genome exchange nosotros ____de Estados Unidos. does yo or somos go in blank Using the DMS method to describe an angle, one degree of angle measurement can be divided into how many minutes?A.100'B.360'C.60'D.90' A chef needs 3/4 of a cup of flour for her recipe, but her 1/4 cup measure is missing. Which method could she use to measure an equivalent amount? The chart indicates the elements contained in four different molecules and the number of atoms of each element in those molecules. Which molecule can be classified as organic?Captionless ImageABCD Find 7.2x10^-8. _______ 3x10^-2 Please I need to know asap An investment portfolio is shown below.Investment Amount Invested RORSavings Account $3,2002.1%Municipal Bond $4,9004.5%Preferred Stock$94010.5%Common Stock A $1,675-3.5%Using technology, calculate the weighted dollar amount of the savings account.O-$58.63$58.63O-$67.20O $67.20