
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
Question
thumb_up100%
Write a Java
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 6 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
- Create a Java program that declares and initializes an integer variable "num" with a value of your choice. Use the "if-then" statement to check if "num" is even or odd. If "num" is even, output a message to the console indicating that it is even. If "num" is odd, output a message to the console indicating that it is odd. Use the "if-then-else" statement to check if "num" is positive or negative. If "num" is positive, output a message to the console indicating that it is positive. If "num" is negative, output a message to the console indicating that it is negative. If "num" is zero, output a message to the console indicating that it is zero. Use a nested "if-then-else" statement to check if "num" is divisible by 2 and 3. If "num" is divisible by 2 and 3, output a message to the console indicating that it is divisible by both. If "num" is only divisible by 2, output a message to the console indicating that it is only divisible by 2. If "num" is only divisible by 3, output a message…arrow_forwardWrite a Java program that converts temperature from Fahrenheit to Celsius and vice versa. The program will accept a number (temperature) and a temperature unit designation (i.e., character F or C) from the user, and then convert the temperature into the other unit system. The program will echo the input as part of the final conversion output. The temperature units should be printed in full (Fahrenheit or Celsius). Your program should use real numbers—not integers—for both input and output. Formula: T(F) = (T(C) * 9 / 5) + 32T(C) = (T(F) − 32 ) * 5 / 9 Sample Run: This program converts Temperatures from Fahrenheit to Celsius and vice versa. Please enter your temperature: 32 Please enter the units (F/C): F A temperature of 32 degrees Fahrenheit is equivalent to 0 degrees Celsius. Do you wish another conversion? (Y/N): Y Please enter your temperature: 100 Please enter the units (F/C): C A temperature of 100 degrees Celsius is equivalent to 212 degrees Fahrenheit. Do you wish another…arrow_forwardA patient suffering from asthma needs to keep a diary of their "peak flow" breathing readings. This is just a number between 0 and 800 measuring how well they can blow air from their lungs. Their peak flow reading is the greatest of three readings taken at one time. Write a Java program to help the patient record their peak flow to show their doctor. The program should first ask the patient for the number their doctor has given them as being a dangerous reading. Any peak flow reading recorded that is less than the danger level should lead to a message that they need to go to hospital immediately. Once entered, this value should not be changed. After storing this number, the program should go into a loop that only stops when they type 0 instead of a day. It should repeatedly ask them for the day of the month which is a number from 1 to 31 (they may skip days) and then the three readings taken that day. All the peak flow readings (ie the largest of each set of three readings) should be…arrow_forward
- Please use Java.arrow_forwardwrite a program that asks the user how many times to roll a die. The output should include the total face value of all the rolls. For example, if you say roll 4 times and the first time turns up 5; second time turns up 3; third time turns up 1 and the forth time 4. The total would be 5 + 3 + 1 + 4 (13). in java i need helparrow_forwardWrite a Java program to calculate a gamer's total XP score with a bonus per level. The program should: 1. Prompt and read the user’s input for the gamer's name, Level 1 XP (L1), Level 2 XP (L2), Level 3 XP (L3), and Engagement score (ES). User Scanner to read input. 2. Each XP score input should be in whole numbers between 10-100 and in increments of 5. The total XP score with bonuses should be calculated as follows: L1+L1*0.20+L2+L2*0.30+L3+L3*0.50+ES+ES*0.60 3. Output the gamer's information and the total calculated XP score (including bonuses). 4. Prompt the user as to whether they want to calculate total XP for another gamer and repeat the input/output processing. 5. Allow the user to exit the program without inputting the gamer's data Documentation o Include header comments that include your name, date, and description of the program. o Include body comments. o Consistent indentations o Consistent white line spaces.arrow_forward
- Write a program In java that asks for the user's age. If the age is under 13, output, "You are a child". if age is greater than 13 and less than 19, output, "You are a teen". if age is greater than 19 and less than 65, output, "You are an adult". Over 65, "You are a senior citizen".arrow_forwardUsing Java: Write a program that randomly generates an integer greater than or equal to 0 and less than 100. The program should then prompt the user to guess the number. Based on the input, the program should print one of the appropriate messages:• If the user guesses correctly, “You won” should be printed, or any other appropriate message you choose.• If the user guesses a number lower, the program should print “The number is lower”• If the user guesses a number higher, the program should print, “The number is higher”Note that the user should be given five tries to guess the correct number. After 5 tries, the program should print out “You lose.”arrow_forwardWrite a Java program that prints rectangles of three different sizes to the screen, with a blank line between each rectangle. A 5 x 3 rectangle made of the letter ‘O’ A 16 x 6 rectangle made of the letter ‘T’ A 2 x 4 rectangle made of the left square bracket ‘%’ In the dimensions given above the first number is the horizontal width and the second number is the vertical height of the rectangle. Here is what your output should look like. Your program should be written in a flexible, general way so that the rectangle dimensions and the letter/character used to print each rectangle can be changed easily without rewriting the whole program. OOOOO OOOOO OOOOO TTTTTTTTTTTTTTTT TTTTTTTTTTTTTTTT TTTTTTTTTTTTTTTT TTTTTTTTTTTTTTTT TTTTTTTTTTTTTTTT TTTTTTTTTTTTTTTT %% %% %% %%arrow_forward
- Write a Java code that gets student exam scores from the user. Each exam score will be an integer in the range 0 to 100. Input will end when the user enters -1 as the input value. After all scores have been read, display the number of students who took the exam, the minimum score, the maximum score, the average score, and the number of As where an A is a score in the range 90-100. Make sure your average a decimal point. Only count A’s, not other grades. Note that you do not need to do any error checking on the input for this problem. This should be done as a standard sentinel-controlled while loop.arrow_forwardWrite a Java program named Words that asks the user to enter four words. The program should then analyze each of the four words so that it can report the length of each word as well as the positions of the five vowels within each word. For a sample run where the user enters the words: she smiles third frisbee the console screen must look as follows: Enter 4 words: she smiles third frisbee Word 1 = "she" Length = 3 position of vowels: 'a' = -1, 'e' = 2, '1' = -1, '0' = -1, '0' = -1, = -1, 'u' = -1 Word 2 = "smiles" Length = 6 position of vowels: 'a' = -1, 'e' -1, 'e' = 4, '1' = 2, 'i = 2, '0' = -1, 'u' = -1 Word 3 = "third" Length = 5 position of vowels: 'a' = -1, 'e' = -1, = -1, 'i' = 2, '0' = -1, 'u' = -1 Word 4 = "frisbee" Length = 7 position of vowels: 'a' = -1, -1, 'e' 'e' = 5, 5, '1' '1' = 2, 2, '0' '0' = -1, 'u' = -1 For a sample run where the user enters the words: shoe shoe chime wallabees the console screen must look as follows: Enter 4 words: shoe shoe chime wallabees Length…arrow_forwardIN JAVA - Write a program whose input is two integers, and whose output is the first integer and subsequent increments of 5 as long as the value is less than or equal to the second integer. End with a newline. Ex: If the input is: -15 10 the output is: -15 -10 -5 0 5 10 Ex: If the second integer is less than the first as in: 20 5 the output is: Second integer can't be less than the first. For coding simplicity, output a space after every integer, including the last. BASE CODE: import java.util.Scanner; public class LabProgram { public static void main(String[] args) { /* Type your code here. */ }}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