A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write a Java program to test if the first and the last element of two array of integers are same
Q:

Write a Java program to test if the first and the last element of two array of integers are same

0

Write a Java program to test if the first and the last element of two array of integers are same. The length of the array must be greater than or equal to 2
Test Data: array1 = 50, -20, 0, 30, 40, 60, 12
array2 = 45, 20, 10, 20, 30, 50, 11


Sample Output:

false

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

public class Main {
 public static void main(String[] args)
 {
  //false
  int[] num_array1 = {50, -20, 0, 30, 40, 60, 12};
	int[] num_array2 = {45, 20, 10, 20, 30, 50, 11};
	
	//true
	//int[] num_array1 = {50, -20, 0, 30, 40, 60, 12};
	//int[] num_array2 = {45, 20, 10, 20, 30, 50, 12};
	
	//Array lengths less than 2.
	//int[] num_array1 = {50};
	//int[] num_array2 = {45};
	
  if(num_array1.length>=2 && num_array2.length>=2)
  {
	  System.out.println(num_array1[0] == num_array2[0] || num_array1[num_array1.length-1] == num_array2[num_array2.length-1]);
  }
  else
  {
   System.out.println("Array lengths less than 2.");
  }
 }
}

Sample Output:

false

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now