Courseiva
Knowledge + Practice
CertificationsVendorsCareer RoadmapsLabs & ToolsStudy GuidesGlossaryPractice Questions
C
Courseiva

Free IT certification practice questions with explained answers for CCNA, CompTIA, AWS, Azure, Google Cloud, and more.

Certification Practice Questions

CCNA practice questionsSecurity+ SY0-701 practice questionsAWS SAA-C03 practice questionsAZ-104 practice questionsAZ-900 practice questionsCLF-C02 practice questionsA+ Core 1 practice questionsGoogle Cloud ACE practice questionsCySA+ CS0-003 practice questionsNetwork+ N10-009 practice questions
View all certifications →

Product

CertificationsCertification PathsExam TopicsPractice TestsExam Dumps vs Practice TestsStudy HubComparisons

Company

AboutContactEditorial PolicyQuestion Writing PolicyTrust Center

Legal

Privacy PolicyTerms of Service

Courseiva is a free IT certification practice platform offering original exam-style practice questions, detailed explanations, topic-based practice, mock exams, readiness tracking, and study analytics for Cisco, CompTIA, Microsoft, AWS, and other technology certifications.

© 2026 Courseiva. Courseiva is operated by JTNetSolutions Ltd. All rights reserved.

Courseiva is an independent certification practice platform and is not affiliated with, endorsed by, or sponsored by Cisco, Microsoft, AWS, CompTIA, Google, ISC2, ISACA, or any other certification vendor. Vendor names and certification marks are used only to identify the exams learners are preparing for.

HomeCertifications1Z0-811DomainsArrays and Methods
1Z0-811Free — No Signup

Arrays and Methods

Practice 1Z0-811 Arrays and Methods questions with full explanations on every answer.

79questions

Start practicing

Arrays and Methods — choose a session length

10 questions~10 min20 questions~20 min30 questions~30 min50 questions~50 min

Free · No account required

1Z0-811 Domains

What is JavaJava Basics and SyntaxPrimitives, Strings and OperatorsControl Flow and LoopsArrays and MethodsObject-Oriented ProgrammingException Handling and Development Tools

Practice Arrays and Methods questions

10Q20Q30Q50Q

All 1Z0-811 Arrays and Methods questions (79)

Start session

Click any question to see the full explanation and answer options, or start a focused practice session above.

1

A developer writes a method that takes an int array and returns the sum of its elements. The method signature is: 'public static int sumArray(int[] arr)'. Which statement correctly calls this method?

2

Given the code snippet: 'int[] nums = {10, 20, 30, 40}; int sum = 0; for (int i = 0; i < nums.length; i++) { sum += nums[i]; }'. What is the value of sum after execution?

3

A method 'public static void modifyArray(int[] arr) { arr[0] = 99; }' is called with 'int[] myArray = {1,2,3}; modifyArray(myArray); System.out.println(myArray[0]);'. What is the output?

4

Which of the following correctly declares and initializes an array of strings with the elements "A", "B", and "C"?

5

A method 'public static int findMax(int[] numbers)' returns the maximum value in the array. Which implementation correctly handles an empty array by returning 0?

6

Given the method: 'public static void swapFirstTwo(int[] arr) { int temp = arr[0]; arr[0] = arr[1]; arr[1] = temp; }'. What is the effect of calling this method with an array of length 1?

7

A developer writes a method that accepts a variable number of int arguments and returns their product. Which method signature correctly implements this?

8

What is the output of the following code? int[] a = {1,2,3}; int[] b = a; b[0] = 99; System.out.println(a[0]);

9

Which of the following correctly describes the effect of the method call 'Arrays.sort(myArray)' on an array of objects that do not implement Comparable?

10

Which TWO statements are true about method overloading in Java?

11

Which TWO statements are true about passing arrays to methods in Java?

12

Which THREE statements are correct about the 'main' method signature in Java?

13

What is the output?

14

What is the output?

15

What is the output?

16

A team is developing a Java application for an online store. The application has a class 'Inventory' that maintains an array of 'Product' objects. The method 'public void addProduct(Product p)' is intended to add a product to the array. The current implementation uses a fixed-size array of length 100. However, the business has grown, and the array may exceed its capacity. The team needs a solution that allows dynamic resizing without changing the method signature. Which approach should the team take?

17

A developer is working on a Java program that processes sensor data. The data is stored in a 2D array 'double[][] readings', where each row represents a sensor and each column a time interval. The method 'public static double[] averagePerSensor(double[][] data)' should compute the average reading for each sensor (row) and return a 1D array of averages. The developer writes the following implementation: 'double[] result = new double[data.length]; for (int i = 0; i < data.length; i++) { double sum = 0; for (int j = 0; j < data[i].length; j++) { sum += data[i][j]; } result[i] = sum / data[i].length; } return result;'. However, the program sometimes throws a NullPointerException. What is the most likely cause?

18

Arrange the steps to create an object from a class in Java in the correct order.

19

Match each control flow statement to its purpose.

20

A banking application stores daily transaction amounts in an array. Which declaration correctly creates an array of 31 double values?

21

A method is designed to compute the average of an array of test scores. What should the method return if the array is empty (length 0)?

22

Given the array declaration: int[] data = new int[5];, what is the value of data[2] after initialization?

23

Consider a method that takes an int array and modifies it: public static void doubleArray(int[] arr) { for (int i = 0; i < arr.length; i++) { arr[i] *= 2; } }. What is the output of: int[] nums = {1, 2, 3}; doubleArray(nums); System.out.println(nums[1]);

24

A developer writes two methods: public void process(int a) { ... } and public void process(double a) { ... }. Which method is called by process(10)?

25

An application requires storing a fixed set of 12 monthly temperatures. Which initialization is most appropriate?

26

A developer needs to search an unsorted array of 100,000 customer IDs (int) for a specific ID. Which approach is most efficient for a single search?

27

A method is declared as: public static int[] generateSequence(int n) { ... }. Which return statement is valid inside this method?

28

A programmer writes code to transpose a 2D array (matrix). Given: int[][] matrix = {{1,2},{3,4}}; int[][] result = new int[2][2]; for (int i=0; i<2; i++) for (int j=0; j<2; j++) result[j][i] = matrix[i][j]; What is the value of result[1][0]?

29

Which TWO statements are correct about array declaration and initialization in Java?

30

Which TWO are valid ways to pass an array to a method in Java?

31

Which THREE statements are true about method overloading in Java?

32

What is the output when the main method is executed?

33

What is printed when the main method runs?

34

What is the output?

35

A method is needed to return a new array where each element is doubled. Which method signature correctly accomplishes this?

36

Given an array arr of length 5, which code snippet correctly creates a copy using System.arraycopy?

37

A method is declared as 'public void printElements(int... numbers)'. Which invocation will cause a compilation error?

38

A method 'public static void sort(int[] arr)' sorts the array in place. After calling 'sort(data)', the original array 'data' is changed. Which design issue does this demonstrate?

39

A method 'public static double average(int[] numbers) { int sum = 0; for (int i = 0; i < numbers.length; i++) sum += numbers[i]; return sum / numbers.length; }' is called with array {10, 20, 30}. What change is needed to return the correct average?

40

Which method invocation is ambiguous given these overloaded methods? public void process(int[] a) and public void process(int... a)

41

A method 'public static int[] generate() { int[] result = new int[10]; for (int i = 0; i < result.length; i++) result[i] = i * 2; return result; }' is defined. Which statement correctly calls this method and stores the result?

42

Given 'int[] source = {1,2,3,4,5};' and 'int[] dest = new int[3];' which code correctly copies the first three elements from source to dest using System.arraycopy?

43

A method 'public static void modify(int[][] matrix) { matrix[0][0] = 99; }' is called with 'int[][] values = {{1,2},{3,4}}; modify(values);'. What is the value of values[0][0] after the call?

44

Which TWO are valid ways to declare and initialize an array of Strings?

45

Which TWO methods correctly modify the passed array in place?

46

Which THREE statements are true about passing arrays to methods in Java?

47

Refer to the exhibit. What is the output?

48

Refer to the exhibit. Which overloaded methods cause this compilation error?

49

Refer to the exhibit. The code at line 6 of ArrayExample.java is: int[] arr = {10, 20, 30, 40, 50}; int sum = 0; for (int i = 0; i <= arr.length; i++) sum += arr[i]; Which change fixes the exception?

50

Consider the following code that attempts to swap the first two elements of an array using a method: public static void swap(int[] arr) { int temp = arr[0]; arr[0] = arr[1]; arr[1] = temp; } public static void main(String[] args) { int[] values = {1, 2}; swap(values); System.out.println(values[0] + " " + values[1]); } What is the output?

51

A developer implements a method to check if a number exists in an array using binary search. The array is not sorted. What will happen?

52

Which approach does NOT create a new array that is independent of the original?

53

A method is designed to reverse an array of integers. The method signature is: public static void reverse(int[] arr). The method correctly reverses the array. Which statement is true about the method?

54

A developer writes a method that takes a variable number of integer arguments and returns the maximum. Which method signature is correct?

55

Consider the following code: int[] arr = new int[5]; for (int i = 0; i <= arr.length; i++) { arr[i] = i; } System.out.println(arr[0]); What is the result?

56

A method that calculates the average of an array of doubles is defined as: public static double average(double[] values) { double sum = 0; for (double v : values) sum += v; return sum / values.length; } Which call is valid?

57

Given the code: int[] a = {1, 2, 3}; int[] b = {4, 5}; a = b; b[0] = 99; System.out.println(a[0]); What is the output?

58

