logo

Crowdly

Browser

Додати до Chrome

Questions Bank (1399783 total)

За якісною реакцією процесу бродіння під час визначення етилового спирту використовують

0%
100%
0%
Переглянути це питання

 IEnumerator is an interface which helps to get current elements from the collection, it has the following two methods

Переглянути це питання

Please, select the output of the code below:

    public class Example     {         static void Main()         {             foreach (int i in GetValue())             {                 Console.Write("{0} ", i);             }         }          public static IEnumerable<int> GetValue()         {             yield return 1;             yield return 2;             yield return 5;         }     }

0%
0%
0%
0%
0%
Переглянути це питання

Визначення етилового спирту за якісною реакцією процесу бродіння проводять у

0%
0%
0%
Переглянути це питання

Using First Principles,

0%
0%
0%
0%
Переглянути це питання

Using First Principles,

0%
0%
0%
0%
Переглянути це питання

Using First Principles,

0%
0%
0%
0%
Переглянути це питання

Please, select the output of the code below:

public class PowersOf2     {         static void Main()         {             foreach (int i in Power(2, 5))             {                 Console.Write("{0} ", i);             }         }          public static IEnumerable<int> Power(int number, int exponent)         {             int result = 1;              for (int i = 0; i < exponent; i++)             {                 result = result * number;                 yield return result;             }         }     }

Переглянути це питання

Сіра поверхня бражки і неприємний запах вказують на

0%
0%
0%
Переглянути це питання

Please, choose the type that can be used as a return type in the declaration of an iterator with yield:

0%
0%
0%
0%
0%
Переглянути це питання