Which one of these is not an area of AI? Computer vision/image, recognition Voice recognition, Robotics, Web design

Answers

Answer 1

Answer:

Computer vision/image

Answer 2
computer vision/images

Related Questions

Operating system manages hardware and software of a computer.

Answers

Answer:

OK

Explanation:

Please give me brainliest and thank me

Answer:

well for me I think it's

Explanation:

true because that's one of it's properties

Can somebody help me and make a code for this in PYTHON, please? I would be very thankful!
It is estimated that China on July 1, 2019. had 1,420,062,022 inhabitants, and India 1,368,737,513. The population in China increases by 0.35% every year, and in India by 1.08%. After how many years will India surpass China in terms of population, assuming that the annual population growth in neither of these two countries will change?
I think it should be used command FOR...

Answers

Code:

population_china = 1420062022

population_india = 1368737513

years = 0

while population_china >= population_india:

   population_china *= 1.0035

   population_india *= 1.0108

   years += 1

print(years)

Output:

6

Explanation:

Using a while loop would probably be of greater use than a for loop since we are increasing the population growth of both countries until India's population surpasses China's population (so a condition needs to be set).

Looking at the code, we first set the original population of both countries in their own variables (population_china, population_india). We also set the 'years' variable at 0, which will increase with respect to the yearly population growths of both countries. In the while loop, the condition population_china >= population_india will allow for the variable 'years' to increase until population_india surpasses population_china. Once India's population is larger than China's population, we are left with the number of years it takes for India's population to surpass China's population, which is 6 years.

Hope this helps :)

Which of these statements would create a variable but not assign anything to it?
variable = empty
variable = null
create variable
variable = “”

Answers

Answer:

variable = null

Explanation:

that one would fasho

Answer:

variable = null

Explanation:

What's a checked exception?

A
One that the Java class library already checks for, so our programs don't have to worry about checked exceptions.

B
One that the program must check because the compiler can't check it.

C
One that the compiler can check to make sure the program handles it.

D
One that the operating system checks, evaluates, and corrects.

Answers

Answer:

The answer is option A "One that the Java class library already checks for, so our programs don't have to worry about checked exceptions"

Explanation:

A checked exception is a sort of special case that should be either gotten or proclaimed in the method in which it is declared.

In the Java class chain of importance, a special case is a checked exception in the event that it acquires from java.lang.Throwable, however not from java.lang.RuntimeException or java.lang.Error. All the application or business rationale exceptions should be checked special cases.

It is conceivable that a strategy proclaims that it can toss a special case, however it doesn't. In any case, the guest needs to manage it. The checked exception announcement has a domino impact. Any strategies that will utilize the past strategy will likewise need to deal with the checked exception, etc.

So the compiler for the Java programming language checks, at gather time, that a program contains overseers for all application exceptions, by examining every method body. In the event that, by executing the method body, an exception can be tossed to the guest, that special case should be announced. How does the compiler know whether a method body can toss an exception? That is simple. Inside the method body, there are calls to different strategies; the compiler takes a gander at every one of their strategy signature, what exceptions they proclaimed to declare.

Answer:

The correct answer is C)

Explanation:

Within Java, a checked exception is one that is checked by the compiler.

When a code within a method generates a checked exception, one of two things must happen:

a) the method should take care of the exception or

b) it should indicate the exception using throws keyword.

Cheers

Segregation based on laws is called _____


legal segregation
segregation
de jure segregation
de facto segregation

Answers

Answer:

C aka De Jure Segregation

Explanation:

E2021

Segregation based on laws is called de jure segregation. Thus, the correct option for this question is C.

What is meant by segregation in-laws?

The meaning of segregation reveals a type of condition that takes one of these classes and isolate it from all the others. It is an act or process of segregating things from other things.

In law, it is an act through which a person separates other persons on the basis of race, color, language, religion, nationality, or national or ethnic origin without an objective and reasonable justification.

Segregation is the official practice and process of keeping two or more people apart, usually people of different sexes, races, or religions. Racial segregation in schools was ruled unconstitutional.

Therefore, segregation based on laws is called de jure segregation. Thus, the correct option for this question is C.

To learn more about segregation in law, refer to the link:

https://brainly.com/question/30186311

#SPJ6

what is impact printer​

Answers

Answer:

An impact printer is a type of printer that works by direct contact of an ink ribbon with paper

Explanation:

10
Select all the correct answers.
Which statements are true regarding system and application software?
System software consists of only the OS and application software.
A program is a set of instructions that helps the user understand the functioning of the computer.
Ооооо
An OS acts as an interface between the hardware and the user.
Application software allows users to perform various tasks.
Disk cleaner, resource monitor, etc. are all examples of application software.
Reset
Next
Next

Answers

Answer:

Keyboard

Explanation:

l think it is the key board

looking from behind a person at a subject is called what?

Answers

Answer:

Point of View Shot

Explanation:

In photography

As you calculate the design cost for a site, you conclude it will be $50 per hour. However, your final estimate to the client will be for $55 per hour to include which cost (without including the cost as a line item)?

Answers

Incomplete question. I answered from a general budget perspective.

Answer:

miscellaneous cost

Explanation:

Remember, we are told this is just an estimated cost of designing the site. Basically in designing a site, these costs are taken into account:

site hosting costsite design cost (such as UX, UI, etc)site development costsite maintenance cost (such as domain maintenance cost)

However, it seems the web developer may have discovered other miscellaneous costs attached to the site design.

If there is a need to write code in order to help the player move through the game which team member would create this code?

Answers

Answer:

Run code, and then check the code

Explanation:

differentiate between refraction of light and reflection of light

Answers

Refraction represents a change in the direction of propagation when beams of light encounter a medium with a different density.

Reflection is the return of light to the medium it came from when it encounters a mirror.

Reflection is the bouncing back of light when it strikes the smooth surface. Refraction is the bending of light when it travels from one medium to another .

full from of Internet​

Answers

Answer:

inter connected network

What would be some reasons to change the default page
encoding?

Answers

Answer:

Synchronization with the document for one reason or another

What is a negative impact of digital communication?
A.
Access to information
B.
Ability to communicate across continents
C.
Information can be difficult to verify
D.
New marketplaces for more competition

Answers

Answer:

A

Explanation:

Information such as your card number and all can get to another person which will end on a negative impact to the public community online.

what is definition of LAN network?​

Answers

A local area network is a computer network that interconnects computers within a limited area such as a residence, school, laboratory, university campus or office building

Write code which creates three regular polygons with 11, 14 and 19 sides respectively. All side lengths should be 1.0. The code should then print the three shapes, one on each line.

Answers

Answer: money

Explanation:

computer technology has changed our lives write of a least five ways to show how this is so​

Answers

Making it easier for different tasks
Made our lives faster
Made our lives better
Made our lives more fun
It’s easier for us to finish things faster in our everyday lives (I repeated one)

HELLLLLLLLLLLLLLLLLLLLP PLSSSSSSSSSSS HELLLLLLLLLP
Which of the following is an example of a Boolean Operator?
A. HTML
B. SEO
C.
D. BUT

Answers

Answer:

i think it is c. whatever that is.

Explanation:

because its not any of those. D. is exceptional tho

hope this helps!  :)

i. Name and describe two options in Orientation.

Answers

Answer:

Page orientation is the direction in which a document is displayed or printed. The two basic types of page orientation are portrait (vertical) and landscape (horizontal). Most monitors have a landscape display, while most documents are printed in portrait mode.

Explanation:

1. Landscape Orientation: In landscape orientation, the page or screen is wider than it is tall.

It is often used for documents, images, or presentations that have a horizontal layout, providing a broader view and accommodating content with wider dimensions.

Landscape orientation is commonly used for spreadsheets, graphics, and videos, as it allows for the display of more columns, charts, or visual elements side by side, enhancing readability and data presentation.

2. Portrait Orientation: In portrait orientation, the page or screen is taller than it is wide.

This orientation is frequently used for documents and images that have a vertical layout, making it suitable for reading, writing, and viewing content in a more natural and traditional format.

Portrait orientation is often employed for books, articles, and formal documents, as it fits the standard reading pattern, where the eyes move from top to bottom.

Know more about Landscape orientation:

https://brainly.com/question/34183270

#SPJ5

How many different messages can I convey if I use 2 light bulbs and each one stays either on or off?
4
3
6
2

Answers

3 I just did this ykkk

Answer:

4

Explanation:

1st: on on

2nd: on off

3rd: off on

4th: off off

You have a network that occupies the top floor of a three-story building. The WAN service provider has installed the line for the WAN service in a wiring closet on the main floor. What would you use to relocate the WAN line into a wiring closet on your floor

Answers

Answer:

Demarc Extension.

Explanation:

In this scenario, you have a network that occupies the top floor of a three-story building. The wide area network (WAN) service provider has installed the line for the WAN service in a wiring closet on the main floor.

Hence, you would use the Demarc Extension to relocate the WAN line into a wiring closet on your floor.

A Demarc Extension refers to a cabling channel or transmission path which typically originates from the interface of an internet service provider known as demarcation point to the termination point present at the premises of the end users, usually far from the minimum point of entry (MPOE).

What's not an computer characteristic ??

Answers

Answer:

A computer is an electrical machine

The computer cannot think at its own

The computer processes information error-free

The computer can hold data for any length of time

Explanation:

The computer is an electrical machine is not a computer characteristic option (A) a computer characteristic is correct.

What is a computer?

A computer is a digital electronic appliance that may be programmed to automatically perform a series of logical or mathematical operations. Programs are generic sequences of operations that can be carried out by modern computers. These apps give computers the capacity to carry out a broad range of tasks.

The question is incomplete.

The complete question is:

What's not a computer characteristic?

A computer is an electrical machineThe computer cannot think on its ownThe computer processes information error-freeThe computer can hold data for any length of time

As we know,

The characteristics of a computer are:

The computer is unable to think for itself.

Information is processed by the computer without error.

The computer has unlimited storage capacity for data.

Thus, the computer is an electrical machine is not a computer characteristic option (A) a computer characteristic is correct.

