The hierarchy chart and the logic for a program needed by Hometown Bank are attached.
What is a hierarchy chart?The relationship between different modules or systems in an organization is depicted graphically using a hierarchy chart. A hierarchy chart is a common representation of an organizational structure in programming.
The hierarchy chart, commonly referred to as a structure chart, illustrates the connections between different modules. It gets its name from the fact that it's frequently used to illustrate how a firm is organized (or structured).
The hierarchy chart lacks the repetition or selection logic that genuine algorithms (flowcharts or pseudo-code) require.
Learn more about program on:
https://brainly.com/question/1538272
#SPJ1
A manufacturing company produces products. The following product information is stored: product name, product ID and quantity on hand. These products are made up of many components. Each component can be supplied by one or more suppliers. The following component information is kept: component ID, name, description, suppliers who supply them, and products in which they are used. Create an ERD to show how you would track this information.Show entity names, primary keys, attributes for each entity, relationships between the entities and cardinality.
Assumptions:
A supplier can exist without providing components.
A component does not have to be associated with a supplier.
A component does not have to be associated with a product.
Not all components are used in products.
A product cannot exist without components
Required:
Analyze the above scenario and assumptions and create an ERD to show how you would track ali the above information.
I couldn't read all, it was too long.
Explanation:
Nah, I gave up
A database of manufacturing companies contains: Relational Database Schema ER Diagram
What is database?
Database is defined as an ordered grouping of data that has been arranged and is usually stored electronically in a computer system. They make it possible to manipulate and store data digitally. Databases make data administration easy. Computer databases are frequently used to collect and store data records or files comprising information such as sales transactions, customer information, financial data, and product information.
Choose the Entities for Your ERD. Each Entity Should Have Attributes. Explain the connections between the entities. Completion and saving of your ERD Initially, just one instance of each entity is needed. Usually used in pairs from each associated entity's point of view, define the relationship.
Thus, a database of manufacturing companies contains: Relational Database Schema ER Diagram.
To learn more about database, refer to the link below:
https://brainly.com/question/29412324
#SPJ2
Please help!
Which of the following statements provides the most accurate assessment of the current legal situation as it pertains to cyberbullying?
.
.
A- The current laws are adequate to deal with cyberbullying, but they are not being properly enforced.
The current laws are adequate to deal with cyberbullying, but they are not being properly enforced.
B- The current laws are not yet adequate to deal with cyberbullying, and the existing laws are difficult to enforce.
The current laws are not yet adequate to deal with cyberbullying, and the existing laws are difficult to enforce.
C- The current laws are more than adequate to deal with cyberbullying, and they are being fully enforced.
The current laws are more than adequate to deal with cyberbullying, and they are being fully enforced.
D- The current laws are not adequate to deal with cyberbullying, but the existing laws are plentiful and easy to enforce.
I need help please!!
Answer:
d is the answer
Write a 2 paragraph on an African American who has become successful in IT. Need help asap can’t think of anything
Answer:
wait you need 2 paragraphs on an african american that became sucessful in what? please clear this up so that i can help you
Explanation:
Mission statement base on shoes company ? Help me
Here are 2 examples:
- Bringing comfortable walking, running, biking, and adventuring to the world.
- Transforming the way you live your life, two soles at a time.
A mission statement should be focused on what a company is about at its core roots. What's the driver for why the company does what it does? Often it is related to why a company is relevant in its industry.
Keith is creating a database for his shop. Arrange the steps to create his database in the correct order.
Save the database.
Determine all field names.
Analyze the tables you require.
Define data types for fields.
Answer:
Analyze the tables you require.
Determine all field names.
Define data types for fields.
Save the database.
what are Net sources
Answer:
NET is a free, cross-platform, open-source developer platform.
Explanation:
because it is right and i just took the test
Enter a formula in cell C8 that divides the product of cells C5 through C7 by cell C4.
Answer: =(C5*C6*C7)/C4
A cloud is an example of
Answer:
1st one.
Explanation:
Ways information technology does not make us productive
Answer:
Although technology is moving the limits, its power is not always helpful.
Explanation:
Technology can make us very non-productive, as it takes time away from our most productive hours when we use our productive time to scroll social media.
Notifications can interrupt the concentration. It makes us lazy in the morning, when, instead of being productive, we are reading anything online.
It can impact our sleep, anxiety, and it may force us to spend time creating a false image of ourselves.
In which sections of your organizer should the outline be located?
The outline of a research proposal should be located in the Introduction section of your organizer.
Why should it be located here ?The outline of a research proposal should be located in the Introduction section of your organizer. The outline should provide a brief overview of the research problem, the research questions, the approach, the timeline, the budget, and the expected outcomes. The outline should be clear and concise, and it should be easy for the reader to follow.
The outline should be updated as the research proposal evolves. As you conduct more research, you may need to add or remove sections from the outline. You may also need to revise the outline to reflect changes in the project's scope, timeline, or budget.
Find out more on outline at https://brainly.com/question/4194581
#SPJ1
where do you think data mining by companies will take us in the coming years
In the near future, the practice of companies engaging in data mining is expected to greatly influence diverse facets of our daily existence.
What is data miningThere are several possible paths that data mining could lead us towards.
Businesses will sustain their use of data excavation techniques to obtain knowledge about each individual customer, leading to personalization and customization. This data will be utilized to tailor products, services, and advertising strategies to suit distinctive tastes and requirements.
Enhanced Decision-Making: Through the use of data mining, companies can gain valuable perspectives that enable them to make more knowledgeable decisions.
Learn more about data mining from
https://brainly.com/question/2596411
#SPJ1
Assignment Summary
For this assignment, you will follow detailed instructions to format an Excel workbook that demonstrates your knowledge of how to manage an Excel spreadsheet and its properties.
To format an excel workbook means that you should know how to create a workbook, add data, delete, and edit, as wella s save and import from other sources.
How to manage an Excel SpreadsheetTo format an Excel Spreadsheet, you can first create a new workbook fromt he home page that says edit. To import data from other workbooks or the web, use the instruction on the ribbon that says to import data.
After inputting text, you could auto fill by using the blue tick under the cells. Left click to get more formatting options. Finally, when it is time to save, go to file and click save. Enter your preferred name and save.
Learn more about the Excel Workbook here:
https://brainly.com/question/28769162
#SPJ1
4.11 LAB: Number pattern Write a recursive function called print_num_pattern() to output the following number pattern. Given a positive integer as input (Ex: 12), subtract another positive integer (Ex: 3) continually until a negative value is reached, and then continually add the second integer until the first integer is again reached. For this lab, do not end output with a newline. Do not modify the given main program. Ex. If the input is:
The recursive pattern called print_num_pattern() is written below in codings in which a positive integer is given.
A recursive function is one that repeats or uses its own previous term to calculate subsequent terms, resulting in a series of terms. Typically, we learn about this function through the arithmetic-geometric sequence, which contains terms with a common difference.
Recursion is a technique for solving computer problems that involve writing a function that calls itself until your program achieves the desired outcome.
def print_num_pattern(num1,num2):
if (num1 <= 0):
print(num1, end = ' ')
return
print(num1, end = ' ')
print_num_pattern(num1 - num2, num2)
print(num1, end = ' ')
print_num_pattern(12,3)
Therefore, the codes are written above.
To learn more about recursive functions here:
brainly.com/question/23896867
#SPJ4
Which questions do you expect could be queried from a database of dinosaur exhibits at a museum?
Select all that apply.
0 What will the weather be like next week?
Which exhibits were on display in September 2010?
Which fossil has been displayed the most often in the last five years?
Which exhibit is the best?
Why did some patrons not enjoy the current exhibits as much as the last ones?
When was the Tyrannosaurus last on display?
Answer:
B C F
Explanation:
I couldn't find the answer so I did it myself and i actually got it right. It's easy to do but here is the answer anyways.:)
Answer:
B). Which exhibits were on display in September 2010?
C). Which fossil has been displayed the most often in the last five years?
F). When was the Tyrannosaurus last on display?
Explanation:
I just did the Part 1 on EDGE2022 and it's 200% correct!
Also, heart and rate if you found this answer helpful!! :) (P.S It makes me feel good to know I helped someone today!!)
Classify the characteristics as abstract classes or interfaces.
A. Uses the implements keyboard
B. Cannot have subclasses
C. Does not allow static and final variables
D. Can have subclasses
E. Uses the extends keyboard
F. Allows static and final variables
A microchip in a smart card stores the same data as the _____ on a payment card.
Answer: magnetic stripe
Explanation:
What formula is used to determine a company's customer retention rate?
1. (The number of new customers during the period + the number of customers at the end of that
period)/ the number of customers at the start of the period x 100
2 . (The number of new customers during the period - the number of customers at the end of that
period)/ the number of customers at the start of the period / 100
3. (The number of customers at the end of the period - the number of new customers acquired
during the period)/ the number of customers at the start of the period x 100
4. (The number of new customers during the period - the number of customers at the end of that
period) x the number of customers at the start of the period x 100
The formula which is used to determine a company's customer retention rate is: 3. (The number of customers at the end of the period - the number of new customers acquired during the period)/ the number of customers at the start of the period x 100.
What is customer retention rate?Customer retention rate can be defined as a measure of the number of customers that a business organization (company or firm) is able to successfully retain over a particular period of time and it is typically expressed as a percentage.
Mathematically, the customer retention rate of a business organization (company or firm) can be calculated by using this formula:
CRR = [(CE - CN)/CS] × 100
Where:
CRR represents customer retention rate of a company.CE represents the number of customers at the end of the period.CN represents the number of new customers acquired during the period.CS represents the number of customers at the start of the period.In conclusion, we can reasonably infer and logically deduce that the customer retention rate of a company simply refers to the percentage of existing customers that a business organization (company or firm) is able to retain after a given period of time.
Read more on customer retention rate here: https://brainly.com/question/26675157
#SPJ1
Select the correct answer from each drop-down menu.
Which two components help input data in a computer and select options from the screen, respectively?
✓inputs data into computers in the form of text, numbers, and commands. However, a
commands from the screen.
A
Reset
Next
✓selects options and
Which two components help input data in a computer and select options from the screen, respectively?
✓ Keyboard inputs data into computers in the form of text, numbers, and commands. However, a
✓ Mouse selects options and commands from the screen.
A
Reset
Next
To know more about input data refer here
https://brainly.com/question/30256586#
#SPJ11
what is the entity relationship model?
USB is _____ memory device. a. Temporary b. primary c. main d. secondary
Answer:
d secondary
Explanation:
Differentiate between ICT and ICTs
ICT refers to the field of information and communication technologies as a whole, while ICTs refer to the individual technologies within that field such as computers, smartphones, and the internet.
What is internet?
The internet is a global network of interconnected computers and servers that communicate with each other using standard communication protocols, allowing people to access and share information and communicate with each other across geographical distances.
ICT stands for Information and Communication Technology, which is a term used to describe the combination of technologies used to manage and communicate information.
ICTs, on the other hand, stands for Information and Communication Technologies, which refers to the specific devices, tools, and technologies used for communication and information management, such as computers, smartphones, the internet, and various software and applications.
In summary, ICT is a broader term that encompasses various technologies used for managing and communicating information, while ICTs are specific technologies that fall under the ICT umbrella.
To know more about software visit:
brainly.com/question/1022352
#SPJ1
Consider the following C program: void fun(void) { int a, b, c; /* definition 1 */ ... while (...) { int b, c, d; /* definition 2 */ ... <------------------ 1 while (...) { int c, d, e; /* definition 3 */ ... <-------------- 2 } ... <------------------ 3 }... <---------------------- 4 } For each of the four marked points in this function, list each visible variable, along with the number of the definition statement that defines it.
Answer:
Check the explanation
Explanation:
1.
void func(void){
int a,b,c; /*definition 1*/
/////* a,b,c for definition 1 are visible */
//// d, e are not visible
while(...){
int b, c, d; /* definition 2*/
////*
a from definition 1 is visible
b, c, d from definition 2 are visible
*/ ///
while(...){
int c, d, e;/* definition 3*/
////*
a from definition 1 is visible
b from definition 2 is visible
c, d, e from definition 3 are visible
*/ ///
}
////*
a from definition 1 is visible
b, c, d from definition 2 are visible
e not visible
*////
}
/////* a,b,c for definition 1 are visible */
///// d, e are not visible
}
Write a program that will make a copy of a text file, line by line. Read the name of the existing file and name of the new file(copy) from the keyboard. Use the methods of the class File to test whether the original file exists and can be read. If not, display an error message and abort the program. Similarly, see whether the name of the new file already exists. If so display a warning message and allow the user to either abort the program, overwrite the file, or enter a new name for the file.
Answer:
To find the text file, use a full path name when entering the file name, such as
C:\textfiles\StateCapitals.txt
You can save typing in the full path name by putting the file in the project directory, such as in
C:\Users\me\Documents\NetBeansProjects\Project4
Answer:
/*
** Lab 11: Write Program that will make a copy of text file
line by line. Use these steps.
** Author: .......
** Date: 04/24/2022
*/
import java.io.*;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.Scanner;
class lab11 {
public static void main(String[] args)
{
try {
// Read Existing file name
File readInputFile = new File("textInput.txt");
// Read Content of the Existing file
String content = Files.readString(Paths.get("textInput.txt"));
// Check if Existing file can read or exist
File inputExits = new File("textInput.txt");
// check if expecting new file exist
File outputExists = new File("textOutput.txt");
// nested scanner in try block
try (Scanner keyboard = new Scanner(System.in)) {
// create space for console
System.out.println("");
// validate if the exisitng file already there
if(inputExits.exists() && !inputExits.isDirectory() && inputExits.canRead()) {
System.out.println("Original File Read...");
}else{
// throw error because existing file is not there
throw new IOException("File does not exists!");
}
// read the existings file name
System.out.println("Existing file name: " + readInputFile.toString());
// check if the expecting new file already exist
if(!outputExists.exists() && !outputExists.isDirectory()){
// if not already exist create new one right away
FileWriter output = new FileWriter("textOutput.txt");
// write all the content from existing file to the new expecting file
for (int i = 0; i < content.length(); i++){
output.write(content.charAt(i));
}
System.out.print("Create new file now: textOutput.txt");
// close the filewriter
output.close();
}else if(outputExists.exists()) {
// expecting file name already exists
System.out.println("");
System.out.println("This new file name is already exists!");
System.out.println("Press 1 to end the program");
System.out.println("Press 2 to overwrite the existing file");
System.out.println("Press 3 to enter the new name for the file");
// get the conditions from keyboard
int condition = keyboard.nextInt();
if(condition == 1){
// end program right away for condition from keyboard === 1
System.out.println("End Program!");
}
if(condition == 2 ){
// overwrite by recreate the filewriter
FileWriter overwriteWithNewText = new FileWriter("textOutput.txt", false);
// write the content from existing file to the new file
for (int i = 0; i < content.length(); i++){
overwriteWithNewText.write(content.charAt(i));
}
overwriteWithNewText.close();
}
if(condition == 3){
// create the new file with the new name from console
String newName = keyboard.next();
FileWriter newFileName = new FileWriter(newName+".txt");
// write the exisitng content to the new file
for (int i = 0; i < content.length(); i++){
newFileName.write(content.charAt(i));
}
newFileName.close();
}
}
}
}
catch (IOException e) {
// catch error if all above had problems
System.out.println(
e);
}
}
}
Explanation:
Hi, here is the sample code, give it a tweak and change because there was repetitive stuff I create for example the FileWriter for each condition if the new file name already exists. Try to create a global variable and use it through multiple places, but here since I am a newbie, I would prefer this logic to be able to see how my code work line by line.
Not Complete Code for the Project, But to give you a general Idea on How to Start
8. If you, or someone you know is a victim of cyber-bullying what should you do? not say a word ,write mean things back ,report it ignore it
Answer:
report it
Explanation:
Answer:
I would not ignore it and do something about it but since that is not a option I would pick report it ignore it
Explanation:
That would be the right thing to do because If you do not say a word you will not change nothing and you should not just stay there and do nothing about it and if you write mean things back that is not going to get you anywhere because then you would also be cyber-bullying and sometimes people only bully you because they have problems and they can not fix it or sometimes they just do it because they think it is fun but it is not because you could hurt the person that you are bullying therefor I would not do none but the best choice is the last one. Hope it helps you!
hurry asap it’s times
Tulio is editing his video. He used the Trim Video tab. Tulio most likely changed the
a/ side of the video
b) timing of the video
c) length of the video
d) design of the video
Answer:
C and B.
Explanation:
What is the importance of using Onedrive in Windows 10 and how knowledge of it will have an impact in today's workplace?
The importance of one drive in windows 10 is that it helps the user to synchronize files in their computer.
Onedrive is a cloud storage system that is useful for the storage of files in a secured manner. A person can easily access their files whenever they want to.
In todays workplace a knowledge of onedrive has a great impact because
Onedrive offers an unlimited access to files whenever they are neededThe files can be available and accessed from anywhereIt helps with the organization of files in the work place.One drive allows for this to be done even when offline. When online, there is an automatic synchronization of the made changes.
Read more at https://brainly.com/question/17163678?referrer=searchResults
Learn more:
brainly.com/question/24369537
we showed that the class of regular languages is closed under complementation, we took a dfa and swapped the accept and non-accept states. does the same construction work for an nfa? if it does, prove it. if it doesn't, give a counter example
Indeed, an NFA can use the same construction. By simply switching the accepted & non-accepting states of an NFA, the complement can be created.
By NFA, what do you mean?Non-deterministic finite automata are referred to as NFA. When contrasted to DFA for a certain regular language, an NFA is simpler to build. When there are numerous paths for a particular input from of the present state to the state that follows, the finite automaton are referred to as NFAs. Although every NFA can be converted to a DFA, every NFA is not a DFA.
Why switch from NFA to DFA?When a particular input is applied to the present state in NFA, the machine switches between numerous states. On a specific input symbol, it may make 0 moves, 1 moves, or many moves. In contrast, when a particular input is provided to the present state in DFA, the machine only moves to one state.
To know more about NFA visit:
https://brainly.com/question/13105395
#SPJ4
9.7 Lab 09 - Part 2: Calculate Product
For this lab, write a function calc_Prod, that takes an integer (n) as its parameter and calculates/prints the product 1•2•…•n. Print both the formula and the product in the function.
Your main code should accept a positive integer and call the function with that integer. The function should do everything else.
For example: If the input is:
Using the knowledge in computational language in python it is possible to write a code that calculate Product for this lab, write a function calc_Prod, that takes an integer (n) as its parameter and calculates/prints the product
Writting the code:def CalculateProduct(n):
product = 1
result = ""
for i in range (1,n+1):
product*=i
result+=str(i)
if i<n:
result+="*"
print("{}={}".format(result,product))
if __name__ == '__main__':
n = int(input())
CalculateProduct(n)
See more about python at brainly.com/question/18502436
#SPJ1
Your friend Alicia says to you, “It took me so long to just write my resume. I can’t imagine tailoring it each time I apply for a job. I don’t think I’m going to do that.” How would you respond to Alicia? Explain.
Since my friend said “It took me so long to just write my resume. I can’t imagine tailoring it each time I apply for a job. I will respond to Alicia that it is very easy that it does not have to be hard and there are a lot of resume template that are online that can help her to create a task free resume.
What is a resume builder?A resume builder is seen as a form of online app or kind of software that helps to provides a lot of people with interactive forms as well as templates for creating a resume quickly and very easily.
There is the use of Zety Resume Maker as an example that helps to offers tips as well as suggestions to help you make each resume section fast.
Note that the Resume Builder often helps to formats your documents in an automatic way every time you make any change.
Learn more about resume template from
https://brainly.com/question/14218463
#SPJ1