What enables image processing, speech recognition, and complex game play in Artificial Inteligence (AI)?

Answers

Answer 1
Y u no se me hace mal
Answer 2

Answer:

Deep Learning

Explanation:

Deep Learning


Related Questions

Statistics are often calculated with varying amounts of data stored in a file. Write a program that takes any number of non-negative integers as input, and outputs the average, min and max. Prompt user for the input file name, open the file, read and process the numbers in the file.

Answers

Following are the program explanation, program, and output to the given question:

Program Explanation:

Import package.Defining a class Main.Defining the main method.Defining a string variable "str" and define a Scanner class object to input the"str" value.After input, the string value of a Scanner class object is created that takes the "str"  value in the parameter.In the next step, the "ArrayList" class object is declared that uses a while loop to add value to the list.In the condition statement an if block is defined that check ArrayList value equal to 0, and print the message.In the else block, a float variable "sum" and three integer variable "ctr, min, and max " is declared that check its value and prints its value with the message.

Program:

import java.io.*;//import package

import java.util.*;//import package    

public class Statistics //defining a class Statistics

{

  public static void main (String[] asx)//defining main method  

  {

       String str;//defining a string variable str

       Scanner sob= new Scanner(System.in);//defining Scanner class object to input value

       System.out.println("Enter value: ");//print message

       str= sob.nextLine();//input value

       Scanner s = new Scanner(str);//using Scanner class to take value str in parameter

       List<Integer> val = new ArrayList<Integer>();//defining an ArrayList class

       while(s.hasNextInt())//defining a while loop in add value

       {

           val.add(s.nextInt());//using add method to add value

       }

       if(val.size() == 0)//defining if block that check ArrayList value equal to 0

           System.out.println("The File is empty");//print message

       else//else block

       {

           float sum = 0;//defining float variable

           int ctr = 0, max = Integer.MIN_VALUE, min = Integer.MAX_VALUE;//defining integer variable that hold value

           for(Integer a:val)//defining a for loop that check ArrayList

           {

               ctr = ctr + 1;//adding value in ctr variable

               sum = sum + a;//adding value sum variable

           if(min > a)//use if to check min value greater than a

               min = a;//holding value in min

           if(max < a)//use if to check max value less than a

               max = a;//holding value in max

           }

               System.out.print("Average = ");//print message

               System.out.println(sum/ctr);//print average value

               System.out.print("Minimum value = ");//print message

               System.out.println(min);//print min value

               System.out.print("Maximum value = ");//print message

               System.out.println(max);//print max value

       }

  }

}

Output:

Please find the attached file.

Learn more:

brainly.com/question/15410214

How many bits would be needed to count all of the students in class today? There are 16 children in the class.

Answers

Answer:

There will be 23 beats per children

Www requires a tool called a

Answers

Answer:

The World Wide Web (WWW) requires a tool (software) called a HTTP. The full form of HTTP is Hypertext Transfer Protocol.0. It is a type of internet communication software that is needed for the publication of the website or www

Explanation:

What are the three benefits of incremental development, compared to the waterfall
model?

Answers

Answer:

The cost of accommodating changing customer requirements is reduced

In a personal computer, the term computer identifies only the

which is the part of a desktop computer system that processes data into information.

Answers

Answer:Central Processing Unit is the electronic circuiting within a Computer that carries out the instructions of a Computer by preforming the basic ...

Explanation:

7. In order to check your following distance, use a fixed object and count seconds.
True
False

Answers

Answer:

False

Explanation:

It is true that distance can be checked by counting seconds from a fixed object

How to determine the true statement?

The given highlights are:

Using a fixed objectCounting seconds

When seconds from a fixed object (such as a pole) are counted, the quantity that is being measured is time.

The time recorded can be used along the average speed to determine the distance traveled.

Hence, the given statement is true

Read more about distance and time at

https://brainly.com/question/4931057

#SPJ2

Please help not to sure if I’m right ?

Answers

Answer:

Explanation:

b

Answer:

A) When setting up the e-mail program for each employee’s computer, the IT professional has the employee enter his or her e-mail password to protect privacy.

Explanation:

Password access should be protected as much as possible by IT specialists. Rather than asking clients or workers for their password information, have them input it themselves.

Maintain the secrecy of all password information. Do not make it available to the public in any form.

Without their knowledge and permission, do not access clients' or employees' computers for any purpose. It is a breach of privacy to view another person's browser history without their agreement.

OAmalOHopeO

একটা ছবি কতটি কথার সমান?

Answers

Answer:

একটি ছবির মূল্য 84.1 শব্দের

Explanation:

what is the difference between computer hardware and computer software?

Answers

Answer:

computer Hardware:-The physical of the computer which can be seen or touched is called computer hardware☆Computer needs these hardware devices for performing basic functions like accepting data and instructions .Example(keyboard,mouse,printer etc.)

