Arhiva de Blog

Test tehnic

What does the following code fragment do?                         Int no1 = 10;                         Int no2 = 0;                         Int no3 = 0;                         try{                                    no3 = no1/no2;                                    catch(ea as Exception);                                    no2 = 1;                                              no3 = no1/no2;                         }                         Finally{                                    MesageBox.Show(no3);                         } a)      A message box is displayed with 10 as message b)      ...

detalii