Recent questions tagged artificial intelligence

Description : What is your take on defeat of Go World Champion by Alpha Go System designed by google?

Last Answer : One day we will be able to threaten an ATM and get money.

Description : Care to comment on Steven Hawking's latest assertion that the rise of artificial intelligence will mean extinction for the human race?

Last Answer : answer:Hawking could have gone a bit farther with his concern: The rise of human intelligence will mean extinction for the human race. That is, as our intelligence improves (in any of the various ... Our weapons systems continue to improve, but our diplomatic skills are stuck in the Dark Ages.

Description : If a chatterbot were answering some of the Fluther questions, would the moderators detect it?

Last Answer : Not directly. The user agent string would (hopefully, if they knew what they were doing) make the bot appear to be a normal user, and it would post at a rate that would make it appear to be human. ... ban them , it's more about looking to say this user posts garbage, so we should ban them .

Description : 2. write a Python program to calculate the area of a circle. -Artificial Intelligence

Last Answer : # Python Program to find Area Of Circle using Radius PI = 3.14 radius = float(input(' Please Enter the radius of a circle: ')) area = PI * radius * radius circumference = 2 * PI * radius print(" Area Of a Circle = area + "sq ms") print(" Circumference Of a Circle = circumference +"cms")

Description : 1. Write a program to take a number and print whether it is an odd number or even number. -Artificial Intelligence

Last Answer : num = int(input("Enter a number: ")) mod = num % 2 if mod > 0: print("This is an odd number.") else: print("This is an even number.")

To see more, click for the full list of questions or popular tags.