Computer software:-The collection of programs that makes computer worked is called software☆Computer needs software to instruct tge computer hardware what to do and how to do .Example(windows 7,windows 10,Microsoft paint etc.)

Discuss the term internal control​

Answers

Answer:

Internal controls are procedural measures an organization adopts to protect its assets and property. Broadly defined, these measures include physical security barriers, access restriction, locks and surveillance equipment. They are more often regarded as procedures and policies that protect accounting data.

PLEASE MARK ME BRAINLIEST

How is a WAN different from a LAN?
O LANs and WANs together make up 2. network.
O LANs require WANs or servers.
O A WAN is made up of LANS
O A LAN is made up of WANS

Answers

A WAn ( Wide Area Network ) is made up of LANS ( Local Area Network)

Write a program that computes an integer's checksum. To compute the checksum, break the integer into its constituent digits and, working from right to left, doubling every second digit. If the product results in a number with two digits, treat those two digits independently. Then, sum all the digits for the final checksum.

Answers

Following are the C++ program to the given question:

#include <iostream>//header file

using namespace std;

int findCheckSum(int n)//defining a method findCheckSum that takes integer parameter

{

bool c = false;//defining bool variable

int S= 0,d;//defining integer variable

while(n)//defining while loop that seprates digits

{

d = n%10; // get the digit.

n=n/10; // remove the last digit.

if(c)//use if to check the even position value

{  

d=d*2;//multiplying d with 2  

while(d)//use if to check digit value

{

S=S+(d%10);//adding value

d=d/10;// remove the last digit.

}

}  

else//defining else block  

{  

S=S+d;// checking the odd position

}

c= c^true;//holding bool value

}

return S;//return S

}

int main() //defining main method

{

cout << findCheckSum(1984);//calling method  

}

Output:

22

Program Explanation:

Including header file.Defining a method, "findCheckSum" that takes an integer parameter "n".Inside the method, a bool variable "c" and two integer variable "S, d" is declared that defines a while loop.Inside the loop, a conditional statement is defined that separates digits and adds them into the "S" variable, and returns its values.Outside the method, the main method is declared that calls the "findCheckSum" method, and print its value.

Learn more:

brainly.com/question/14788459

Convert the following as indicated : (120)10 = (?)2​

Answers

Answer:

1111000

Explanation:

perform the following. write from right to left:

- is the number even? then write down a 0

- is the number odd? then write down a 1 and subtract 1

- divide by 2

- repeat until you reach 0.

So for 120:

120 is even, so write down a 0 and continue with 120/2=60

60 is even,  so write down a 0 and continue with 60/2=30

30 is even,  so write down a 0 and continue with 30/2=15

15 is odd,  so write down a 1 and continue with 14/2=7

7 is odd, so write down a 1 and continue with 6/2=3

3 is odd, so write down a 1 and continue with 2/2=1

1 is odd, so write down a 1 and finish with 0

What are the Difference between turbo C++ and Java programing?

Answers

**Difference between Turbo C++ and Dev C++

Answer:

1. Turbo C++ (TC) :

It is a compiling software used for C and CPP Language. The initial release was in May 1990 but the first stable version released in September 2008. It takes more memory and time to load as compared to Dev C++. Turbo C++ is the compiler from which most of us start our coding life in school/college.

2. Dev C++ :

Dev C++ is also used for C and CPP Language. The first stable release was in April 2015. It is fast as compared to Turbo C++. Dev C++ is very much similar to Online Compilers which we used in Coding Competitions.

19. Fatigue can help improve your reaction time.
False
O True

Answers

Fatigue can help improve your reaction time is false.

Fatigue generally impairs reaction time rather than improving it.

When a person is fatigued, their cognitive and physical abilities can be negatively affected, including their reaction time.

Fatigue can lead to slower reflexes, decreased attention, and impaired decision-making, which can all contribute to longer reaction times.

It is important to get sufficient rest and manage fatigue to ensure optimal performance and safety, especially in activities that require quick reflexes and rapid responses.

To learn more on Fatigue click:

https://brainly.com/question/32503112

#SPJ6

which of the following is not related to text formatting?​

Answers

Explanation:

Searching, hope that helps. its 100% correct, goodluck.

A social media website shares data about its users’ shopping habits with another company without the permission of the users. This is an example of:
Group of answer choices

violating privacy rights.

violating a trademark.

violating a non-disclosure agreement.

violating fair use restrictions.

Answers

Answer:

non disclosure agreement

fill in the black
................. is concerned with recording, arranging filing, processor retrieving and disseminating of information. ​

Answers

Answer:

information processing is concerned with recording arranging processing retrieving and disseminating of information

What are the core skills necessary for communicating diplomatically?

