What is the name of Thompsons computer language?

Answers

Answer 1

Answer:

below

Explanation:

Bon programming language

Answer 2

Answer:

Explanation:

Bon programming language

While writing Multics, Thompson created the Bon programming language


Related Questions

Please its argent and I will give you BRAINLIEST ANSWER 6. How would you confirm that a colourless liquid given to you is pure water?

Answers

Answer:

Evaporate the colourless liquid on a low flame. If no residue is left and boiling exactly at 100 ºC then it is pure water otherwise not.

Explanation:

What will the following program display in the console?

var sum = 0
for(var i = 0; i < 5; i++){
sum = sum + i
}
console.log(sum);

A. 15
B. 10
C. 5
D. 0

Answers

Answer:

b- 10

Explanation:

The display of the given program will be 10. The correct option is B.

What is console?

The text entry as well as display device for systems management messages, particularly those from the BIOS or boot loader, the kernel, the init system, and the system logger, is one definition of system console, computer console, root console, operator's console, or simply console.

The console on modern small computers is usually the computer's attached monitor and keyboard.

The console on many older computers is an RS-232 connection to a terminal, such as a DEC VT100. This terminal is kept in a secure room and is constantly monitored by the minicomputer's operators.

The given program's display will be ten, as the for loop will continue till the number is less than 5.

Thus, the correct option is B.

For more details regarding console, visit:

https://brainly.com/question/28702732

#SPJ6

Which of the following represents a bit?

0

01010110

3F02C

12.356

Answers

Answer:

0

Explanation:

A bit is a single piece of information and the smallest unit that can possibly represented by a computer, like 1 or 0.

The one that represents a bit is 0. The correct option is A.

What is a binary digit?

A binary digit (bit) is the smallest unit of binary data that can be stored in a computer system.

A bit can only be in one of two states: on or off, which are frequently represented by ones and zeros. Which information is entered into and processed by the computer is determined by the combination of ones and zeros.

One of the four types of number systems is a binary number system. Binary numbers are basically represented in computer applications by merely two symbols or digits, namely 0 (zero) and 1 (one).

A bit is a binary digit, which is the smallest data increment on a computer. A bit can only hold one of two values: 0 or 1, which correspond to the electrical values off or on.

Thus, the correct option is A.

For more details regarding binary number, visit:

https://brainly.com/question/28222245

#SPJ2

Consider the following code segment

Answers

Answer:

D:

2

54

Explanation:

In line 3 Math.random() will return a number between 0 and 1, so the minimum is 3 (0*5+3=3), therefore it is impossible for line 4 to return the value 2

When designing a website, Claire creates a color palette for the web pages. How can the color palette help Claire design effective web pages?

Applying the color palette to the web pages can help Claire create ________ She can best use the color palette to ____________.

First blank:
A. Smooth and even surfaces
B. Depth in the design
C. Consistency and unity

Second blank:
A. illustrate content on the screen
B. add interactive elements
C. highlight important content ​

Answers

consistency and unity
highlight important content

Write a program code which asks for 80 numbers between 100 and 1000 to be entered.
It checks that the numbers are in the correct range, and stores them in an array. It
counts how many of the numbers are larger than 500 and then outputs the result when
the program is finished.

Answers

Answer:

my hearth start with a piece of demon cant let me go!

what is out put following code?​

Answers

Answer:

please provide full picture of the code and then i will be able to help u

Explanation:

Answer:

Do you have the entire question?

Explanation:


What is the difference between iterative and sequential?

Answers

Answer:

iterative means to iterate, or "repeat" ex: 4,4,4,4,4

sequential means to increase with a constant ex:

1,3,5,7,9,11,13. the constant that the terms are incremented by is 2

Assume there is an interactive math tutor. Many students take the math lessons online. At the end of each lesson, students have to attempt a test. What is the performance measure of this agent?

A.
count the number of students
B.
display suggestions for solving problems
C.
take input from the keyboard
D.
enable the student to attain maximum marks

Answers

Answer:

I think it is D

Explanation:

This is the goal, or the requirement for success.

Answer:

D. Enable the student to attain maximum marks

