1.1.2 & 1.3.2 : Printing in Java & Arithmetic Expressions

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/6

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

7 Terms

1
New cards

What will this code segment output?

System.out.println("Hello");
System.out.println("World");

Hello
World

2
New cards

Which code segment will print “Hello Karel” to the screen in Java?

System.out.println("Hello Karel");

3
New cards

What will this code segment output?

public class Printing
{
    public static void main(String[] args)
    {
        System.out.println("*****");
        System.out.println("****");
        System.out.println("***");
        System.out.println("**");
        System.out.println("*");
    }
}

*****
****
***
**
*

4
New cards

What is the correct syntax for writing the main method in Java?

public static void main(String[] args)
{

}

5
New cards

What is the result of this expression?

150 % 100

50

6
New cards

Which of the below is NOT a Java arithmetic operator?

+

-

#

/

#

7
New cards

What will be the output of the following code snippet?

public class Calculator
{
    public static void main(String[] args)    
   {
        int first = 7;
        int second = 2;
        int result = first / second;
        System.out.println(result);
    }
}

3