Which statement about programming languages is true?

1) Lisp was designed for artificial intelligence research.
2) BASIC was the first high-level programming language.
3) FORTRAN was an early programming language designed for business use.
4) Pascal was the first programming language for personal computers.

Answers

Answer 1

Answer:

2

Explanation:

plz make me brainliest

Answer 2

Option A: Lisp was designed for artificial intelligence research.

The acronym Lisp stands for List Programming is a computer programming language developed about 1960 by John McCarthy.Lisp is the second-oldest high-level programming language which has a widespread use today.LISP has a very simple syntax in which a parenthesized list is used to give operations and their operands.This Language was designed for manipulating data strings with convenience.Lisp includes all the working as the function of any object.Lisp uses symbolic functions which are easy to use with AI applications.Originally Lisp was created as a practical mathematical notation used in computer programs.Lisp pioneered many revolutions in the field of computer science such as tree data structures, automatic storage management etc.


Related Questions

What is the output of the following code? Assume the Rectangle class exists and all the methods called below exist and work as expected.

ArrayList blah = new ArrayList ();
blah.add( new Rectangle(3,5) );
blah.add( new Rectangle(2,15) );
blah.add( new Rectangle(5,5) );
double x=0;

System.out.println(blah.size());
for(Rectangle s: blah) x+=s.area();
System.out.println(x);

Answers

Answer:

3

70.0

Explanation:

There will be 3 elements (Rectangle instances) in the list.

The sum of the areas x will contain 3*5 + 2*15 + 5*5 = 70 and will be printed as a double.

Complete the flowchart to calculate the area of a rectangle

Answers

Python Code:
Length=int(input(“Enter length of rectangle: “))
Width=int(input(“Enter width of rectangle: “))
Area=Length*Width
print(Area)
Flow Chart:
(Given in the image below)

What is the output of print str if str = 'Hello World!'? A - Hello World! ... Q 18 - What is the output of print list[1:3] if list = [ 'abcd', 786 , 2.23, 'john', 70.2 ]?.
and Dim Message, Speak
Message=InputBox("Enter text" , "Speak")
Set Speak=Create0bject("sapi.spvoice")
Speak.Speak Message
Dim Message, Speak
Message=InputBox("Enter text" , "speak")
Set Speak=Create0bject("sapi.spvoice")
Speak.Speak Message
I hope someone can answer this 40 points to whoever does

Answers

Is this some jiberish or is this a different language because I can’t understand nothing you just typed

A kite forms a 25° angle with the ground. The wind picks it up so that it then forms a 74° angle with the ground.


By how many degrees did the wind increase the kite's angle with the ground?

Answers

So you have to do:
74-25=
49

Kite will make The angle is74-25= 49.

What is Angle?

When two straight lines or rays intersect at a single endpoint, an angle is created. The vertex of an angle is the location where two points come together. The Latin word "angulus," which means "corner," is where the term "angle" originates.

Angle measurement is used by engineers to build structures such as buildings, bridges, homes, monuments, etc. Its notion is used by athletes in sports to improve their performance. It is used by carpenters to create furniture such as doors, couches, tables, and chairs.

Artists use their understanding of measurements to draft or produce works of art. Angles are used in wall clocks to display the time with hour and minute hands.

Therefore, Kite will make The angle is74-25= 49.

To learn more about angles, refer to the link:

https://brainly.com/question/28451077

#SPJ5

Does digital media play a big role in your life?

Answers

Answer:

Yes

Explanation:

I use social media every day and it impacts how I dress, what I eat, where I go, and more. Overall social media makes a big impact on my life

which type of scatter plot should the team use

A team wants to display two or three quantities related to the material properties. They also want to plot each quantity along an axis. They should use a/n _______ type of scatter plot for such material selection. ​

Answers

Answer:

Pretty sure it's matrix scatter plot

Explanation:

I got 4/5 on plato

What is a decision tree

Answers

A decision tree is a diagram or chart that people use to determine a course of action or show a statistical probability.

How does password encryption primarily protect a presentation?
O It prevents other users from saving the presentation.
O It restricts other users from opening the presentation.
O It restricts other users from emailing the presentation.
O It prevents other users from copyrighting the presentation.

The answer is B.) It restricts other users from opening the presentation.

Answers

if you have the answer why...

Answer: B: It restricts other users from opening the presentation.

Explanation: I just got it right

How would our lives be different without computers at social?

Answers

Answer:

We'll spend more time with our family like vacations, gatherings and any type of family activities. Always having fun like telling stories and maybe spending more time outside with nature. Hanging out with friends and family.

Answer:

Life without computers would be so pathetic. It would be so difficult to spend a life without computers. We would not be aware of technology or what things are being discovered.

Explanation:

Thank You Have A Good Day or Night <3