Answers

Answer:

Just like approaching situations with empathy is important, the ability to approach and resolve conflict is essential when relying on your diplomatic skills. Diplomatically handling conflict in the workplace can be challenging, and the way you perceive and help resolve issues can often be a big factor in the outcome.

How has colored television impacted society in a negative way?

Answers

Answer:

Explanation:

Violence is one of the primarily negative effects of television among children. Television violence had been increasing for the past years. In the studies, it shows that an average of 32 acts per hour, a child may see on the screen (Gerber). Because of the number of violent acts a child may see, there is a result of the mental problem called “copycat phenomenon”. Copycat Phenomenon defines as imitating or copying the act or behaviour of a person from a particular show (Sparks, 2013). An example of this is if a child sees on television, a person who acts to be violent; there is a possibility to imitate its action, further, once it continues to imitate until he/she grows up, it results as to be his/her personality. Many people have experience this, even adults because it stirs up their emotions easily and somehow, they relate to that scene they watch. Further to that, it results in increasing number of crime and harm things; so that it is very alarming when a child happen to it. Violent television teaches children step-by-step; on how to commit mistakes and violent acts easily (Cline, 1989, 2B.).

Watching violence can lead to behaving aggressively. Does it really lead to behave aggressively among children? It is true that it may lead to behave them aggressively through the following factors: if a character in a particular scene performs violent acts; then that character receives a reward for their actions, and there is a possibility of increasing aggression to children, especially on boys and not on girls. And this theory he proposed is the social learning theory (Bandura, 1973). To illustrate, if a child sees a scene in a screen which has violent acts, then later the character receives reward on it, there is a chance of imitating or again “Copycat Phenomenon”. But, if the character did not receive rewards from it but receive punishment, there is a small chance of that child will refrain to do that act. But, in his further studies, it shows that this effect is not clearly depending on kind of program they watch; it is regardless of the kind of program they watch. Therefore, whatever kind of program they watch still, there is a risk of their behaviour due to prolonged expose to television and violence.

Once it changes their attitudes, it will clearly affect all their emotional aspects. Children emotions lead to anxiety, fear, trauma, and even depression (Wilson, 2008). First, there is a possibility of anxiety to them. Second, their fear increases. There is a study that many children have experiences short-term reactions to television. When they watch a scary movie, (example is Monster House), they get react easily and probably they frightened. So that, after they watch it, they feel devastated and therefore, it results to trauma. It will also intensify these effects if they watch a particular news footage that contains tragedy or violence. As a result, children are full of fears to face the real-world. It will hard for them to express themselves and they might see the real-world as a difficult, more complicated and may a victim or real violence. It is normal, but, their emotional capacity maybe more difficult to cope.

Which of the following choices BEST explains the purpose of developing a research plan?
A.
Research plans are ONLY used by teachers to plan their daily classroom activities.
B.
Research plans are ONLY used by experts who have to write articles for scholarly journals in various fields.
C.
Research plans are used by any person who is critically evaluating a topic; since research papers involve multiple stages and multiple sources, the writer uses the plan for time management.
D.
A research plan is the term to describe the research paper and the bibliography.



Please select the best answer from the choices provided


A
B
C
D

Answers

Answer:

C

Explanation:

Because the research is for everybody

What is your favorite photograph in the presentation? Why?

... I'm very confused about what presentation they're talking about. help

Answers

Answer:

is there a presentation in your lesson maybe?

Explanation:

what is cyber security ???​

Answers

Answer:

Cyber security is the practice if defending computers,servers,mobile devices,electronic systems, networks, and data from malicious attacks

what separates the components of a domain name

Answers

Explanation:

period

In a domain name, the 'thing' that separates its components is a period.

Would you agree that intelligent machines take the place of human beings in no time? explain

Answers

Answer:

I think that they are smarter than humans themselves, but we have to remember all A.I. has to be programmed and created by a man, therefore it has to be just as imperfect as one.

Explanation:

hope this helps. have a nice day!

What is MVC architecture in relation to developing in web applications? How
can we make use of this concept in web application development? Explain with
an example

Answers

Answer:

11÷3=5÷5=-316+6×53×4+996=357534

System documentation is never up to date.

True or false?

Answers

Explanation:

System documentation is never up to date is false

A network in which each node is connected to the line is called what

Answers

Answer:

A bus network is a local area network (LAN) topology in which each node -- a workstation or other device -- is connected to a main cable or link called a bus.

Explanation:

have agreat day!

Answer: A bus network is a local area network (LAN) topology in which each node

Explanation:

Which of the following is one of the first two levels of formatting in a Word document?

Answers

Explanation:

Paragraph Formatting.

im going to break my monitor soon



can osmeon help me

Answers

Answer:

what do you need help with

Explanation:

mark me brainliest