The open-ended activity requires you to develop a program on a topic that interests you. Requirements Formulate a question you would like to answer. Identify a data set that will help determine the answer to your question. Create a class to model one entry of the identified data set. Write a program with a main method to read the data from the identified data set into your program. Utilize an array or ArrayList and the created class to store data that has been read. Write code to process the data and determine an answer to the identified question. Review the provided scoring guidelines so that you understand what you will be expected to explain once you are done completing your program. Tip: When traversing multiple data structures simultaneously, structures might not be the same size and loop bounds must be adjusted to make sure that only locations that are valid in all structures are accessed

Answers

Answer 1

Answer:

Create, and submit a novel Java program (individually or with one; Question: This open-ended activity requires you to develop a program on a topic that interests you

Explanation:

Create, and submit a novel Java program (individually or with one; Question: This open-ended activity requires you to develop a program on a topic that interests you


Related Questions

Describe the role of a distributed file system in a job execution environment such as MapReduce in a large-scale cloud system. g

Answers

Answer:

allows users of physically distributed systems to share their data and resources

Explanation:

The main purpose of the Distributed File System (DFS) is to allows users of physically distributed systems to share their data and resources

When you program in Scratch, what are two things you can do with a sprite?
A. Drag it to the scripts area
B. Add it to another variable
C. Change the costume on it
D. Make it move
SUBM

Answers

Explanation:

You can change the costume and drag it to the script area

You can change the costume and drag it to the script area.

What is Script area?

Visual programming is used in Scratch to make your own games, tales, and animations. A script is a group of instructions used to program in Scratch. It is a group of interconnected blocks stacked on top of one another.

As users choose to engage with sprites, the blocks of instructions are thoughtfully arranged to carry out a certain purpose. It's a good idea to include script comments that explain what is happening.

A sprite in Scratch is an actor, the main character of the program, or a graphic component that carries out all the tasks specified in the script.

Therefore, You can change the costume and drag it to the script area.

To learn more about Script area, refer to the link:

https://brainly.com/question/6975460

#SPJ7

Write three different ways to declare and instantiate a String object called “myString” and containing “abc”


For the Eclipse Java IDE

Answers

The ways in which one can declare and instantiate a String object called “myString” and containing “abc” are given below.

What is a String Object in Programming?

A string is a predefined class that is provided by so many programming languages, including C, C++, Java, Erlang, etc.

A string is a collection of characters that include spaces. It can be described as a one-dimensional array of characters terminated by the NULL character ('0').

The ways in which one can decalre and instantiate a string object defined above are:

A) String myString = "abc";

B) String myString = new String("abc");

C) char temp myString =  char temp ("abc");

Learn more about String Objects at;
https://brainly.com/question/14743310
#SPJ1

From the PC or Laptop, open a web browser and navigate to cisco. Srv. Open the link titled A small page. What is the message displayed on the page

Answers

The message displayed on the page is "Hello, world". Check more about messages below.

What is computer message?

In computer science, a message is regarded as a data that is in bit size which is often transmitted from sender, to its recipient.

Conclusively, Note that when you press from the PC or Laptop, and then open a web browser and navigate to cisco. Srv. by Opening the link titled A small page, the message that would be shown on the page  is "Hello, world".

Learn more about web browser from

https://brainly.com/question/15243054

#SPJ1

Which of the following should you choose for the tables?
A one table called Populations and another table called Cities
B one table called Primary Industry, a second table called States, and a third table called Cities
C one table called States and another table called Cities

Answers

Answer:

A first table, population and cities

PLS HURRY 43 POINTS

Digital censorship uses automated, intelligent systems with big data storage to _____. Select 3 options.

surveil people’s digital behavior
promote access to information
manage the internet
limit access to digital information
provide efficient internet searches

Answers

Answer:

surveil people’s digital behavior

promote access to information

provide efficient internet searches

Explanation:

i just know things

What code will correctly create a hypertext link to a page named dogs.html. Assume the html page in which you are placing the code is in the same directory as the dogs.html page.

Answers

Links are specified in HTML using the <a>tag. A link or hyperlink could be a word, group of words, or image. Anything between the opening <a> tag and the closing </a>tag becomes the part of the link that the user sees and clicks in a browser. Here are some examples of the links: The hrefattribute specifies the target of the link. Its value can be a

Many who move to business-oriented information security were formerly__________ who were often involved in national security or cybersecurity .

Answers

Answer:

The information security function

Explanation:

Many who move to business-oriented information security were formerly_____ who were often involved in national security or cybersecurity . All of the above The information security function