Technology has had
on the natural world in the last 200 years.
ОА. .
a minor impact
ОВ.
a decreasing impact
OC.
an increasing impact

Answers

Answer:

c increase in impact

Explanation:

technology is the thing u using now to ask this question

Pari needs to correct the information on a slide in her presentation and redo that recording. What is the best
approach to solve this problem?
O She should delete the recording of the entire presentation and start over.
She should delete the entire presentation and create a new PowerPoint file.
O She should delete the recording on that slide, revise the slide, and rerecord.
O She should delete all the slides in that section, create new ones, and rerecord.

Answers

she should delete the recording on that slide revise the slide and rerecord

Answer:

C

Explanation:

A student wants an algorithm to find the hardest spelling word in a list of vocabulary. They define hardest by the longest word.

Implement the findLongest method to return the longest String stored in the parameter array of Strings named words (you may assume that words is not empty). If several Strings have the same length it should print the first String in list with the longest length.

For example, if the following array were declared:

String[] spellingList = {"high", "every", "nearing", "checking", "food ", "stand", "value", "best", "energy", "add", "grand", "notation", "abducted", "food ", "stand"};
The method call findLongest(spellingList) would return the String "checking".

Use the runner class to test this method: do not add a main method to your code in the U6_L3_Activity_One.java file or it will not be scored correctly.

Hint - this algorithm is very similar to the algorithms you have seen to find maximum/minimum values in unit 4. You need a variable which will keep track of the longest word in the array (either directly or as the array index of that word). Start this variable off with a sensible value, update it whenever a longer word is found, then return the longest word at the end.

Answers

Answer:

Initialize the “longest word” by an empty string and update it when a longer word is found

Explanation:

import java.util.stream.Stream;

public static String findLongest(String[] spellingList) {

   return Stream.of(spellingList).reduce("", (longestWord, word) -> (

       longestWord.length() < word.length() ? word : longestWord

   ));

}

How can you make sure to save all annotations from a slide show?
When you exit the slide show, select Keep the Annotations.
O Before beginning the slide show, select Save All Annotations.
During the slide show, right-click and select Save Annotations.
O All annotations are automatically saved as a copy of the presentation.

Answers

Answer:

when you exit the slide show, select keep annotations

Explanation:

To save all annotations from a slide show, make sure that When you exit the slide show, select Keep the Annotations.

What is annotation?

This is known to be a kind of a note that is said to be added through comment or explanation.

It is often used by writers. Note that the right thing to do is to To save all annotations from a slide show, make sure that When you exit the slide show, select Keep the Annotations.

Learn more about Annotations from

https://brainly.com/question/16177292

Buying the newest phone as soon as it is released when your current phone works perfectly is not a good idea for all but which of the following reasons?

Answers

Answer:

You are gonna waste money and it might not be the best idea

Explanation:

Answer:

waste money

Explanation:

Which is an effect of short-term environmental changes?
adaptation
speciation
extinction
death

Answers

Answer:

the answer is death

Explanation:

i just took the test on edge 2021! hope this helps :)

An effect of short-term environmental changes to the organisms that are living in an ecosystem is: D. death.

What is an ecosystem?

An ecosystem is simply a biological community that typically consist of both living organisms (biotic factors) and the physical environment (abiotic factors) in which they all exist, breed and interact with one another.

Generally, death is an effect of short-term environmental changes that occur to the organisms that are living in an ecosystem.

Read more on an ecosystem here: brainly.com/question/15971107

what is a similarity and difference of email and bulletin board?​

Answers

you can use both to write and the different is one is mobile ..

differences between placeholders and textbook in PowerPoint ​

Answers

Answer:

fifthly, if it is an empty box. it disappear completely. sixth the size of a text box changes depending on the length of a text that we type . this is in contrast with a place holder box where changes are made of the font of the text

Explanation:

mark me a brainlist

I need so much help, can anyone please help me?

Answers

Answer:

I'm not sure about it, but it's something similar.

Explanation:

array name[3]

array marks[3,5]

Total←0

Average Mark←0

For Count ←1 To 3

WRITE "Input name"

INPUT array name[3]

NEXT

FOR Count ← 1 TO 5

WRITE "Enter Mark"

INPUT ←array mark[3,5]

Total ← Total+Mark

NEXT

avg ←Total/5

WRITE “Total of 5 Marks is:”, Total

WRITE “Average of 5 Marks is:”, avg

What would be a suitable device to transfer 12 photos from one PC to another?

Answers

Answer:

A memory stick.

Explanation:

A memory stick can be defined as a storage media device with flash memory. They are mainly used in smart or portable electronic devices such as mobile phones, digital cameras, mp3 players, camcorders, etc.

Memory sticks are usually small in size and as such are easily accessible for the transfer of digital files such as images, videos, audios from a portable device or computer to another device such as a computer.

