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!

Який простір імен містить

визначені класи для роботи з безліччю потоками,

наприклад,

Dispatcher?

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

Який простір імен містить визначені класи для створення і роботи з документами XPS?

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

Класи з якого простору імен застосовуються для

створюваних користувачем анотацій і приміток про дані додатка, які зберігаються

окремо від документа?

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

Який елемент управління

надає простий спосіб створення користувацьких

елементів управління

?

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

class A

    protected int method1(int a, int b)

    {

        return 0;

    }

}

Що справедливо в класі, який розширює клас  A (extends class A)?

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

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

public class If1

{

    static boolean b;

    public static void main(String [] args)

    {

        short hand = 42;

        if ( hand < 50 && !b ) /* Line 7 */

            hand++;

        if ( hand > 50 );     /* Line 9 */

        else if ( hand > 40 )

        {

            hand += 7;

            hand++;   

        }

        else

            --hand;

        System.out.println(hand);

    }

}

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

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

public class BoolTest

{

    public static void main(String [] args)

    {

        Boolean b1 = new Boolean("false");

        boolean b2;

        b2 = b1.booleanValue();

        if (!b2)

        {

            b2 = true;

            System.out.print("x ");

        }

        if (b1 & b2) /* Line 13 */

        {

            System.out.print("y ");

        }

        System.out.println("z");

    }

}

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

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

public class Test

    public static void aMethod() throws Exception

    {

        try /* Line 5 */

        {

            throw new Exception(); /* Line 7 */

        }

        finally /* Line 9 */

        {

            System.out.print("finally "); /* Line 11 */

        }

    }

    public static void main(String args[])

    {

        try

        {

            aMethod(); 

        }

        catch (Exception e) /* Line 20 */

        {

            System.out.print("exception ");

        }

        System.out.print("finished"); /* Line 24 */

    }

}   

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

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

String a = "newspaper";

a = a.substring(5,7);

char b = a.charAt(1);

a = a + b;

System.out.println(a);

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

Які два вирази є еквівалентні?

3/2

3<2

3*4

3<<2

0%
0%
0%
0%
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