Answer:
for question 3 answer : 4 question4: its 28
Explanation:
x+7*2
The output if the user enters -5 is 4, while the output if the user enters 7 is 28. Both of these outputs will eventually depend on the program which is executed by a specific language.
What is the significance of the output of programming language?Programming languages use classes and functions that control commands. The reason that programming is so important is that it directs a computer to complete these commands over and over again, so people do not have to do the task repeatedly. Instead, the software can do it automatically and accurately.
According to the context of this question, the actual number is the first output is found to be 1 and when -5 is added into it, it gives an output of 4. The same principle is applied in the second question as well but the actual number, in this case, would be different to it determines a different output.
Therefore, the output if the user enters -5 is 4, while the output if the user enters 7 is 28. Both of these outputs will eventually depend on the program which is executed by a specific language.
To learn more about Programming languages, refer to the link:
https://brainly.com/question/16936315
#SPJ2
A gui allows you to interact with objects on the screen such as icons and buttons true or false
Answer:
True
Explanation:
can someone help me find all the solutions to the problem
An update log file contains the following information:
LogID Old.Name Old.Phone Old.City New.Name New.Phone New.City UpdateTimeStamp
15 Steve Gleason 212 834- 2345 Brooklyn Steven Gleason 212 834- 2345 NJ 01/21/22 07:02:09 UTC
16 Mabel Zurich 315 332 3833 Morristown Mabel Lee 315 332- 833 Camden 01/21/22 07:02:29 UTC
17 Juan Moroni 646 257- 7455 Bronx Juan Moroni 646 257- 7455 Long Island Jan. 21 2022 07:03:02 UTC
For LoglD 17 which of the following data structure issues are present?
a. Data parsing.
b. Cryptic data values.
c. Misfielded values.
d. Data consistency.
e. Data concatenation
Question 4
1 pts
Consider the following procedure called square that is meant to multiply a number by
itself and return the value.
PROCEDURE square number
Missing Instructions
RETURN squared
What should go in place of missing Instructions in order to make this procedure work as
intended?
number
number * number
O squared
number + 2
O squared - number number
O square - number number
Answer: squared ← number * number
Explanation:
Brainly not working for me not showing any ads or answers
Answer:
oof, try reloading the page?
Explanation:
Answer:
You should try logging in out your account
The function below takes a single argument: data_list, a list containing a mix of strings and numbers. The function tries to use the Filter pattern to filter the list in order to return a new list which contains only strings longer than five characters. The current implementation breaks when it encounters integers in the list. Fix it to return a properly filtered new list.student.py HNM 1 - Hef filter_only_certain_strings (data_list): new_list = [] for data in data_list: if type (data) == str and len(data) >= 5: new_list.append(data) return new_list Restore original file Save & Grade Save only
Answer:
Explanation:
The Python code that is provided in the question is correct just badly formatted. The snippet of code that states
return new_list
is badly indented and is being accidentally called inside the if statement. This is causing the function to end right after the first element on the list regardless of what type of data it is. In order for the code to work this line needs have the indentation removed so that it lines up with the for loop. like so... and you can see the correct output in the attached picture below.
def filter_only_certain_strings(data_list):
new_list = []
for data in data_list:
if type(data) == str and len(data) >= 5:
new_list.append(data)
return new_list
Junie is researching Ancient Egypt. She found a website that is full of information and great
images. As she is reading the text, she notices that there are little bits of information that don't
really agree with any of the other research she has done. What should she do?
O Use the website. Most of the information seems correct.
OUse only the information that she needs and ignore the information that doesn't seem right.
O Ask her friend what he thinks about the website.
O Evaluate the site using the CARS checklist to see if the site is valid and reliable.
Answer: Evaluate the site using the CARS checklist to see if the site is valid and reliable.
Explanation:
What is the best way to improve an online search?
O use detailed keywords
O use a single keyword
O avoid keywords
O re-order the keywords
Answer: i think it’s A, i’m not sure. i’m still stuck on my own
Explanation:
Answer:
I would suggest:
A.
Explanation:
the more specific you are, the better results you would get.
Which is a potential disadvantage of emerging technologies? A. increased spread of misinformation due to advanced communication technologies B. inefficient usage of energy due to advanced manufacturing technologies C. only benefiting developed countries rather than developing ones D. slowing down global economic growth
Answer: I believe it’s D.
Explanation: Less developed countries may not be able to afford the new technology, while more developed ones will be able to do so. Meaning the less developed countries will most likely not change.
GIVING BRAINLIEST ANSWER CORRECTLY! 20 POINTS
What is the purpose of a Post Mortem Review?
To check the code for spelling
To prove the algorithm is correct
To understand how the code can be improved
To check the code for formatting?
Answer:
C . To understand how the code can be improved
By itself, the human eye cannot see anything in three dimensions. What does the passage say enables us to see the world in 3-D?
Answer:
he miracle of our depth perception comes from our brain's ability to put together two 2D images in such a way as to extrapolate depth. This is called stereoscopic vision.
Explanation:
Answer:
the way our brain and eyes work together
Explanation:
Which steps will import data from an Excel workbook? Use the drop-down menus to complete them.
1. Open the database.
2. Click the *BLANK*
tab.
3. In the import & Link group, click *BLANK*
4. Click *BLANK* to locate a file.
5. Navigate to and open the file to import.
6. Select the Import option.
7. Click OK.
8. Follow the instructions in the wizard to import the object.
Answer:
what are the blank options
Answer:
The answer is
1. External Data
2. Excel
3. Browse
Explanation:
EDGE 2021
We investigated a program which is probably used as one component of a bigger password breaking algorithm. We determined that the program can input arbitrary N-bit queue and for actual N-bit input also the program output will be always N bits long. Additionally we noticed that the longer program input is, the longer will be the output calculating time. After performing some repeating tests we also determined that the program working time depends only and exactly on input length, not on the input itself.
Finally we fixed some actual working times:
-for N=10 - 10.576 seconds;
-for N=20 - 11.087 seconds;
-for N=25 - 13.544 seconds;
-for N=30 - 27.442 seconds;
-for N=35 - 1 minute 46.059 seconds;
-for N=40 - 9 minutes 10.784 seconds.
Task:
a) Find the program working time for N=50.
b) Please derive the mathematical formula using which is possible to calculate actual working time for arbitrary N.
Answer:
i dont know
Explanation:
what is the difference between multimedia and hypermedia
Answer:
While multimedia simply refers to multiple forms of media, hypermedia is used in a much broader sense to refer to media with links to other media. Multimedia is anything you can see and hear, whereas hypermedia is something you can see and interact with at the same time.
Write a program in file MinMax.py that accepts an arbitrary number of integer inputs from the user and prints out the minimum and maximum of the numbers entered. The user will end the input loop by typing in the string 'stop'. When the user enters 'stop' your program should print out the minimum integer entered and the maximum integer entered. If the user enters 'stop' immediately (i.e., before any numbers are entered), you'll print a slightly different message. See the examples below: You can assume that the values entered are integers (positive, negative or zero) or the string 'stop' (lowercase). You don't have to validate the inputs. > python Min Max. py
Enter an integer or 'stop' to end: stop You didn't enter any numbers > python Min Max. py
Enter an integer or 'stop' to end: -10
Enter an integer or 'stop' to end: 0 Enter an integer or 'stop' to end: +42
Enter an integer or 'stop' to end: 87 Enter an integer or 'stop' to end: -100
Enter an integer or 'stop' to end: stop The maximum is 87 The minimum is -100
Answer:
The program is as follows:
numlist = []
num = input("'stop' to end: ")
while not (num == "stop"):
numlist.append(int(num))
num = input("'stop' to end: ")
if len(numlist) == 0:
print("You didn't enter any numbers")
else:
print("The maximum is "+str(max(numlist))+" and The minimum is "+str(min(numlist)))
Explanation:
This declares an empty list
numlist = []
This prompts the user for input
num = input("'stop' to end: ")
This loop is repeated until the user enters 'stop'
while not (num == "stop"):
This appends the input to the list
numlist .append(int(num))
This prompts the user for input
num = input("'stop' to end: ")
If the length of the list is 0, then the user entered no input
if len(numlist) == 0:
print("You didn't enter any numbers")
If otherwise, this prints the min and the max
else:
print("The maximum is "+str(max(numlist))+" and The minimum is "+str(min(numlist)))
The program that accepts an arbitrary number of integer inputs from the user and prints out the minimum and maximum of the numbers entered is as follows:
numbers = []
x = input("Enter an integer and stop to end: ")
while not(x == "stop"):
numbers.append(int(x))
x = input("Enter an integer and stop to end: ")
if len(numbers) == 0:
print("You didn't enter any numbers ")
else:
print(f"The maximum number is {max(numbers)} and the minimum number is {min(numbers)}")
Code explanation:
The code is written in python
The first line of code, we declared a variable named numbers and it is an empty list for storing our integers.The variable x is stores the user inputwhile the user's input is not lowercase "stop", the user's input is appended to numbers. Then the program ask for the users input as long as it is an integers inputif the length of the list is 0, then we print a statement to ask the user to enter a number.Else we print the maximum and minimum number of the user's input.learn more on python code here: https://brainly.com/question/19175881
What is the name for a piece of information from one record in one field ?
Answer:
Database field
Explanation:
A database sector corresponds to a specific piece of information from some kind of record. A database record consists of a collection of fields. Name, email, and contact information, for example, are fields in a telephone book record.
Answer: C. Data Value
Explanation:
Intro to Access -Edg2022
From the practice directory, you wish to capture a listing of files and directories to a file in your user2 directory, thus allowing you to keep track of what is in your user2 directory. What command would you use to redirect the output of a long listing of all files and directories under user2 directory and save the result to a new output file called homedir.list which is under the practice directory
Answer:
variable(s) determine the amount of potential energy an object has?
Explanation:
Hadley made a plan that after downloading the Eclipse IDE, she would disable her security program, extract and install Eclipse, and then update her Java SDK. Which steps will ensure that she will correctly install the new program?
Extract and install Eclipse before disabling her security program.
Re-enable her security program before updating the Java SDK.
Update her Java SDK, then extract the Eclipse IDE.
Disable her security program and update her Java SDK before downloading Eclipse.
Answer:
Disable her security program and update her Java SDK before downloading Eclipse
Explanation:
Answer:
i believe its late to answer but hi lol
Explanation:
sdjinsn
You are a visitor at a political convention with delegates; each delegate is a member of exactly one political party. It is impossible to tell which political party any delegate belongs to; in particular, you will be summarily ejected from the convention if you ask. However, you can determine whether any pair of delegates belong to the same party or not simply by introducing them to each other. Members of the same party always greet each other with smiles and friendly handshakes; members of different parties always greet each other with angry stares and insults.
Required:
Suppose more than half of the delegates belong to the same political party. Design a divide and conquer algorithm that identifies all member of this majority party and analyze the running time of your algorithm.
Answer:
The algorithm is as follows:
Step 1: Start
Step 2: Parties = [All delegates in the party]
Step 3: Lent = Count(Parties)
Step 4: Individual = 0
Step 5: Index = 1
Step 6: For I in Lent:
Step 6.1: If Parties[Individual] == Parties[I]:
Step 6.1.1: Index = Index + 1
Step 6.2: Else:
Step 6.2.1 If Index == 0:
Step 6.2.2: Individual = I
Step 6.2.3: Index = 1
Step 7: Else
Step 7.1: Index = Index - 1
Step 8: Print(Party[Individual])
Step 9: Stop
Explanation:
The algorithm begins here
Step 1: Start
This gets the political parties as a list
Step 2: Parties = [All delegates in the party]
This counts the number of delegates i.e. the length of the list
Step 3: Lent = Count(Parties)
This initializes the first individual you come in contact with, to delegate 0 [list index begins from 0]
Step 4: Individual = 0
The next person on the list is set to index 1
Step 5: Index = 1
This begins an iteration
Step 6: For I in Lent:
If Parties[Individual] greets, shakes or smile to Party[i]
Step 6.1: If Parties[Individual] == Parties[I]:
Then they belong to the same party. Increment count by 1
Step 6.1.1: Index = Index + 1
If otherwise
Step 6.2: Else:
This checks if the first person is still in check
Step 6.2.1 If Index == 0:
If yes, the iteration is shifted up
Step 6.2.2: Individual = I
Step 6.2.3: Index = 1
If the first person is not being checked
Step 7: Else
The index is reduced by 1
Step 7.1: Index = Index - 1
This prints the highest occurrence party
Step 8: Print(Party[Individual])
This ends the algorithm
Step 9: Stop
The algorithm, implemented in Python is added as an attachment
Because there is an iteration which performs repetitive operation, the algorithm running time is: O(n)
Please help. 10 points
Question # 1
File Upload
Submit your newsletter that includes the following:
two or three columns
a title
at least three graphics, but not more than six
Answer:
God Is Good He Will Always Help You He Is Good And Always Good!!
If God Is For Us Who Can Be Against us?? Romans 8:31
Explanation:
Sorry im late. Hope I helped.
I will be doing the biography report.
The Biography and Life of Henry Ford.
Column One: Who was Henry Ford?
Henry Ford was the founder of Ford Motor Company and also the mass producer of the automobile. Henry Ford was born in 1863. At the age of 16, he worked as a machinist apprentice. Later, Henry began to work the family farm while still working on creating steam engines. Henry had a big interest in steam engines, which would later contribute to him building his first working automobile.
Column Two: How did Henry Ford contribute to our society?
After marrying in 1888, Ford was hired to work for Edison Illuminating Company. His position was an engineer, and Ford began to accelerate his position in the company quickly. After a while, Ford created his first operating vehicle. This was called the "Quadricycle." Ford wanted to improve on his models, so he founded the Company Ford with others. Ford then began to develop methods of mass-producing automobiles to sell to the public. After success in business, he bought the whole company and owned it all by himself. Ford began to mass-produce automobiles. It is said that " The mass production techniques Henry Ford championed eventually allowed Ford Motor Company to turn out one Model T every 24 seconds." Ford passed away in 1945. He decided to give ownership to his son Edsel Ford before he died, but Edsel sadly died before Henry Ford. The Ford company's ownership was given to Ford's grandson, Henry Ford II.
Three Graphics:
How do computers solve complex problems?
Answer:
Computers solve complex problems by coding
Explanation:
I hope this helps
4. Describe a report that a company might want to create and run on a regular basis. (1-3
sentences. 3.0 points)
Answer:
A report,.. hmm.. maybe about their company.=
A report that they would like people to see. One that says who they are. Also, what they do there, and why.
Explanation:
Spreadsheet software is often utilized throughout database applications. A further explanation is provided below.
Company reportSince there are several positions available, such as sales manager or human resources manager. It's incredibly beneficial to save marketing as well as customer data throughout a spreadsheet since it allows you to establish a database as well as evaluate current sales.There seems to be a wealth of tools available to assist consumers throughout studying databases within spreadsheets.
Find out more information about the company report here:
https://brainly.com/question/2870954
6. A rental car agency classifies the vehicles it rents into four categories: compact, midsize, full-size, and sport utility. The agency wants to record the following data for all vehicles: Vehicle_ID, Model, Year, and Color. There are no unique attributes for any of the four classes of vehicle. The entity type vehicle has a relationship (named Rents) with a customer entity type. None of the four vehicle classes has a unique relationship with an entity type. Would you consider creating a class/subclass relationship
Answer:
there are no possibilities
Explanation:
A class / subclass relatonship is not going to be possible here.
This is because we have these four caegories namely
1. compact,
2. midsize,
3. full-size, and
4. sport utility
These four categories have no real unique relationship or attributes with an entity type. A minimum of a supertype has atleast one subtype as well as following the total specialization situation.
Which of these situations would benefit from the AutoRecover feature? Check all that apply.
You clicked Don't Save when you closed a file but later realized you did want that file after all.
You decided you wanted to rename a folder, but you could not remember what it was called.
Your computer crashed while bu were working on a file.
Your friend wants you to e-mail her a file.
Answer: Your friend wants you to email her.
Explanation:
Answer:
Its 1 and 3 on edge 2021
Explanation:
You took your economic stimulus money, bought a used cargo van, and started the AAA Delivery Service. You decided you wanted to stay local so you were only interested in local deliveries, or deliveries not too far away.
Please answer
It is a computer programming
Answer: You find a AAA office and apply telling them you only accept local or nearby services.
Explanation:
Read these sentences from the passage:
“The TV and the glasses work together. When the TV flashes the image meant for the right eye, the right lens is clear and the left lens is dark.
Which of the following describes the relationship between the first and second sentence?
Answer
It is B
Explanation:
Answer:
It's giving further information
Explanation:
The cutting tool that has a zig zag edge is called a?
Not only did 1 in 4 teenagers experience online abuse, but how many are exposed to it
Answer: lots of teens will get this from cyber bullying and some people will mostly expeirience it because they are not as popular as others
Explanation:
9% of U.S. teens have been bullied or harassed online, and a similar share says it's a major problem for people their age. At the same time, teens mostly think teachers, social media companies and politicians are failing at addressing this issue.
When artists have a successful career, there is sometimes the need to collect all their works in an anthology album. Given main() and a base Album class, define a derived class called BoxSet. Within the derived Album class, define a printInfo() method that overrides the Album class' printInfo() method by printing not only the title, author, publisher, and publication date, but also whether it is the complete works, and number of discs.
Ex. If the input is:
Master of Puppets
Metallica
Elektra
1986
The Complete Studio Albums
Creedence Clearwater Revival
Fantasy
27 Oct 2014
true
7
the output is:
Album Information:
Album Title: Master of Puppets
Author: Metallica
Publisher: Elektra
Publication Date: 1986
Album Information:
Album Title: The Complete Studio Albums
Author: Creedence Clearwater Revival
Publisher: Fantasy
Publication Date: 27 Oct 2014
Is Complete Works? true
Number of Discs: 7
AlbumInformation.java
import java.util.Scanner;
public class AlbumInformation {
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
Album myAlbum = new Album();
BoxSet myBoxSet = new BoxSet();
String title, author, publisher, publicationDate;
String bTitle, bAuthor, bPublisher, bPublicationDate;
boolean isCompleteWorks;
int numDiscs;
title = scnr.nextLine();
author = scnr.nextLine();
publisher = scnr.nextLine();
publicationDate = scnr.nextLine();
bTitle = scnr.nextLine();
bAuthor = scnr.nextLine();
bPublisher = scnr.nextLine();
bPublicationDate = scnr.nextLine();
isCompleteWorks = scnr.nextBoolean();
numDiscs = scnr.nextInt();
myAlbum.setTitle(title);
myAlbum.setAuthor(author);
myAlbum.setPublisher(publisher);
myAlbum.setPublicationDate(publicationDate);
myAlbum.printInfo();
myBoxSet.setTitle(bTitle);
myBoxSet.setAuthor(bAuthor);
myBoxSet.setPublisher(bPublisher);
myBoxSet.setPublicationDate(bPublicationDate);
myBoxSet.setIsCompleteWorks(isCompleteWorks);
myBoxSet.setNumDiscs(numDiscs);
myBoxSet.printInfo();
}
}
Album.java
public class Album {
protected String title;
protected String author;
protected String publisher;
protected String publicationDate;
public void setTitle(String userTitle) {
title = userTitle;
}
public String getTitle() {
return title;
}
public void setAuthor(String userAuthor) {
author = userAuthor;
}
public String getAuthor(){
return author;
}
public void setPublisher(String userPublisher) {
publisher = userPublisher;
}
public String getPublisher() {
return publisher;
}
public void setPublicationDate(String userPublicationDate) {
publicationDate = userPublicationDate;
}
public String getPublicationDate() {
return publicationDate;
}
public void printInfo() {
System.out.println("Album Information: ");
System.out.println(" Album Title: " + title);
System.out.println(" Author: " + author);
System.out.println(" Publisher: " + publisher);
System.out.println(" Publication Date: " + publicationDate);
}
}
BosSet.java
public class BoxSet extends Album {
// TODO: Declare private fields: isCompleteWorks, numDiscs
// TODO: Define mutator methods -
// setIsCompleteWorks(), setNumDiscs()
// TODO: Define accessor methods -
// getIsCompleteWorks(), getNumDiscs()
// TODO: Define a printInfo() method that overrides
// the printInfo in Album class
}
Answer:
Answered below
Explanation:
public class BoxSet extends Album{
private boolean isCompleteWork;
private int numDiscs;
public void setIsCompleteWorks( boolean cw){isCompleteWorks = cw;
}
public boolean getCompleteWorks(){
return isCompleteWorks;
}
public void setNumDiscs(int discs){
numDiscs = discs;
}
public int getNumDiscs(){
return numDiscs;
}
public void printInfo(){
super.printInfo();
System.out.print(isCompleteWorks);
System.out.print(numDiscs);
}
}
Fill in the blank with the correct response.
Your Java class should be given the same name as your Java
.
Answer:
program
Explanation: