100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
Summary Java Code Snippets £2.99
Add to cart

Summary

Summary Java Code Snippets

 0 purchase

Summary of 5 pages for the course Computer Science at Abacus College, Oxford (Java Code Snippets)

Preview 2 out of 5  pages

  • March 22, 2025
  • 5
  • 2024/2025
  • Summary
All documents for this subject (10)
avatar-seller
BobQ2
Semester 1 Exam Practice: Java Code Snippets
Assume all the following code snippets are part of the main method of a Java class, unless
otherwise stated.

public class Snippets extends IBIO
{ public static void main(String[] args)
{
// snippet code …
}
}


Think in terms of:

• What does the code snippet do?
• How many variables are in the algorithm?
• Trace the code
• What will the output be, given the inputs provided?


1. Determine the output of the following snippet:
int a = 17;
int b = a % 10;
if( a > b )
{ output( b + " " + a ); }
else
{ output( a + " " + b ); }

, 2. Calculate the outputs for the following values for mark: 120, 100, 70, 20, 5.
switch(mark/10)
{
case 10:
case 9:
case 8:
System.out.println("Excellent");
break;
case 7:
System.out.println("Very Good");
break;
case 6:
System.out.println("Good");
break;
case 5:
System.out.println("Work Hard");
break;
case 4:
System.out.println("Poor");
break;
case 3:
case 2:
case 1:
case 0:
System.out.println("Very Poor");
break;
default:
System.out.println("Invalid value Entered");
break;
}

3. Determine the output for num = 128
int temp = num, result = 0;
while(temp > 0)
{ result = result + (temp % 10);
temp = temp / 10;
}
System.out.println(result);

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller BobQ2. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for £2.99. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

72997 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy revision notes and other study material for 15 years now

Start selling
£2.99
  • (0)
Add to cart
Added