Learn more about computers here:

https://brainly.com/question/21080395

#SPJ2

15 points and brainliest if correct! :D

Complete the following sentence.
______ is an essential skill in order to decipher the massive amount of new information for any job dealing with data.

Answers

Technology I think (this is so I can answer this)
Technology I think it is

Read each example from the opening of a speech on the topic of video gaming. Identify the type of hook being used According to a recent study, the average American teenager spends nine hours a week playing video games. Too many students are spending too much time playing video games. Once, I played video games for so long that my fingers cramped up, and I couldn't write for a week! Excessive video gaming has "been linked by many studies to aggressive behavior,' according to a 2012 news героrt. 7​

Answers

Answer:

it goes c, b, b, a

Explanation:

SOMEONE PLEASE HELP ME PLEASE HELP ME OUT WITH THIS!!!!!!!

Answers

Answer: Brainstorm

Explanation:

hich type of denial of service (DoS) attack occurs when a name server receives malicious or misleading data that incorrectly maps host names and IP addresses

Answers

Answer:

DNS poisoning

Explanation:

This type of attack is known as DNS poisoning it is a very common attack that focuses on trying to redirect users of the site that has been attacked towards fake servers. These fake servers belong to the attackers and are used to collect the user's private data, which can then be used by the attackers for a wide range of malicious acts. Aside from stealing user information, this malicious data travels alongside regular user data allowing it to infect various servers easily.

what is a computer class from 8​

Answers

Explanation:

computer is an electronic machine which category write in computer data

What steps will change an existing macro? Use the drop-down menu to complete the steps.
1. Go to the
tab on the ribbon.
2. In the Macros group, click
3. Click
, which will open the VBA editor.
4. Find and change the code and Save and Close.

Answers

Answer:

1. View

2. View macros

3. Edit

Explanation: completed on edge

What symbol must be used at the end of an if statement?
:
.
#

Answers

Answer:

period thats the answer .

Explanation:

2nd one

the answer is d i think

Anyone know how to take a screen shot with keyboard or keyboard shortcut on Apple iPad?
Will mark the brainliest.
Thx.

Answers

Answer: Command-Shift-3

Explanation:

Command-Shift-3 for screenshot. u can also do Command-Shift-4 if u want to edit the screenshot right away

Other Questions
write a paragraph for tissue engineering Which statement best completes the diagram?President Washingtonrefuses to help Francefight England?President Washingtonpromotes neutrality inhis final speechThe United States staysout of foreignconflicts.O A. President Adams bribes France during the XYZ Affair.O B. President Washington reduces the size of the U.S. Navy.O C. President Adams negotiates with France to avoid war.O D. President Washington bans all immigration from Europe. 48/8 = 42/x Please select the best answer from the choices provided.A: x = 42B: x = 7C: x = 8D: x = 6 Check over my math please. Jacob went camping with his family. At 7:15 A.M., Jacob set out to go fishing. It took 1 hour and 45 minutes to hike to the lake. Jacob spent 3 hours and 45 minutes fishing, and it took 1 hour and 15 minutes to hike back. What time was it when Jacob got back to camp?Include A.M. or P.M. in your answer Please help me fast!! Find the area of this quadrilateral. If f(x)=(x+1)2+3, what is f(5)? Shaun collects coins. He has 24 quarters and 32 pennies in a jar. What is the ratio of quarters to pennies in the jar? A. 4:3 B. 3:4 C. 24:1 D. 1:24 Treaty of Ghent: who gained territory and did either side win the war? 6.4 divided by 208 What is the quotient for the equation above? Is 5-2y=3x a linear equation Plzzzzzzzz help What inference about those who do notshow kindness to others is BEST Supportedby information in the passage?They receive few thoughtful gifts from others.They are more likely to help a neighbor thana stranger.They spend little time enjoying nature.They are more likely to view themselves in anegative light. Can someone please help me with these? I will give you the brainliest answer and also give extra points! I really need help :( Write a formula, without using named ranges, that would be entered in cell E11. The formula must be easy to replicate. It should display the name of the airport, using the Airport code from cell D11 and the list of Airport names. Original price:$23.99;markdown 30%A)$7.20B)$16.79C)$31.19D)$15.80Thank you! PLEASE HELP MEEEEE WILL GIVE BRAINLIST IF ANSWERED!!!!! HELPPPPP!!!!!n + (-5.6) = 6.3n = PLEASE HELPwhat was the politic opinion of china's KMT party?A. supportive of the emperor/empress and critical of a republicB. supportive of socialism and critical of the emperor/empressC. supportive of communism and critical of a republic D. supportive of a republic and critical of the emperor/empress According to the Taylor rule, if inflation is 9% and the GDP gap is 4%, what is the recommendation for the federal funds rate target? 1. The Honda Accord uses 192 gallons of gasoline to travel 6 miles. At thisrate, how many miles can the vehicle travel per gallon of gasoline? *A1152 milesB32 milesC0.031 milesD198 miles The Medina's went out to eat at Chili's. If there bill was 65.20 and they gave 1ptheir server a 15% tip, how much did they leave for a tip? *