logo

Crowdly

Browser

Додати до Chrome

Questions Bank (1393567 total)

How many input combinations are possible for a 3-input OR gate? 
0%
100%
0%
0%
Переглянути це питання
How many stable states does a D flip-flop have?
0%
0%
0%
0%
Переглянути це питання

Explain the purpose of the following method:

 

public static int check(int[] aiNumbers) {

   int val = aiNumbers[0];

   for (int iLoop = 1; iLoop < aiNumbers.length; iLoop++) {

      if (aiNumbers[iLoop] < val) {

         val = aiNumbers[iLoop];

      }

   }

   return val;

}

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

Trace the following code, what is the output?

boolean flag = false;

int a[] = new int[10];

int i = 1;

while(!flag) {

       a[i] += i;

       if (i >= a.length){

           flag = true;

        }

        System.out.println(a[i]);

       i++;

}

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

Trace the following code, what is the output?

int a[] = new int[10];

for(int i = a.length-1; i >= 0; i-=2) {

    a[i] += i ;

    System.out.println(a[i]);

}

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

Explain the purpose of the following method:

 

public static boolean check(int[] iNumbers){

   boolean bValid = true;

   for (int i = 0; i < iNumbers.length - 1; i++) {

      if (iNumbers[i] >= iNumbers[i + 1]) {

         bValid = false;

      }

   }

   return bValid;

}

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

Trace the following code, what is the output?

int a[] = new int[10];

for(int i = 0; i < a.length; i++) {

        a[i] = i * i;

         System.out.println(a[i]);

}

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

Le dioxygène (O2) est moins réactif comparativement au dihydrogène (H2).

Quelle est la cause de la réactivité chimique du gaz qui explique cette différence ?

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

Que signifie ce symbole de danger ?

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

Парламентський контроль за додержанням конституційних прав і свобод людини і громадянина та захист прав кожного на території України і в межах її юрисдикції:

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