Which language is used for artificial intelligence?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More AI Algorithms Interview Questions

What is breadth-first search algorithm?

0 Answers  


What is simulated annealing algorithm?

0 Answers  


1. Consider the following algorithm: for ( i = 1 ; i <= 1 . 5 n ; i++) cout << i ; for ( i = n ; i >= 1 ; i - - ) cout << i ; (a) What is the output when n = 2, n = 4, and n = 6? (b) What is the time complexity T(n)? You may assume that the input n is divisible by 2.

0 Answers  


Consider the following algorithm: j = 1 ; while ( j <= n/2) { i = 1 ; while ( i <= j ) { cout << j << i ; i++; } j++; } (a) What is the output when n = 6, n = 8, and n = 10? (b) What is the time complexity T(n)? You may assume that the input n is divisible by 2.

1 Answers  


There are numbers from 1 to n, which are inverted such that it results in numbers from n to 1. If only two consecutive numbers are stampled at a time and are inverted, how many moves are required?

1 Answers   IBM, TCS,






Explain me what's your favorite algorithm, and can you explain it to me in less than a minute?

0 Answers  


can anyone help me with some suggestions and improvemnts for sage line 50?

0 Answers  


What is the most efficient way to store 1 million phone numbers memory-wise?

0 Answers   Aspire, Infogain,


Tell us why is naïve bayes machine learning algorithm naïve?

0 Answers  


Consider the following algorithm: for ( i = 2 ; i <= n ; i++) { for ( j = 0 ; j <= n) { cout << i << j ; j = j + floor(n/4) ; } } (a) What is the output when n = 4 (b) What is the time complexity T(n). You may assume that n is divisible 4.

0 Answers  


What do you mean by overfitting and underfitting algorithms?

0 Answers  


Tell briefly about the Banker's algorithm and what is it used for?

0 Answers   Impetus,


Categories