
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
new JAVA code can only be added between lines 15 and 17.
as seen in image.
![Jump to level 1
Integer numAirports is read from input. Then, numAirports strings are read from input and inserted at the end of airportsList.
Output every element located at an odd index in airportsList. End each output with a space.
Ex: If the input is:
3
LAX UNK HNS
then the output is:
UNK
Note: Index iis odd if i % 2 != 0.
1 import java.util.Scanner;
2 import java.util.ArrayList;
3
4 public class AirportslistSearch {
5 public static void main(String[] args) {
6
Scanner scnr = new Scanner(System.in);
7
ArrayList<String> airportsList =
= new ArrayList<String>();
8
int numAirports;
9
int i;
10
11
12
13
14
15
16
17
18
numAirports
scnr.nextInt();
for (i = 0; i < numAirports; ++i) {
airportsList.add(scnr.next());
=
}
/* Your code goes here */
System.out.println();](https://content.bartleby.com/qna-images/question/0cc153ae-b205-4fb2-9991-7cf6a21d5016/df6df95b-f23b-4638-aac5-ed2502d6222c/7mf5vol_thumbnail.png)
Transcribed Image Text:Jump to level 1
Integer numAirports is read from input. Then, numAirports strings are read from input and inserted at the end of airportsList.
Output every element located at an odd index in airportsList. End each output with a space.
Ex: If the input is:
3
LAX UNK HNS
then the output is:
UNK
Note: Index iis odd if i % 2 != 0.
1 import java.util.Scanner;
2 import java.util.ArrayList;
3
4 public class AirportslistSearch {
5 public static void main(String[] args) {
6
Scanner scnr = new Scanner(System.in);
7
ArrayList<String> airportsList =
= new ArrayList<String>();
8
int numAirports;
9
int i;
10
11
12
13
14
15
16
17
18
numAirports
scnr.nextInt();
for (i = 0; i < numAirports; ++i) {
airportsList.add(scnr.next());
=
}
/* Your code goes here */
System.out.println();
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 4 steps with 2 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
- programming in an object-oriented style using Java Use the composite pattern to model your scene. It may be an image, a simulator, a movie, a gaming, or something else entirely.arrow_forwardUse Python Codehow to filter dataframes using python . For example I have a student grade csv table, first, I need to read the csv using pandas library then I want to visualize my student scores (using matplotlib, seaborn, etc) but I only want to visualize those whose scores are 60 and above. so how do i do the code in python.Exampe of Student grades table (csv) : Student name Score Jojo 90 Lili 65 Bibi 50 Sarah 40 Rajah 100 Albert 80 Cherry 75 Jamie 85 So , based on the table above, what doesn't need to be visualized is Bibi and Sarah . Hope you can help me :)arrow_forwardCan someone help me with this, for some reason my code isnt working and I am trying to figure out why. There should be three boxes like in the picture shown below. I was trying to put the links alone in the first box. the sentence starting with "A country demesne" and ending with "sussex" in the middle box and the rest of the text in the third box. However, it has all morphed into one box as I have started placing the floating images. Can someone help me get it back to three boxes while making sure I can put images where they are supposed to be located according to the diagram HTML: <!DOCTYPE html><html lang="en"><head> <meta charset="utf-8" /> <title>Flexbox Coding</title> <link rel="stylesheet" href="Style.css"></head><body> <header class="header-image"> <img src="57mBcYi.jpeg" alt="Header Image"> </header> <div class="flex-container"> <div class="content-container">…arrow_forward
- Please help me with my assignment for computer science as I had all the dialog box pop up for me except for "Whew" what am I doing wrong? I am including with this message the coding block for the assignment. import java.awt.event.*;import javax.swing.*;public class MouseWhisperer extends JFrame implements MouseListener {MouseWhisperer() {super("COME CLOSER");setSize(300,100);setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);addMouseListener(this);setVisible(true);}public void mouseClicked(MouseEvent e) { setTitle("OUCH"); }public void mousePressed(MouseEvent e) { setTitle("LET GO"); }public void mouseReleased(MouseEvent e) { setTitle("WHEW"); }public void mouseEntered(MouseEvent e) { setTitle("I SEE YOU"); }public void mouseExited(MouseEvent e) { setTitle("COME CLOSER"); }public static void main(String[] args) { new MouseWhisperer(); }} Please advice.arrow_forwardImplement the following by extending the Cubes project. For all shapes, there should be no colocated vertices. For the meshes, you may use arbitrary indexed convex-polygon faces that G3D will automatically tessellate into triangles on load. This project's report requires you to plan your approach before you begin writing code, so read the whole document before beginning implementation. Create data-files/model/cube.off, an axis-aligned cube with unit edge lengths, centered at the origin. You may make this file in a text editor directly, or write a procedure to generate it. Create a procedure (function or method) named makeCylinderthat generates a file data-files/model/cylinder.off given a radius and height. This file should be an indexed convex-polygon mesh for a cylinder about the yy-axis that is centered at the origin. Create a user interface for invoking makeCylinder. Use number boxes for the parameters and a button labelled “Generate” to actually launch the execution. Display a…arrow_forwardTask 4: Matplotlib Import the plotting function by the command: import matplotlib.pyplot as plt Plotting multiple lines Compute the x and y coordinates for points on sine and cosine curves and plot them on the same graph using matplotlib. Add x and y labels to the graph as well. Note: Please provide PYTHON (ANACONDA) code for above task.arrow_forward
- Full comments and a java language implementation are needed. Write some code so that your name is shown in red font inside a blue frame, then save the file.arrow_forwardIn java plsarrow_forwardChapter 18 Problem 38.PE Textbook: Introduction to Java programming and datastructure. 11th Edition Y. Daniel Liang Publisher: PEARSON ISBN: 9780134670942 This code is taken from your website does not work. package e38; import javafx.application.Application;import javafx.event.ActionEvent;import javafx.event.EventHandler;import javafx.scene.Scene;import javafx.scene.control.Button; import javafx.stage.Stage;import javafx.geometry.Pos;import javafx.scene.control.Label;import javafx.scene.control.TextField;import javafx.scene.control.Textfield;import javafx.scene.layout.BorderPane;import javafx.scene.layout.HBox;import javafx.scene.layout.Pane;import javafx.scene.shape.Line;import javafx.stage.Stage; public class E38 extends Application { @Override public void start(Stage primaryStage) { // Create a pane TreePane tp = new TreePane(); // Create a textfield TextField tfOrder = new TextField(); // Set the Depth…arrow_forward
- Don Norman suggests organizing screens and menus functionally, designing commands and menu choices to be distinctive, and making it difficult for users to take irreversible actions. Norman also says to provide feedback about the state of the interface (e.g., changing the cursor to show whether a map interface is in zoom-in or select mode) and designing for consistency of actions (e.g., ensuring that Yes/No buttons are always displayed in the same order). State one example you have seen where you know these rules have been violated. Although this is crucial to a user interfaces success, suggest why there may be challenges to implement some of Norman’s guidelines.arrow_forwardYou can plot shapes in Python using line graphs in matplot lib by providing the coordinates of the vertices of the shapes as x, y pairs and using the matplotlib.pyplot.plot (i.e. plt.plot) function. Draw a triangle, square, pentagon, hexagon and heptagon. Note: Use symmetry, starting with the origin at (0,0), and set the distance from the origin to the vertex to be of length 1.0 (otherwise this becomes very complicated for some shapes).arrow_forwardUsing DrawingPanel.java (from chapter 3G), draw a grid for filling in a 4 x 4 square of cell containing integers. For this part of the assignment the values are not important, but you are welcome to use the values shown in the magic square from below. Note that the values in any horizontal row, vertical column or main diagonals add up to 34, in addition to various sub-squares in the larger square also add up to the same value. Requirements: The magic square should be centered in the panel The values in each of the cells should be centered in that cell (both horizontally and vertically). You can assume the values will be <= 99 (i.e., at most 2 digits). For this part of the assignment, you can hard-code the values; you will store them in a 2-dimensional array (from chapter 7) when implementing Part B of the assignment. The title "CSC 142 Magic Square" is centered horizontally in the panel and at y = 50 You are free to choose the colors, fonts, font sizes and effects. This is what I used…arrow_forward
arrow_back_ios
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