Explanation:

Correct on Clever

can enyone tell me a book to read thats eazy and for 4th grade hurry and help me PLEASE

Answers

Answer:

Try any Geronimo Stilton books. They are the ones with the brownish orange mouse with glasses.

James and the Giant Peach

Explanation:

easy to read for forth graders.

Select the correct answer.
Which graphical element of a spreadsheet does this image represent?

A. column chart
B. scatter plot graph
C. pie chart
D.bar graph

Answers

Answer:

Pie Chart

Explanation:

It’s a pie chart :)

Explanation: pie charts of course look like pie: a circle that has been cut into pieces

write the html code to get the following webpage
the solar system
ina solar system the planets move around a star. earth is a planet around sun .there are eight planets in a solar system . in order of increasing distance from the sun these are 1.mercury 2.venus 3.earth 4.mars 5.jupiter 6.saturn 7.uranus 8.neptune
save the html document as solarsystem.html

Answers

Answer:

<!DOCTYPE html>

<html>

<head> <title>webpage</title>

</head>

<body>

<h1>The Solar System</h1>

<p>In a solar system the planets move around a star. Earth is a planet around sun. There are eight planets in a solar system . In order of increasing distance from the sun these are: </p>

<ol>

<li>Mercury</li>

<li>Venus</li>

<li>Earth</li>

<li>Mars</li>

<li>Jupiter</li>

<li>Saturn</li>

<li>Uranus</li>

<li>Neptune</li>

</ol>

</body>

</html>

<!-- and save the file as solarsystem.html -->

a worksheet can have a maximum of number of rows​

Answers

1,048,567 rows


I don’t really understand the question

Although you're limited to 255 sheets in a new workbook, Excel doesn't limit how many worksheets you can add after you've created a workbook. The only factor that ultimately limits the number of worksheets your workbook can hold is your computer's memory.

A Range is a group of selected Cells in an Excel worksheet. A Range can be rectangular or square in shape. You can select a Range by left-click, drag and release the mouse over the cells you want to select. ... Similarly, a Range in Excel worksheet is identified by a Range Address.
I believe it’s 1,048,567

Write a program code which asks for 80 numbers between 100 and 1000 to be entered.
It checks that the numbers are in the correct range, and stores them in an array. It
counts how many of the numbers are larger than 500 and then outputs the result when
the program is finished.

Answers

Answer:

If you are using Python,

```count = 0

for i in range(0, 79):

a = int(input("Input a number: "))

if 100 <= a <= 1000:

 if a > 500:

  count += 1

else:

 print("Please input a number between 100 and 1000!")

 i -= 1

print(count)```

Explanation:

count refers to the number of 500s and above,

the for loop is required for the program to loop 80 times,

a is the input collected,

the nested if is to check whether the number is above 500 and the if is used to check if the number is between 100 and 1000 if not, it will output that you need to input a number between 100 and 1000,

the i-=1 is required to make sure that part wasn't counted.

and the last print is to output the number of numbers above 500

Could somebody please find the bugs and amend them? This question is worth 25 Brainly points!
---------------------------------------------------------------------------

#Tax Calculator with 4 bugs

salary = int(input("Please enter your annual salary: £"))

if salary < 30000
#Salaries under 30000 are taxed at 20%
tax = salary * 0.2
elif salary >= 30000:
#Salaries over 30000 are taxed at 40% for anything over 30000
salary = salary - 30000
tax = salary * 0.4 + 6000
else:
#Salaries over 150000 are taxed at 45% for anything over 150000
salary = salary - 150000
tax = salary * 0.45 + 6400 + 48000


print("Earnings of £",salary,"will attract taxes of £",round(tax,2))
input("Press ENTER to quit")

Answers

line 4

if salary < 30000

error missing ":"

solution

if salary < 30000:

line 6

tax = salary * 0.2

error is missing identifier for tax

solution add identifier for tax on line 3

tax = 0.0

line 11

error syntax

solution is move tax = salary * 0.4 + 6000 to the right

tax = salary * 0.4 + 6000

EXPLAIN WHATS agri crop EXPLORATORY COURSE​

Answers