Use the Image below to answer this question.
At your company, you need to have telephone conversations transmitted over the existing data network using VoIP. Your manager
directs you to complete this project as follows:
1. Use the phone's ports to daisy chain the PCs to the rest of the network.
2. Do not use the regular power outlets to power the phones.
The list on the left displays several cable types and devices that may be required in this scenario. Drag each cable type or device on
the left to the corresponding location identified in the image.
items on the left may be used more than once.

Answers

Since the image is not given, answer will be subjective. Check more below.

What is VoIP communication?

The Voice over Internet Protocol (VoIP), is known to be a kind of a technology that helps a person to be able to make voice calls.

Note that this can be done through the use of a broadband Internet connection and one do not need to use  any analog  phone line.

Learn more about VoIP  from

https://brainly.com/question/14255125

SPJ1

Which tab contains the Spell Check feature?

1. View
2. Review
3. Page Layout
4. Insert

Answers

Answer:

In excel, the review tab, answer no 2

The tab that contains the spell check feature is 2. Review

Discussion Topic
Think of a situation in the not-too-distant future in which an autonomous robot, for example a factory manufacturing robot or a self-driving car, through some unfortunate coincidental combination of circumstances accidentally causes a human serious injury or even death. In a case such as this, who should be held responsible for the crime and damages? Can the developer or team of developers who wrote the code justifiably be held responsible? Is it simply considered a mechanical malfunction and nobody is held responsible, but the machine is destroyed?

Answers

I believe that the developer or team of developers who wrote the code should not be held responsible but the company that gave a go ahead for it use should be the one held accountable.

What is autonomous driving technology?

A self-driving car is known to be called an autonomous car or simply say a driverless car as it is known to be a  vehicle that uses both sensors, cameras, and artificial intelligence (AI) in its operations.

Note that in the above scenario,  I believe that the developer or team of developers who wrote the code should not be held responsible but the company that gave a go ahead for it use should be the one held accountable.

Learn more about developer from

https://brainly.com/question/11352260

#SPJ1

help please will give brainliest!!!!!!!!!

Answers

Answer:

Take a String.

Convert it into array of characters.

Apply for loop till length of char array.

Using isDigit() method we can check the digits in string.

If isDigit() will return true then print that index value.

That digit is in char form. ...

Using sum variable, we will sum it.

Explanation:

Suppose we have the list: list = [1,2,3,4,5,6]

(Python) What would the list look like after the following code: list[3] = 10

Answers

1, 2, 3, 10, 5, 6 is the answer

7. licenses show people how content creators would like their work to be used.
o a. intellectual property
o b. phishing
o c. spamming
o d. creative commons

Answers

Intellectual property licences outline the intended uses of content providers' creations.

Which licences make it clear how the creators of content want their work to be used?

Everyone, from small businesses to major institutions, now has a standardised approach to offer the public permission to use their creative works in accordance with copyright laws thanks to Creative Commons licences.

Which kind of licence enables content producers to allow for the reuse of their work while maintaining their copyright?

By giving specific permissions to others to share, utilise, and/or build upon their creative works, Creative Commons copyright licences enable authors to maintain their ownership of their intellectual property. Creators assign them to their own works. The purpose of CC licences is to allow for the adaptation, sharing, and reuse of educational resources.

To know more about content visit:-

https://brainly.com/question/28589374

#SPJ1

why computer is called versatile memory? ​

Answers

Answer:

Versatility: The capacity of the computer of performing more than one task at the same time is called the versatility of a computer. Versatility means the capacity to perform different types of work completely. Storage: The computer has a mass storage section where we can store a large volume of data for future use.

Explanation:

A __________ is when an adversary attempts to achieve user authentication without access to the remote host or to the intervening communications path.

Answers

Answer:

client attack

Explanation:

Q:

A __________ is when an adversary attempts to achieve user authentication without access to the remote host or to the intervening communications path.

A:

client attack

Which are good reasons to use a database? Select all that apply.
A to find data in a large dataset
B to perform calculations with data
C to store large datasets
D to find answers to questions about the data

Answers

Databases are used to find data in large sets, store large informational sets, and answer the questions that are present in the data set. Thus, options a, c, and d are correct.

What is a database?

A database is a systematized compilation of the information and the data set that is stored physically on electronic devices like a computer system. DBMS controls the databases.

Databases can be based on the hierarchy, or network, or can be object-oriented. They store the electronic form of the data set in an organized manner.

Therefore, databases stores data sets.

