logo

Crowdly

Browser

Add to Chrome

Комп'ютерне забезпечення мультимедійних інформаційних систем [04102]

Looking for Комп'ютерне забезпечення мультимедійних інформаційних систем [04102] test answers and solutions? Browse our comprehensive collection of verified answers for Комп'ютерне забезпечення мультимедійних інформаційних систем [04102] at vns.lpnu.ua.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

Який простір імен містить класи для навігації між вікнами?

0%
0%
0%
0%
0%
View this question

Який 

елемент управління використовується для вводу

пароля?

0%
0%
0%
0%
100%
View this question

class Foo

{

    class Bar{ }

}

class Test

{

    public static void main (String [] args)

    {

        Foo f = new Foo();

        /* Line 10: Missing statement ? */

    }

}

 Який запис,  що вставляється в рядку 10 створює екземпляр Bar?

100%
0%
0%
0%
0%
View this question

Що вірно про анонімний внутрішній клас?

0%
0%
0%
0%
0%
View this question

Що буде виведено у результаті виконання програми?

 

int i = 0, j = 5;

tp: for (;;)

    {

        i++; 

        for (;;)

        {

            if(i > --j)

            {

                break tp;

            }

        }

        System.out.println("i =" + i + ", j = " + j);

0%
100%
0%
0%
0%
View this question

Які два рядки є допустими конструкторами для Thread?

Thread(Runnable r, String name)

Thread()

Thread(int priority)

Thread(Runnable r, ThreadGroup g)

Thread(Runnable r, int priority)

0%
67%
0%
33%
0%
View this question

public void test(int x)

{

    int odd = 1;

    if(odd) /* Line 4 */

    {

        System.out.println("odd");

    }

    else

    {

        System.out.println("even");

    }

}

Яке твердження вірно?

33%
67%
0%
0%
0%
View this question

Що є найбільш обмежувальне модифікатора доступу, який дозволить членам одного класу мати доступ до членів іншого класу в одному пакеті (package)?

 

0%
100%
0%
0%
0%
View this question

Що буде виведено у результаті виконання програми?

class MyThread extends Thread

{

    public static void main(String [] args)

    {

        MyThread t = new MyThread();

        t.start();

        System.out.print("one. ");

        t.start();

        System.out.print("two. ");

    }

    public void run()

    {

        System.out.print("Thread ");

    }

}

0%
0%
0%
0%
0%
View this question

Що буде виведено у результаті виконання програми?

public class NFE

{

    public static void main(String [] args)

    {

    String s = "42";

        try

        {

            s = s.concat(".5");  /* Line 8 */

            double d = Double.parseDouble(s);

            s = Double.toString(d);

            int x = (int) Math.ceil(Double.valueOf(s).doubleValue());

            System.out.println(x);

        }

        catch (NumberFormatException e)

        {

            System.out.println("bad number");

        }

    }

}

0%
0%
0%
100%
0%
View this question

Want instant access to all verified answers on vns.lpnu.ua?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome