logo

Crowdly

Browser

Add to Chrome

Questions Bank (1399773 total)

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

0%
100%
0%
View this question

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

View this question

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%
View this question

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

0%
0%
0%
View this question

Using First Principles,

0%
0%
0%
0%
View this question

Using First Principles,

0%
0%
0%
0%
View this question

Using First Principles,

0%
0%
0%
0%
View this question

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;             }         }     }

View this question

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

0%
0%
0%
View this question

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%
View this question