Starting Out with Java: From Control Structures through Data Structures (4th Edition) (What's New in Computer Science)
4th Edition
ISBN: 9780134787961
Author: Tony Gaddis, Godfrey Muganda
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Expert Solution & Answer
Chapter 13, Problem 9MC
Program Description Answer
If the RadioButton is selected then the method “isSelected()” returns true.
Hence, the correct answer is option “C”.
Expert Solution & Answer
Want to see the full answer?
Check out a sample textbook solutionStudents have asked these similar questions
Q:Find the control word XOR A,B
CW=?
Your answer
Instructions
Objectives:
Use a while loop
Use multiple loop controlling conditions
Use a boolean method
Use the increment operator
Extra credit: Reuse earlier code and call two methods from main
Details:This assignment will be completed using the Eclipse IDE. Cut and paste your code from Eclipse into the Assignment text window.
This is another password program. In this case, your code is simply going to ask for a username and password, and then check the input against four users. The program will give the user three tries to input the correct username-password combination.
There will be four acceptable user-password combinations:
alpha - alpha1
beta - beta1
gamma - gamma1
delta - delta1
If the user types in one of the correct username-password combinations, then the program will output: “Login successful.” Here are a couple of example runs (but your code needs to work for all four user-password combinations):
Username: betaType your current password: beta1Login…
Can someone help me solve this program? The only result shown is the empty window.
Below is the codes I have:
import tkinter as tk
import tkinter.messagebox
def myWindow:
def --unit--(self):
self.main_window = tkinter.Tk()
#This is a button for show info
#When the user clicks the show info button
# The name and address should be displayed
self.my_button = tkinter.Button(self.main_window, text = 'Click', command = self.do_something)
#quit-button. When the user clicks on it,
# the info should be deleted or closed
self.quit_button = tkinter.Button('Response', text = 'Quit', command = self.main_window.destroy)
#pack the button
self.my_button.pack()
self.quit_button.pack()
#manin loop
tkinter.mainloop()
#enter the do something callback function for the button widget
def do_something():
#display info dialog box
tkinter.message box.showinfo('Response', Name and Address comes here')
window =tk.Tk()
window.title(My Adrress)
window.mainloop()
if --name-- == '--main--':…
Chapter 13 Solutions
Starting Out with Java: From Control Structures through Data Structures (4th Edition) (What's New in Computer Science)
Ch. 13.1 - What is the type selector name that corresponds to...Ch. 13.1 - Prob. 13.2CPCh. 13.1 - Prob. 13.3CPCh. 13.1 - Prob. 13.4CPCh. 13.1 - Prob. 13.5CPCh. 13.1 - Prob. 13.6CPCh. 13.1 - Prob. 13.7CPCh. 13.1 - Prob. 13.8CPCh. 13.1 - Prob. 13.9CPCh. 13.1 - Prob. 13.10CP
Ch. 13.1 - Prob. 13.11CPCh. 13.2 - Prob. 13.12CPCh. 13.2 - Prob. 13.13CPCh. 13.2 - Prob. 13.14CPCh. 13.2 - Prob. 13.15CPCh. 13.3 - How do you determine in code whether a CheckBox is...Ch. 13.3 - In code, how do you make a CheckBox appear...Ch. 13.3 - What type of event do CheckBox controls generate...Ch. 13.4 - How do you set the size of a ListView?Ch. 13.4 - Prob. 13.20CPCh. 13.4 - Prob. 13.21CPCh. 13.4 - Prob. 13.22CPCh. 13.4 - How do you set the orientation of a ListView...Ch. 13.5 - Prob. 13.24CPCh. 13.5 - Prob. 13.25CPCh. 13.5 - Prob. 13.26CPCh. 13.5 - Prob. 13.27CPCh. 13.6 - Prob. 13.28CPCh. 13.6 - Prob. 13.29CPCh. 13.6 - Prob. 13.30CPCh. 13.7 - What is the difference between a TextArea and a...Ch. 13.7 - Prob. 13.32CPCh. 13.7 - Prob. 13.33CPCh. 13.7 - Prob. 13.34CPCh. 13.7 - Prob. 13.35CPCh. 13.8 - Briefly describe each of the following menu system...Ch. 13.8 - What class do you use to create a menu bar?Ch. 13.8 - What class do you use to create a menu?Ch. 13.8 - What class do you use to create a menu item?Ch. 13.8 - What class do you use to create a radio menu item?...Ch. 13.8 - How do you create a relationship between radio...Ch. 13.8 - What class do you use to create a check menu item?...Ch. 13.8 - What type of event do menu items generate when...Ch. 13.9 - In what package is the FileChooser class?Ch. 13.9 - Prob. 13.45CPCh. 13.9 - Prob. 13.46CPCh. 13.9 - How do you determine the file that the user...Ch. 13 - When a selector name starts with a period in a...Ch. 13 - Prob. 2MCCh. 13 - Prob. 3MCCh. 13 - Prob. 4MCCh. 13 - Prob. 5MCCh. 13 - In the hexadecimal color value #05AAFF, the AA...Ch. 13 - Prob. 7MCCh. 13 - Prob. 8MCCh. 13 - Prob. 9MCCh. 13 - Prob. 10MCCh. 13 - The __________control presents its items in a...Ch. 13 - Prob. 12MCCh. 13 - A __________ is like a TextField that can accept...Ch. 13 - You use this class to create a menu bar. a....Ch. 13 - Prob. 15MCCh. 13 - True or False: If you make any changes to an...Ch. 13 - Prob. 17TFCh. 13 - Prob. 18TFCh. 13 - Prob. 19TFCh. 13 - Prob. 20TFCh. 13 - Prob. 21TFCh. 13 - Prob. 22TFCh. 13 - True or False: A MenuBar object acts as a...Ch. 13 - True or False: A Menu object cannot contain other...Ch. 13 - Prob. 1FTECh. 13 - .label { -font-size: 14pt; }Ch. 13 - Prob. 3FTECh. 13 - Prob. 4FTECh. 13 - Prob. 1AWCh. 13 - Suppose we have a stylesheet named styles.css, and...Ch. 13 - Prob. 3AWCh. 13 - Prob. 4AWCh. 13 - Prob. 5AWCh. 13 - Prob. 6AWCh. 13 - Prob. 7AWCh. 13 - Prob. 8AWCh. 13 - Prob. 9AWCh. 13 - Assume a JavaFX application has a RadioButton...Ch. 13 - Write code that creates a ListView control named...Ch. 13 - Prob. 12AWCh. 13 - Prob. 13AWCh. 13 - Write the code that creates a menu bar with one...Ch. 13 - Prob. 1SACh. 13 - Prob. 2SACh. 13 - Prob. 3SACh. 13 - Prob. 4SACh. 13 - Prob. 5SACh. 13 - Prob. 6SACh. 13 - Prob. 7SACh. 13 - Prob. 8SACh. 13 - Prob. 9SACh. 13 - Dorm and Meal Plan Calculator A university has the...Ch. 13 - Skateboard Designer The Skate Shop sells the...Ch. 13 - Prob. 3PCCh. 13 - Smartphone Packages Cell Solutions, a cell phone...Ch. 13 - Shopping Cart System Create an application that...
Knowledge Booster
Similar questions
- True or False: Adding more control variables will always increase the R 2 value. True Falsearrow_forwardIn this lab session, you are going to improvement a simulator for an air conditioner. Users can select sort of actions that the air conditioner allows. Turn air conditioner On/Off Increase fan speed by 100 Decrease fan speed by 100 Change to mode of cooling: On/Off Increment the temperature degree of the air conditioner Decrement the temperature degree of the air conditioner Exit the program: -------------------------------------------------------------------------------------------------------------------------------------------------------- #include <stdio.h> #define true 1 #definefalse0 #define MinFan 100 #define MaxFan 1000 #defineMinCool18 #define MaxCool 30 typedef int bool; typedef struct AirConditionerStruct { bool status; // running status struct FanStruct{ bool flow; int fanSpeed; } fanControl; struct ModeStrcut{ bool cooling; int degree; } coolingControl; }AirConditioner; void changeStatus (AirConditioner *airPtr); void increaseFanSpeed (AirConditioner…arrow_forwardCasel: Write a menu driven program that allows you to visit cities ofman in random order with following options.1: Visit a city2: Go to previous city3: Quit theprogramWhen user presses 1: program asks user to enter the city name, andthen display that the city has been visited. Please note user can visit acity any number of timesWhen user presses 2: Program takes you back to the previous cityWhen user presses 3: Program terminatesSee the below example how program interacts with the user:C:> 1: Visit a cityprogramEnter your choice2: Go to previous city3: Quit thePlease enter a city to visit.MuscatYou are in Muscat now.Enter your choice.1: Visit a city2: Go to previous cityPlease enter a city to visit.IbraYou are in Ibra noW.Enter your choice.1: Visit a city2: Go to previous cityPlease enter a city to visit.SoharYou are in Sohar now.Enter your choice.1: Visit a city2You are in Ibra now.2: Go to previous cityEnter your choice.1: Visit a city2: Go to previous cityPlease enter a city to…arrow_forward
- Active buzzer project. Write a code in C language to make an active buzzer make a sound. After writing the code , write an algorithm for the code you wrote.arrow_forwardWhat happens if you run the application with an error?arrow_forwardTrue or False: The Applet class’s play method loads and plays an audio file once and then releases the memory it occupies for garbage collection.arrow_forward
- write VB codearrow_forwardPosted don't copy the existing code.arrow_forwardpublic setUpTrip(double, double): void Car's state is set to hold the speed of travel and distance to travel at that speed Precondition: none Postcondition: Car's state holds information on distance to travel and speed to travel Parameters: Average Speed to be driven, Distance to drive Develop and use an algorithm that calculates the amount of fuel used and the actual distance driven in the drive() method. The algorithm must use a formula that gives proportionately poorer mileage when the Car is driven faster or slower than its optimal speed. When a new Car object is instantiated, it is initialized with an optimal speed variable. Your fuel usage algorithm should set limits on how poor of MPG your car will get. You may add other methods and fields as needed. When a new Car object is created, the car’s odometer is set to a random number between 0.0 and 5.99, the car’s trip odometer is set to 0.0, its best fuel economy (MPG) is set to a random number between 15.0 and 54.99, its…arrow_forward
- Design the worst calculator ever: an application that accepts two numbers from the user and, when a button is pushed, performs a single operation and displays the results. You may choose: Multiplication, Division, Subtraction, square root, or raising the first number to the exponent of the second number. Don't use addition as we already did that in class. The result must be displayed to the user only when an appropriately labeled button is pushed.arrow_forwardThis code prints the odd numbers from 1 to 20 and the number of odd numbers. Private Sub Command1_Click() Dim k, e As Integer k=1 1-........ 2- 3-....... 4-.... 5-...... 6-..... 7-...... End Sub 1- If (k <20) Then 2-2 Print k 3-k=k+ 24- c=c+ 1 5-Go To 26-End If 7-Print c 1-2 If (k < 20) Then 2-Print c 3-k=k+ 24-c=c +1 5-Go To 2 6-End If 7-Print k 1-2 If (k <20) Then 2-Print k 3-k=k+ 24-c=c +15-GoTo 26-Print c 7-End If 1-2 If (k <20) Then 2-Print k 3-k=k+ 24- GoTo 25-c=c+ 1 6-End If 7-Print c 1-2 If (k <20) Then 2-Print k 3- k-k+ 24-c=c + 1 5-Go To 26-End If 7-Print carrow_forwardCoffee vending machine: It is a vending system that can work for different prices of coffee. It works with coins. It should calculate the ammount difference and be able to refund extra money. The user will first select the product, the vending system will print the price on the screen, then the user will throw the money, the system will check the amount of money when the buy product button is pressed, if the amount of money is suitable, it will check whether the product is in the system, and if the product is available, it will deliver the coffee. It will refund extra money to customer. 1) Draw the sequence diagram for the scenario given above.2) Draw the class diagram for the given scenario. Thank you so much.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Microsoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,
Microsoft Visual C#
Computer Science
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Cengage Learning,