Learn more about the database here:

https://brainly.com/question/14101897

#SPJ1

A person wants to transmit an audio file from a device to a second device. Which of the following scenarios best demonstrates the use of lossless compression of the original file?
A. A device compresses the audio file before transmitting it to a second device. The second device restores the compressed file to its original version before playing it.
B. A device compresses the audio file by removing details that are not easily perceived by the human ear. The compressed file is transmitted to a second device, which plays it.
C. A device transmits the original audio file to a second device. The second device removes metadata from the file before playing it.
D. A device transmits the original audio file to a second device. The second device plays the transmitted file as is.

Answers

The answer is that A device compresses the audio file before transmitting it to a second device. The second device restores the compressed file to its original version.

What is an compresses an audio file?

To compresses an  audio file is a term that connote the act of making an audio file to be smaller in size so as to fit into a given device or app.

Note that the option that best demonstrates the use of lossless compression of the original file is that A device compresses the audio file before transmitting it to a second device. The second device restores the compressed file to its original version before playing it and as such, option A is correct.

Learn more about audio file from

https://brainly.com/question/2561725

#SPJ1

when you save a presentation with a .potx file extension, which type of powerpoint file is created?

Answers

A file with the POTX file extension is a Microsoft PowerPoint Open XML Template file used to maintain the same layout, text, styles, and formatting across multiple PPTX files.

When you save a presentation with a .potx file extension, the type of PowerPoint file that is created is known as .PPTX file.

What do you mean by Presentation?

The presentation may be defined as an activity in which someone expresses, describes, or explains something to a group of people in order to explore the given facts and understandings. The person who presents is known as the speaker, while the person who listens is known as the audience.

A POTX file is a presentation template created by PowerPoint, a program that significantly allows users in order to create slide show presentations. It contains default styles, text, layout, and formatting. POTX files are utilized in order to create multiple .PPTX files with the same formatting.

Therefore, when you save a presentation with a .potx file extension, the type of PowerPoint file that is created is known as .PPTX file.

To learn more about Presentation, refer to the link:

https://brainly.com/question/24653274

#SPJ5

What technology has seen the largest increase in venture funding for products and services related to well-being and care delivery?.

Answers

The technology has seen the largest increase in venture funding for products and services related to well-being and care delivery is Tech startups.

Why do venture capitalists invest in the use of technology?

Venture capital funds are known to be firms or people that are said to often invest in things or tech that can bring a lot of  substantial returns on any of their invested capital.

Due to the above, Tech startups are known to have a special characteristics that make them a good  technology investment for venture capitalists.

Learn more about technology from

https://brainly.com/question/25110079

#SPJ1

Font-size property changes
O Color
O Alignment
O Font
Size of font

Answers

O font or Size of the font

PLEASE HELP WILL MARK BRAINLIEST
A programmer ensures the user inputs valid data by setting

algorithms
boundaries
data
output

Answers

I believe it’s boundaries
boundaries probably but i could be wrong

Which pdu is processed when a host computer is de-encapsulating a message at the transport layer of the tcp/ip model?.

Answers

The PDU that is processed when a host computer is de-encapsulating a message at the transport layer of the tcp/ip model is segment.

What is this PDU about?

Note that in the transport layer, a host computer is said to often de-encapsulate  what we call a segment so that they can be able to put back data to an acceptable or given format through the use of the application layer protocol that belongs to the TCP/IP model.

Therefore, The PDU that is processed when a host computer is de-encapsulating a message at the transport layer of the tcp/ip model is segment as it is the right thing to do.

Learn more about host computer from

https://brainly.com/question/553980

A cloud computing service model whereby one or more computing environments suitable for use in application development and testing are provided as a turnkey, on-demand service. is known as _____.

Answers

A cloud computing service model whereby one or more computing environments suitable for use in application development and testing are provided as a turnkey, on-demand service. is known software-as-a-Service (SaaS).

What is Cloud computing?

Cloud computing refers to programs and offerings that run on an allotted community the usage of virtualized sources and accessed via way of means of not unusual place Internet protocols and networking standards.

Software-as-a-Service (SaaS) is a version of carrier shipping wherein one or greater programs and the computational sources to run them are furnished to be used on call for as a turnkey carrier. Its principal cause is to lessen the overall fee of hardware and software program development, maintenance, and operations.

Read more about the cloud computing service :

https://brainly.com/question/19057393

#SPJ1

What’s unique about New Cashierless stores?

Answers

There’s no cashiers, meaning if you need help you got to figure it out alone.