What is what ?? Can u say it correctly


How is an informal outline organized?

Answers

Answer:

An informal outline usually organizes information with bullet points. ... And even lower case letters (the lowercase letter O) are conventionally used in ASCII (text only) or other environments where list point characters are not available. When writing by hand, bullet points can be drawn in any style

If you like undertale and their AU's pls be my friend

Answers

Answer:

Alright

Explanation:

Answer:

okie

Explanation:

I made an Au called sc-tale.

imma follow u now

plz give me brainliest T-T i have none

Who wrote Hamlet?

Brainliest for the right answer​

Answers

Answer:

William Shakespeare wrote hamlet

Explanation:

it’s wroten by a William Shekespeare

NARIO 1

Amy scheduled herself from 8:00 AM–1:00 PM Sunday through Wednesday. On Wednesday, she

needed to release her intervals from 11:00 AM 1:00 PM at the last minute. She serviced all of the

other time for which she posted. What was her overall Commitment Adherence percentage?

Answers

Answer:

85%

Explanation:

8:00 a.m - 1:00 pm = 5 hours

Sunday - Wednesday = 4 days

Total scheduled hours = 5 * 4 = 20 hours

Hours in adherence :

Sunday to Tuesday (3 * 5 hours) = 15 hours

Wednesday : (11:00 a.m - 1:00 a.m) = 2 hours

Total hours adhered = (15 + 2) = 17 hours

Commitment adherence percentage :

(Total hours adhered / total scheduled hours) * 100%

(17 / 20) * 100%

0.85 * 100

= 85%

HTML code to display square bullets in an unordered list.​

Answers

Answer:

Find the source code below.

Explanation:

HTML is an acronym for hypertext markup language and it is a standard programming language which is used for designing, developing and creating web pages.

Generally, all HTML documents are divided into two (2) main parts; body and head. The head contains information such as version of HTML, title of a page, metadata, link to custom favicons and CSS etc. The body of the HTML document contains the contents or informations of a web page to be displayed.

The complete code for the unordered list with square bullets is written below;

<! DOCTYPE html>

<html>

<head>

<title> Square bullets in an unordered list. </title>

</head>

<body>

<h1> My Favorite Subjects </h1>

<p> This is a list of my favorite subjects; </p>

<ul style =" list- style- type:square">

<li> Computer </li>

<li> Mathematics</li>

<li> Physics </li>

<li> History </li>

</ul>

</body>

</html>

Note: The code isn't indented because i'm not using an appropriate code editor.

Since we are creating a document with an unordered list, we would use the <ul> and </ul> parent tag while the child tag <li> and </li> sorts the list. Also, we would use the style attribute to specify the required inline style (square bullets) for the list.

(03.05 LC
A reliable textbook should contain references to (6 points)
O only primary sources
mainly secondary sources
O both primary and secondary sources
no more than two of each type of source
Helpppp plzzzzz

Answers

Answer:

B. both primary and secondary sources.

Explanation:

Information can be defined as processed data that can be used to perform specific tasks or job functions. The two (2) main sources of information are;

I. Primary source: this type of source comprises of raw information that are first-hand in nature i.e a personal experience or witness of an event (occurrence).

II. Secondary source: this type of source relies solely on the primary source for its information and as such it comprises of second-hand information provided by other authors or researchers.

A reliable source is an information source that is unbiased, trustworthy and reliable. Also, a reliable source is typically backed up by evidence from various information channels and should be accurate.

In order to validate a reliable source, it is necessary that the information provided is checked against other credible sources to verify its accuracy.

This simply means that, if you got an information (data) from any source such as newspaper, website, television, books, radio or anywhere else, you should confirm the credibility and reliability of these information by verifying from one or more sources listed in the reference.

Hence, a reliable textbook should contain references to both primary and secondary sources.

Additionally, references are citations or links to all of the sources from which an author, writer, or researcher got his or her information from. One important thing that references show a reader is that the information is well researched.

How should you best communicate
this information to Keisha?
(Select all that apply.)

Answers

Answer:

if you use keyword in your search you will have a better chance of what you are finding.

Explanation:

hey Guys I wanted to have fun so I made a riddle first to solve gets the crown \

When John was six years old he hammered a nail into his favorite tree to mark his height. Ten years later at age sixteen, John returned to see how much higher the nail was. If the tree grew by five centimeters each year, how much higher would the nail be?

Answers

Answer:

how.much higher??? 5cm.

Explanation:

or unless it was a different approach-

then it would have gone 50 cm which is 19.6 inches

Consider the following code segment - 3

Answers

Answer:

The answer is "Choice C".

Explanation:

In the above-given code, a 1D array "list" is declared that holds integer values, and it uses three print which can be defined as follows:

In a first print method, it uses the length method that holds the array length that is "9".In a second print method, it uses the array that prints the first element value of the array that is "22".In the last print method, it uses the array that holds the length of the array, which will give an error message that is "ArrayIndexOutOfBoundsException".   That's why only the choice C is  correct.

Other Questions
a certain antihistamine is often prescribed for allergies. a typical dose for a 100-pound person is 21 mg every 6 hours. a. how many 12.7 mg chewable tablets would be taken in a week?b. this antihistamine also comes in a liquid form with a concentration of 12.7 mg / 6 ml following the prescribed dosage how much liquid antihistamine should a 100-pound person take in a week? 6 times a number is 27 less then the square of that number find the positive soloution The expression 6x - 3 represents the total number of stuffed animals Deena has in her collection. She decides to put thestuffed animals in 3 equal piles. Which expression can be used to represent the number of stuffed animals Deena puts ineach pile? QUICK QUESTION ASAP!During World War II, how did censorship prevent the world from knowing the total effects of the atomic bomb in Japan?A) News reporters were directed to exaggerates the damage that was done Japanese cities during the atomic attack.B) US military officials will not allow news of the bombing to reach the American public, for fear of interference by Congress.C) News reporters were discouraged from fully describing or showing the destruction that occurred in Hiroshima and Nagasaki.D) The Japanese media worked hard to keep the rest of the world from knowing the total devastation Japan has suffered. What is the scale factor and how do you find it? A warehouse has 1,750 boxes of water bottles. A truck unloaded another 530 boxes at the warehouse. Each box holds 48 bottles of water. How many bottles of water are in the warehouse? ANSWER THIS PLZZZZZZ What is the kkk please explain A) G17 + 4xH4x+12/1159DA) 12C) 13B) 3D) 14 Find the exact value of cos 105degrees ABC Corp. was formed on 1/1/05 and is in the business of buying and selling erasers. The cost of purchasing erasers and the number of erasers held in inventory has steadily increased since the company was formed. Which of the following inventory methods will result in the lowest reported gross profit in the year ended 12/31/13 income statement? a) Average cost b) FIFO c) LIFO d) Can't be determined with the information provided SOMEONE HELP MEEEEEE Solve each system using substitution. Check your answerx+3=y3x+4y=7 Mercury can be obtained by reacting mercury(II) sulfide with calcium oxide. How many grams of Mercury metal are produced when 2.11 g of calcium oxide reacts with excess mercury(II) sulfide?4HgS+4CaO=4Hf+3CaS+CaSO4a. 10.1 gb. 1.80 gc. 13.4 gd. 7.56 g Why did Evelyn Glennie perform bare foot What are endocrine hormones?A. Chemical signals from one cell to remote target cellsB. Chemicals for direct cell-to-cell communicationC. Chemicals that cross a gap between adjacent cells V. Combine the sentences using clauses. 1. My wife gave me a hundred rupees. I can't find it. 2. He bought a house. It is near the zoo. 3. I wanted to buy the car. It was costlier than my house . In which U.S. Supreme Court decision did Chief Justice John Marshall establish the power of the Court to invalidate a "law repugnant to (in conflict with) the Constitution?A.Bush v.GoreB.Miranda v.ArizonaC.Marbury v.MadisonD.Brown v.Board of education What is the least common multiple of 4 and 10? Mila buys 1112 pound of almonds and 56 pound of pecans.Which answer is the most accurate estimate for how many more pounds of almonds she buys than pounds of pecans?0 pounds12 pound1 pound