What will be printed out as a result of the following code execution:
 
static bool Method1() 
{ 
       Console.WriteLine("in Method1"); 
       return false;
 }
 static bool Method2() 
{ 
       Console.WriteLine ("in Method2"); 
       return true; 
} 
static void Main(string[] args)
{ 
     if (Method1() & Method2())
     { 
          Console.WriteLine("inside if";); 
      } 
}
 

Следи за CodeGalaxy

Мобильное приложение Beta

Get it on Google Play
Обратная Связь
Cosmo
Зарегистрируйся сейчас
или Подпишись на будущие тесты