Hence, a memory stick would be a suitable device to transfer 12 photos from one PC to another.

After a security event that involves a breach of physical security, what is the term used for the new measures, incident review, and repairs meant to stop a future incident from occurring

Answers

Answer: Recovery

Explanation:

The term that is used for the new measures, incident review, and repairs meant to stop a future incident from occurring after a security breach has occured is known as recovery.

It should be noted that recovery helps in the protection of data after a data breach has occured. The incident that led to the day breach is reviewed and necessary security measures are put in place in order to prevent such from happening again.

What is string literal in Java?

variable type that allows more than one character
group of printable characters enclosed within double quotation marks
group of printable characters enclosed within curly brackets
variable type that only allows for one character

Answers

Answer:

A string literal in Java is basically a sequence of characters from the source character set used by Java programmers to populate string objects or to display text to a user. These characters could be anything like letters, numbers or symbols which are enclosed within two quotation marks.

Explanation:

In this assignment, you will use all of the graphics commands you have learned to create an animated scene. Your program should have a clear theme and tell a story. You may pick any school-appropriate theme that you like.

The program must include a minimum of:

5 circles
5 polygons
5 line commands
2 for loops
1 global variable
You may wish to use the standard code for simplegui graphics below:
In Python please.

Answers

I have attached pictures.

Hope this helps!

What happens when a user clicks Accept on a meeting request?

Other events at that time are canceled, and the meeting cannot be canceled by the organizer.
The agenda is updated with the user’s contact information, and other events at that time are canceled.
The meeting cannot be canceled by the organizer, and the agenda is updated with the user’s contact information.
The meeting organizer is notified, and a copy of the meeting is added to the user’s Outlook calendar.

Answers

Explanation:

Other events at that time are canceled, and the meeting cannot be canceled by the organizer.

The agenda is updated with the user’s contact information, and other events at that time are canceled.

The meeting cannot be canceled by the organizer, and the agenda is updated with the user’s contact information.

The meeting organizer is notified, and a copy of the meeting is added to the user’s Outlook calendar.

Answer:

the last one

Explanation:

just did it

Realizar una lista de las herramientas manuales que se utilizan en carpintería y otra en herrería, dibuja cada una de ellas y explicar su funcionamiento

Answers

Answer:

En carpintería se utilizan martillo, cinta métrica, escuadras, niveles de burbuja, navaja, herramientas de marcado, destornilladores y sierra circular.

Explicación:

Las herramientas manuales utilizadas en carpintería son martillos, cinta métrica, escuadras, niveles de burbuja, navaja, herramientas de marcado, destornilladores y sierras circulares, etc. Con martillos se pueden unir dos piezas de madera. La cinta métrica se utiliza para medir. Las herramientas manuales que se utilizan para la herrería son martillos de mano, mazos, cinceles, punzones, punzones y una selección de tenazas con brocas, etc. Estas herramientas se utilizan para cambiar la forma después de estar blandas debido al calentamiento.

What is the next line?
>>> tupleB = (5.7.5.7.2.7)
>>> tupleB count(7)
2
1
0
3

Answers

Answer:

2

Explanation:

because

3.3 Code Practice: Question 2 edhesive


Need help

Answers

Question 2 Edhesive: Write a program to check for valid RGB values

Answer:

In Python:

r = int(input("Red: "))

g = int(input("Green: "))

b = int(input("Blue: "))

if not(r>=0 and r <= 255):

   print("Invalid Red Code")

if not(g>=0 and g <= 255):

   print("Invalid Green Code")

if not(b>=0 and b <= 255):

   print("Invalid Blue Code")

Explanation:

The next three lines prompt the user for red, green and blue color codes

r = int(input("Red: "))

g = int(input("Green: "))

b = int(input("Blue: "))

This checks if the red color code is between 0 and 255 (inclusive). If no, an invalid message is printed

if not(r>=0 and r <= 255):

   print("Invalid Red Code")

This checks if the green color code is between 0 and 255 (inclusive). If no, an invalid message is printed

if not(g>=0 and g <= 255):

   print("Invalid Green Code")

This checks if the blue color code is between 0 and 255 (inclusive). If no, an invalid message is printed

if not(b>=0 and b <= 255):

   print("Invalid Blue Code")

Which keyword should Mark use for variable declaration in JavaScript?

Answers

VAR is the keyword he should use

hello i am here to say you are perfect just the way you are i don't fit in at all everyone is always rude to me sometimes i cant stay happy my dog that died was the best dog sometimes i just cant ignore all the mean things people say to me but i always try to be happy that's all i have to say and black lives matter

Answers

hello the answer is thank you

Which of the following could be an example of a type of graphic organizer about jungle animals

A. A collection of photos with links to audio files of noises made by jungle animals

