Умовою виникнення електромагнітних хвиль є:
А) наявність нерухомих заряджених частинок;
Б) зміна з часом магнітного або електричного полів;
В) наявність електрорушійної сили;
Г) наявність провідників з постійним струмом;
Д) правильної відповіді тут немає.
Як співвідносяться ефективність і справедливість розподілу благ:
Given the following recursive algorithm to calculate the summation of the square of the first nnn positive integers.
procedure square_sum( n )
1 if (n==1)
2 s = 1
3 else
4 s = (n*n) + square_sum(n-1)
5 end of if
6 return s
Що не спричиняє неспроможність ринку:
Під час встановлення рівноваги за Вальрасом напрямок зміни ціни товару:
Let b∈R+b∈R+b \in R^+ and n∈Nn \in N. Determine the sequence of codes in an efficient recursive algorithm to return bnb^n
procedure power_bin(b, n)
What is the Big-O notation that can best describe the power_bin(b,n) algorithm?