
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Concept explainers
Question
I need help solving this in JAVA
![1 import java.util.Scanner;
2.
3 public class Compare {
4
public static void main(String args) {
final int SIZE_LIST = 4;
int] keysList = new int[SIZE LIST];
int[] itemsList = new int[SIZE_LIST];
int i;
Scanner input
6.
8.
9.
10
= new Scanner(System.in);
11
12
keysList[0]
keysList[1]
keysList[2] = input.nextInt();
keysList[3] = input.nextInt();
input.nextInt();
input.nextInt();
13
14
15
16
itemsList[0] = input.nextInt(); I
itemsList[1] = input.nextInt();
itemsList[2] = input.nextInt();
itemsList[3] = input.nextInt();
17
18
19
20
!!
21
22
/* Your code goes here */
23
24
System.out.println();
}
25
26
27 }](https://content.bartleby.com/qna-images/question/722c0934-aff7-4600-989e-1d198e6697ab/1dcf3432-e862-41ab-8913-a82b97caa82e/1ppmvvm_thumbnail.jpeg)
Transcribed Image Text:1 import java.util.Scanner;
2.
3 public class Compare {
4
public static void main(String args) {
final int SIZE_LIST = 4;
int] keysList = new int[SIZE LIST];
int[] itemsList = new int[SIZE_LIST];
int i;
Scanner input
6.
8.
9.
10
= new Scanner(System.in);
11
12
keysList[0]
keysList[1]
keysList[2] = input.nextInt();
keysList[3] = input.nextInt();
input.nextInt();
input.nextInt();
13
14
15
16
itemsList[0] = input.nextInt(); I
itemsList[1] = input.nextInt();
itemsList[2] = input.nextInt();
itemsList[3] = input.nextInt();
17
18
19
20
!!
21
22
/* Your code goes here */
23
24
System.out.println();
}
25
26
27 }

Transcribed Image Text:For any element in keysList with a value smaller than 40, print the corresponding value in itemsList, followed by a semicolon (no
spaces).
Ex: If the input is:
32 105 101 35
-10 20 30 40
the output is:
10;40;
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps with 1 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- 1. Bresenham's Algorithm draw circle in java code? 2. Trigonometric method draw circle in java code?arrow_forwardIn java if i have this pseudo code that tries to explain how a method will work using recursion how can i turn this into working java codearrow_forwardThis is in java, I need the answer for the second question, my current code for the first problem is: import java.util.Scanner; public class leapYear{ //----------------------------------------------------------------- // Determines and prints if a year is a leap year ( and therefore // has 29 days in February) in the Gregorian calendar. //----------------------------------------------------------------- public static void main (String[] args) { int year; Scanner scan = new Scanner (System.in); System.out.println ("This program will help you to determine "); System.out.println ("if the year is a leap year. Enter any "); System.out.println ("year that is greater than 1581. "); System.out.print ("Enter the year here: "); year = scan.nextInt(); if (year > 1581) { if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) System.out.println…arrow_forward
- please write the Java source code of Sin(x) and plot itarrow_forwardWrite a Non tail recursion and a tail recursion method in Java with a test class that does the following: The factorial of a positive integer n —which we denote as n!—is the product of n and the factorial of n 1. The factorial of 0 is 1. Write two different recursive methods in Java that each return the factorial of n. Please and Thank youarrow_forwardI want solution with stepsarrow_forward
- Write a program that implements iterator class called Prime and which prints prime numbers up to n. in pythonarrow_forwardPLz help with the following: in javaarrow_forwardWrite programs to find the sum of elements of an array of n numbers in both Python and Java. Which of the two programs has higher degree of readability and why?arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education