B. A paragraph describing different jungle animals

C. A picture of one jungle animal with no caption

D. A first person narrative about a safari

Answers

B) A paragraph describing different jungle animals

Answer:it’s a collection of photos with links blah blah blah

Explanation:just took it other guy is wrong

to add background colour to the webpage – attribute is used in body tag​

Answers

[tex]\mathfrak{\huge{\orange{\underline{\underline{AnSwEr:-}}}}}[/tex]

Actually Welcome to the Concept of the HTML.

The tag that can give background color to the Web pages is :-

1.) <Body> bgcolor = "Orange"

</Body>

Other Questions
Please help with explanation 2 What title did Kim Jong-un receive when he became leader? If active transport establishes a concentration gradient with the use of ATP, then the concentration gradient can be looked at as Njal had been working as a chainsaw operator for the past 15 years when his company decided to upgrade its equipment from chainsaws to timber harvesters, which are large pieces of equipment that require a new set of skills. The company was unwilling to train existing workers on the new equipment, so Njal needed to find :_________ name and describe the process occurring in the nucleus which results in the formation of an mRNA molecule Record adjusting journal entries for each of the following for year ended December 31. Assume no other adjusting entries are made during the year.Accounts Receivable. At year-end, the L. Cole Company has completed services of $20,500 for a client, but the client has not yet been billed for those services. Interest Receivable. At year-end, the company has earned, but not yet recorded, $450 of interest earned from its investments in government bonds. Accounts Receivable. A painting company bills customers when jobs are complete. The work for one job is now complete. The customer has not yet been billed for the $1,420 of work. What did Czechoslovakia hope would happen if they went to war with Germany? The following Information applies to the questions displayed below.) Bargain Rental Car offers rental cars in an off-airport location near a major tourist destination in California. Management would like to better understand the variable and fixed portions of It car washing costs. The company operates its own car wash facility in which each rental car that is returned is thoroughly cleaned before being released for rental to another customer. Management belleves that the variable portion of its car washing costs relates to the number of rental returns. Accordingly, the following data have been compiled: Month Rental Returns Car Wash CostsJanuary 2,380 $ 10,825February 2,421 $ 11,865March 2,586 $ 11,332 April 2725 $ 12422May 2968 $ 13850 June 3281 $ 14419July 3,353 $ 14,935August 3,489 $ 15,738September 3,057 $ 13,563October 2,876 $ 11,889November 2,735 $ 12,683December 2,983 $ 13,796 Using least-squares regression, estimate the variable cost per rental return and the monthly fixed cost Incurred to wash cars. (Round Fixed cost to the nearest whole dollar amount and the Varlable cost per unit to 2 decimal places.) find the unknown side length x right here answer in simplest radical formA.241B.429C.48D.58 2. Am 80.0 kg astronaut is training for accelerations that he will experience upon re-entry to earths gravity from space. He is placed in a centrifuge (r = 25.0 m) and spun at a constant angular velocity of 10.0 rpm (revolutions per minute). a. Find the linear velocity of the centrifuge in m/s. Show your workb. Find the magnitude and direction of the centripetal acceleration when he is spinning at this constant velocity. c. How many gs is the astronaut experiencing? (at constant velocity)d. Find the linear deceleration and torque required to bring the centrifuge (5000.0 kg) to a stop over a 5 minute time period. Which of the following are based on the Earth's relationship to the sun? A.Hemispheres B. Latitude C. Longitude D.Region PLZ HELP It's homework: Compound Probability (Without Replacement) 1.) A box of chocolates contains six milk chocolates and six dark chocolates. You randomly pick a chocolate and eat it. Then you randomly pick another piece. Both pieces are milk chocolate.A.8/65,B.1/16, C.1/4, D.5/22 If your reflective essay is unclear about the timeline for what happened to you what should you do to fix the problem? Someone please help me Ill give out brainliest please dont answer if you dont know Basic geometry RE-Episode 9 PLS HELP ASAP Which equation models this situation?28 more than a number is 33.A. X+ 33 = 28B. X- 28 = 33C. X = 28 + 33D. X + 28 = 33 pls I NEED HELP PLS HELP MEEE ILL MARK BRANLIESTExplain a time when you see Pythagorean Theorem in real life. Explain the process you would use to analyze a situation and solve a problem involving the Pythagorean theorem. Be sure to write in complete sentences! The ordered pair (10, 63) is a solution to the inequality y < -0.2x^2 + 9x - 7. Please select the best answer from the choices provided.True or false. Solve due soon. I will give brainliest Four expressions are shown below:A 21x + 6B 3(7x + 2)C 18x + 9D 3(6x + 3)Which two expressions are equivalent to 3(6x + 2 + x)? ( by the way i will give brainlist to who ever says the awnser plus say #BRAINLISTPLZ )