On the multi-floor office, the staff is deploying multiple switches and there must be multiple broadcast domains. The Layer 2 switch with a single broadcast domain requires more bandwidth as more hosts are connecting to it. How can these switches be set up to accommodate the network architecture

Answers

Broadcast domains are the part of the network sharing system that shares the two layers of the segment. To accommodate the network architecture multiple VLANs should be used.

What are VLANs?

Virtual local area networks (VLANs) are the subnetwork type that combines the local area networks together. These are used by the network administrators to limit access with the help of the workstation division.

The VLANs are used to eliminate the issue of collision and can connect hosts with different switches to allow the sharing of the same broadcast domain.

Therefore, VLAN with multiple domains must be used.

Learn more about VLANs here:

https://brainly.com/question/14530025

#SPJ1

solve the expression 4*3/ (5+2) 7%4

Answers

Answer:

36/7

Explanation:

First, multiply 4 and 3 then add 5 and 2 the answer you will get is 12/7, and then calculate 7%4 answers you will get is 3 now multiply 12/7 and 3 your answer will be 36/7

What is the point of comments in code? Discuss at least two possible uses of code, including specific examples of what a comment might “look like.”

Answers

Answer:

Better collabaration and helping find bugs.

Explanation:

When working with a group of people, comments help the other person understand what you are doing.

Ex. //cat sprite

Also, it helps find bugs. For example, if the cat sprite is not working that means you know it has something to do with that peice of code.

Can yall help me pls

Answers

Answer:

A.cc the answer

Explanation:

if I wrong Im sorry

To create a datetime object for the current date and time, you can use theGroup of answer choicestoday() method of the date classtoday() method of the datetime classnow() method of the date classnow() method of the datetime class

Answers

var theDate = new DateTime (DateTime.Today.Year, DateTime.Today.Month, DateTime.Today.Day, hours, minute, second);

Other Questions
How many moles of sulfur dioxide are produced with 6.0 mols of carbon dioxide? What is meaning of the word loathsome as it is used in paragraph 8? Group of answer choices aggravating adorable loving repulsive Write and solve an addition or subtraction equation to find the missing angle measure I will mark brainliest Plsss I need it urgently!!! Make a short story 750-1000 words about anything Lan make 60 cakes. he gives 1/4 of the cakes to Helen. he gives 20 of the 60 cakes to sue. what fraction of the 60 cakes does he have left? this is ....... expensive place to live in(a,an,the) Negative externalities that might occur in south african economy due to russian-ukrine war Chuck brought $40.00 to the state fair. He bought a burger, a souvenir, and a pass. The burger was 1 /4 as much as the souvenir, and the souvenir cost 2 /3 the cost of the pass. Chuck had $1.50 left over after buying these items. What is the third and final emergency action step?. What tool most likely made the most crucial contribution to the system of apartheid Rewrite the following equation as a function of x 25x^4 - 625y - 500 = 0 Can i please get help? I'm getting no answers. Ito adds 10 liters of water to an empty container, making it 60% full. If Ignacio adds 6 more liters of water, the container will be 80% full. What is the volume of the container? What is small p value and large p value indicates for According to the histogram, how many shipments had more than 20 light bulbs broken? A) 4 B) 6 C) 7 D) 12 What is the TOTAL NUMBER ofinnocent people killed during theholocaust?A. 5 millionB. 6 millionC. 9 millionD. 11 million what is the greatest common factor of 25,65 and 100 . A parcel delivery service lowered its A parcel delivery service lowered its prices and finds that it has delivered twice as many parcels this year as it did last year. To illustrate this fact, the manager draws a graph as shown below. The side length of the "parcel" on the right is twice the side length of the "parcel" on the left. Is this graph misleading? Yes, the cube on the right is more than twice as large as the cube on the left. No, the parcels sold can fit into the cubes displayed. Yes, cubes can never be used fairly to depict data. No, the proportions of the two cubes are accurate.prices and finds that it has delivered twice as many parcels this year as it did last year. To illustrate this fact, the manager draws a graph as shown below. The side length of the "parcel" on the right is twice the side length of the "parcel" on the left. Is this graph misleading? Yes, the cube on the right is more than twice as large as the cube on the left. No, the parcels sold can fit into the cubes displayed. Yes, cubes can never be used fairly to depict data. No, the proportions of the two cubes are accurate. What element do all ancient seafaring societies have in common? a. they used the stars for navigation. b. they were all located near the pacific ocean. c. they conquered every new location they found. d. they developed their own version of the compass.