Test1QnA Flashcards
System.out.println()
Prints a message to the console.
Arrays.sort(arr)
Sorts an array in ascending order.
Collections.sort(list)
Sorts a list in ascending order.
LocalDate.now()
Gets the current date.
Files.readAllLines(Path)
Reads all lines from a file into a List<String>.</String>
Math.abs(x)
Returns the absolute value of x.
Math.max(a, b)
Returns the larger of two numbers.
Math.min(a, b)
Returns the smaller of two numbers.
Math.pow(x, y)
Returns x raised to the power of y.
Math.sqrt(x)
Returns the square root of x.
Math.round(x)
Rounds x to the nearest integer.
Math.random()
Returns a random number between 0.0 and 1.0.
str.length()
Returns the length of the string.
str.charAt(index)
Returns the character at the given index.
str.substring(start, end)
Returns a substring from start to end.
str.indexOf(sub)
Returns the index of the first occurrence of sub.
str.equals(anotherString)
Compares two strings for equality.
str.replace(old, new)
Replaces occurrences of old with new.
str.toLowerCase()
Converts the string to lowercase.
str.toUpperCase()
Converts the string to uppercase.
str.trim()
Removes leading and trailing spaces.
Character.isLetter(ch)
Checks if ch is a letter.
Character.isDigit(ch)
Checks if ch is a digit.
Character.isWhitespace(ch)
Checks if ch is a whitespace character.
Character.toUpperCase(ch)
Converts ch to uppercase.
Character.toLowerCase(ch)
Converts ch to lowercase.
Random rand = new Random();
Creates a new Random object.
rand.nextInt(bound)
Returns a random integer between 0 (inclusive) and bound (exclusive).
rand.nextDouble()
Returns a random double between 0.0 and 1.0.
rand.nextBoolean()
Returns a random boolean value (true or false).
rand.nextFloat()
Returns a random float between 0.0 and 1.0.
What are the fundamental components of a Java program?
A Java program consists of classes, methods, variables, and statements. The main method is the entry point of execution.
What are the four pillars of Object-Oriented Programming (OOP) in Java?
The four pillars are Encapsulation, Inheritance, Polymorphism, and Abstraction.
What are packages in Java?
Packages are namespaces that organize related classes and interfaces, preventing name conflicts.
What are Java’s primitive data types?
Java has 8 primitive types: byte, short, int, long, float, double, char, and boolean.
How do you create a string in Java?
Strings can be created using String str = “Hello”; or String str = new String(“Hello”);.
What is the difference between if-else and switch statements?
if-else is used for evaluating boolean expressions, while switch is used for matching values against multiple cases.
What is a static method in Java?
A static method belongs to a class rather than an instance and can be called using ClassName.methodName().
What is the purpose of the Java API?
The Java API provides built-in classes and methods for common operations like math calculations, string manipulation, and file handling.
What method in the Math class returns the square root of a number?
Math.sqrt(x) returns the square root of x.
How do you concatenate two strings in Java?
You can use the + operator (str1 + str2) or the concat() method (str1.concat(str2)).
How do you generate a random integer in Java?
You can use Random rand = new Random(); int num = rand.nextInt(bound); where bound specifies the range.
What is the difference between while and do-while loops?
A while loop checks the condition before execution, while a do-while loop runs at least once before checking the condition.
When should you use a for loop instead of a while loop?
Use a for loop when the number of iterations is known in advance; use a while loop when the condition is evaluated dynamically.
How can you iterate over a string using a loop?
You can use a for loop: for(int i = 0; i < str.length(); i++) { System.out.println(str.charAt(i)); }
Write a Java program that prints “Hello, World!”.
java public class HelloWorld { public static void main(String[] args) { System.out.println(“Hello, World!”); } }
What is String[] args in the main method, and is it necessary?
String[] args allows command-line arguments to be passed to the program. It is not strictly necessary for program execution, but it must be included in the main method signature.
What are the four pillars of OOP in Java?
Encapsulation, Inheritance, Polymorphism, and Abstraction.
What is method overloading? Provide an example.
Method overloading allows multiple methods with the same name but different parameters. Example: java class MathOps { int add(int a, int b) { return a + b; } double add(double a, double b) { return a + b; } }
What is a package in Java?
A package is a namespace that organizes related classes and prevents name conflicts. Example: java package mypackage; public class MyClass { public void display() { System.out.println(“Hello!”); } }
What will be the output of int i = (int) 10.5; System.out.println(i);?
10 (Explicit type casting from double to int truncates decimal part.)
Convert a string “123” into an integer.
java String str = “123”; int num = Integer.parseInt(str);
How do you extract “Progr” from “Java Programming”?
java String str = “Java Programming”; System.out.println(str.substring(5, 10));
How do you check if a string contains “Java”?
java String sentence = “I love Java”; boolean contains = sentence.contains(“Java”); System.out.println(contains); // true
Write a program to check if a number is even or odd.
java int num = 10; if (num % 2 == 0) System.out.println(“Even”); else System.out.println(“Odd”);
What is the difference between if-else and switch?
if-else works with boolean expressions, while switch is used for matching values against multiple cases.
What does Math.sqrt(64) return?
8
Find the maximum of two numbers using Math class.
java System.out.println(Math.max(10, 20));
How do you generate a random number between 1 and 100?
java Random rand = new Random(); int num = rand.nextInt(100) + 1;
What is the output of: for (int i = 1; i <= 5; i++) System.out.print(i + “ “);
1 2 3 4 5
Convert a for loop into a while loop: for (int i = 1; i <= 5; i++) { System.out.print(i + “ “); }
java int i = 1; while (i <= 5) { System.out.print(i + “ “); i++; }
Write a program to print each character of “Java” using a loop.
java for (int i = 0; i < “Java”.length(); i++) { System.out.println(“Java”.charAt(i)); }
Reverse a string using a loop.
java String str = “Hello”; String reversed = “”; for (int i = str.length() - 1; i >= 0; i–) reversed += str.charAt(i); System.out.println(reversed); // olleH