Сфотографуй або відскануй свою найулюбленішу роботу, виконану власноруч; за можливості краще обрати виріб, виготовлений із конструкційних матеріалів.
Підпиши, зазначивши назву, техніку виготовлення та використані матеріали.
Файл із готовою роботою завантаж у вікно відповіді.
Укажи, як називаються залишки сировини й матеріалів, які втратили первісну споживчу вартість
Укажи, на якому підприємстві юрист уклав угоду між 3 особами на спільне відкриття підприємства
Укажи, який напій готують із молока, морозива й фруктового сиропу
Укажи, що є головною умовою досягнення успіху й високої результативності в започаткуванні власної справи
Consider the following arrays:
X = np.array([[8,0,9],[3,4,8],[8,3,7]])Y = np.array([[3,7,4],[2,5,8],[2,4,8]])
What is the output of np.logical_or((X < 5), (Y > 5))?
x-by-y array of booleans containing m False values and n True values.
Additionally, consider a second
x-by-yarray. Which of the
following is true if the second array is indexed with the boolean array?
What is the value of result after the following Python code is run?
a = np.array([0, 1, False, -1014, True, 0.0])b = np.array([False, True, 1, 5, 0, False])result = np.logical_and(a,b)Consider a 1D array named L, containing p positive numbers, z zeros, and n negative numbers, where p, z and n are integers. How many True values will be returned for np.astype(L, bool)? Select all correct answers.
What is the value of A after the following Python code?
C = np.array([[6, 1, 4],[2, 4, 5],[3, 7, 1]])A = C > 3