Given the code: public class Test { public static void change(int[] arr) { arr = new int[]{10, 20}; } public static void main(String[] args) { int[] arr = {1, 2}; change(arr); System.out.println(arr[0]); } } What is the output?

59

Which two of the following are valid ways to declare and initialize an array of integers? (Select two.)

60

Which three statements about method overloading are true? (Select three.)

61

Which two statements about passing arrays to methods are correct? (Select two.)

62

What is the output?

63

What is the output?

64

What is the output?

65

Which of the following is not a valid array variable declaration in Java?

66

Given the method: public static void modify(int[] data) { data = new int[]{10,20}; } What is the output of: int[] vals = {1,2}; modify(vals); System.out.println(vals[0]);

67

Which statement about method overloading with array parameters is true?

68

A developer writes a method that accepts an array and returns the sum of all elements. Which implementation is correct if the array might be null?

69

What is the result of the following code? int[] arr = new int[3]; arr[3] = 5; System.out.println(arr[3]);

70

A developer wants to sort an array of primitive ints in descending order. Which approach will work without using third-party libraries?

71

Which two statements about the Arrays class are true? (Choose two.)

72

Which two statements about method parameter passing in Java are true? (Choose two.)

73

Which three statements about arrays are correct? (Choose three.)

74

A company manages employee data stored in an array of Employee objects. The HR application frequently needs to find an employee by ID. The current implementation uses a linear search through the array each time. Performance reports indicate that this search is becoming a bottleneck as the company grows. The array is not sorted, and the company does not want to sort it because the order is meaningful for display. The array is large and frequently updated. The development team considers several options to improve the search performance without changing the array order. Which approach should they implement?

75

A team is developing a financial application that processes large arrays of market data. They have a method that calculates moving averages by copying a subarray for each window. The current implementation creates a new array for each window using System.arraycopy. The application is running slowly in production. The team identifies that the method is called millions of times per minute. The array is large and the window size is small. The garbage collector overhead is high due to many short-lived arrays. Which optimization should they apply to reduce object creation and improve performance?

76

A developer is writing a method to compute the average of an array of scores. The method should handle edge cases gracefully. The scores array may be empty or contain null values if the collection was interrupted. The scores are stored as primitive doubles. Which implementation is safest and follows best practices?

77

In a login system, the authentication method receives an array of user roles as a String[] and checks if a specific role is present. The array may be large (thousands of roles), and the method is called frequently for each user request. Performance is critical. The array is static and does not change after initialization. Which approach is most efficient for repeated checks?

78

A company's legacy code has a method that takes an array of integers and returns a new array containing only the positive numbers. The current implementation uses a fixed-size array equal to the input size and counts positive numbers, then copies them, but if many negatives exist, the result array has trailing zeros (which are removed by copying again). This wastes memory and time. The array can be large (up to 1 million elements). The developer wants to improve memory efficiency and runtime without using external libraries. Which approach should they implement?

79

A new developer writes a method that accepts an array and intends to swap the first and last elements. The code is: public static void swapEnds(int[] arr) { int temp = arr[0]; arr[0] = arr[arr.length-1]; arr[arr.length-1] = temp; } What is a potential issue with this method if the array is empty?

Practice all 79 Arrays and Methods questions

Other 1Z0-811 exam domains

What is JavaJava Basics and SyntaxPrimitives, Strings and OperatorsControl Flow and LoopsObject-Oriented ProgrammingException Handling and Development Tools

Frequently asked questions

What does the Arrays and Methods domain cover on the 1Z0-811 exam?

The Arrays and Methods domain covers the key concepts tested in this area of the 1Z0-811 exam blueprint published by Oracle. Courseiva provides free domain-focused practice, mock exams, missed-question review, and readiness tracking across all 1Z0-811 domains — no account required.

How many Arrays and Methods questions are in the 1Z0-811 question bank?

The Courseiva 1Z0-811 question bank contains 79 questions in the Arrays and Methods domain. Click any question to see the full explanation and answer breakdown.

What is the best way to practice Arrays and Methods for 1Z0-811?

Start with a 10-question focused session to identify your baseline accuracy in this domain. Read every explanation — even for questions you answer correctly — to understand the reasoning. Once you score consistently above 80%, move to a 20–30 question session to confirm depth before moving to the next domain.

Can I practice only Arrays and Methods questions for 1Z0-811?

Yes — the session launcher on this page draws questions exclusively from the Arrays and Methods domain. Choose 10, 20, 30, or 50 questions for a focused session, or click individual questions to review them one by one.

Free forever · No credit card required

Track your 1Z0-811 domain progress

Save your results, see per-domain analytics, and get readiness scores — free, for every certification.

Sign Up Free

Free forever · Every certification included

Practice Session

10 questions20 questions30 questions50 questions

Study Resources

All DomainsPractice TestMock ExamFlashcardsStudy Guide