spanning tree protocol homework. require cisco packet tracer
Summative Assessment Lab Reflection
- I took a picture of the labs that we have for this week.
- Compare and contrast the vulnerability scanning tools you used in the labs. Are there scenarios in which a scanning tool would be advantageous to use over others?
- When assessing the security risks of a network, a step that is important but sometimes overlooked is the gathering of organizational data. How can knowledge of organizational data give you leverage over network vulnerabilities? Name two types of organizational data and explain how a hacker might be able to exploit them.
- Cite sources to support your assignment.
Format your citations according to APA guidelines.
Kindergarten Management Database
Part 1 – Project Proposal – due October 20th @ 11:59 pm:
Report 1 Contents (1-2 pages):
• What data will your database store? You can list a preliminary set of entities/attributes that will
be in the database, no relationships required at this time. Keep in mind that it is likely that your
entities/attributes will be incomplete and will be changed later. The more time and effort you put
in it, the less time you need to spend modifying it later in the project!
• List 10 questions (Not SQL) that can be answered by querying the database (e.g., How many
students did not get the flu vaccine last year?)
communication and leadership
Well-written essay in a Microsoft Word document, no fewer than 250 words explaining: ( for Application system Engineer)
- How communication and leadership is incorporated into your job.
- What communication and leadership roles you have at your job.
- What you hope to learn and grow in your communication and leadership ability in your workplace
External Environment
Read Chapter 3 and view the required videos on PESTEL Analysis and the Five Forces Framework.Select one of the cases from Part 2 of the Thompson (2022) textbook to analyze the six components of the Macro-Environment and the Five Forces Model.For this assignment:
- Prepare a brief PESTEL Analysis for your selected case from Part 2 of our Thompson (2022) text. You must address all six elements.
- Prepare a brief Five Force Analysis as presented in our Thompson (2022) text for your selected case. Address all five forces.
NOTE this Requirement: The Standard & Poor NetAdvantage Database provided in the NEC Online Library is a required source (and will be extremely helpful). The Standard & Poor Database is located under the general Library database listing. Once you have accessed the Standard & Poor site, the tabs at the top allow you to click on companies or industries. If you choose industries, it then provides a box and drop-down menu showing the various industrial reports which are available. Access the relevant report, and then review the details in the report to support this assignment. The information is incredible relevant and provides a detailed analysis of the entire industry including a listing of the key companies in the industry. See Course Content tab for a 2020 document noting how to find this database.Submission Details:
- Your analysis must be driven by facts, research, and data.
- Your analysis should be between 1000 and 1500 words.
- Incorporate at least our course text and one non-course scholarly/peer reviewed source in your paper.
- Create Leve1, 2 and Level 3 APA headings for each portion of the analysis.
- All written assignments must include a coverage page, introductory and concluding paragraphs, reference page, double-spaced and proper in-text citations using APA guidelines.
References:
Professor feedback:
This should not be formatted as a question and answer document.
Submission Details:
- Your analysis should be 500 words or less.
- Incorporate a minimum of at least our course Thompson 2022 Text and one non-course scholarly/peer-reviewed sources in your paper to support your analysis.
- All written assignments must be formatted ini APA, and include a coverage page, introductory and concluding paragraphs, reference page, and proper in-text citations using APA guidelines.
Wk-5
Assignment 1:
Biometric System Evaluation
Learning Objectives and Outcomes
Ø Identify the correct advantages of each biometric method
Ø Identify the correct disadvantages of each biometric method
Assignment Requirements
Read the attached worksheet named “Biometric System Evaluation” and address the following:
Using what you have learned about the biometric method, identify the correct advantages and disadvantages of each listed biometric type.
Requirement:
· ****Separate word document for each assignment****
· Minimum 300-350 words. Cover sheet, abstract, graphs, and references do not count.
· Add reference separately for each assignment question.
· Strictly follow APA style. Length – 2 to 3 paragraphs.
· Sources: 2 References to Support your answer
· No plagiarized content please! Attach a plagiarized report.
· Check for spelling and grammar mistakes!
· $5 max. Please bid if you agree.
Assignment 2:
How data mining is useful in Financial Industry. What are its benefits and how data mining can help Financial Industry in future?
Requirement:
· ****Separate word document for each assignment****
· Minimum 350-400 words. Cover sheet, abstract, graphs, and references do not count.
· Add reference separately for each assignment question.
· Strictly follow APA style. Length – 2 to 3 paragraphs.
· Sources: 2 References to Support your answer
· No plagiarized content please! Attach a plagiarized report.
· Check for spelling and grammar mistakes!
· $5 max. Please bid if you agree.
Assignment 3:
Select any one data analytics tool from the below list. Provide the benefits and limitations of the tool.
Ø SAS FORECASTING
Ø Power BI
Ø Tableau
Ø TALEND
Ø PYTHON
Ø R PROGRAMMING / R-STUDIO
Ø DATAPINE
Please include the Data Analytic Vendor Name and URL. It will also be helpful to list the pricing and trial options.
Requirements:
· ****Separate word document for each assignment****
· Minimum 300-350 words. Cover sheet, abstract, graphs, and references do not count.
· Add reference separately for each assignment question.
· Strictly follow APA style. Length – 2 to 3 paragraphs.
· Sources: 2 References to Support your answer
· No plagiarized content please! Attach a plagiarized report.
· Check for spelling and grammar mistakes!
· $5 max. Please bid if you agree.
Assignment
This week’s journal articles focus on empowering leadership and effective collaboration in geographically dispersed teams, please answer the following questions:
- How do geographically dispersed teams collaborate effectively?
- Please find at least three tools on the market that teams can use to collaborate on a geographically dispersed team. Please note the pros and cons of each tool.
- Based on the research above, note which tool you would select if you were managing the geographically dispersed team and why.
PowerPoint Presentation
Please make a modern-looking POWERPOINT PRESENTATION BASED ON THE ATTACHED PAPER/DOCUMENT. Please use images, graphs, charts, etc…
Java
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package poker;
public class Card {
private int suit, value;
private String[] cardSuit = {“Spades”, “Diamonds”, “Hearts”, “Clubs”};
private String[] cardValue = { “2”, “3”, “4”, “5”,
“6”, “7”, “8”, “9”, “10”, “Joker”, “King”, “Queen”,”Ace”};
public Card(int cSuit, int cValue) {
if(cSuit<0||cSuit>3){
throw new IllegalArgumentException(“Suit int must be between 0 and 3”);
}
if(cValue<0||cValue>12){
throw new IllegalArgumentException(“value int must be between 0 and 12”);
}
suit = cSuit;
value = cValue;
}
public int getSuit(){
return suit;
}
public int getValue(){
return value;
}
public String toString() {
String cardInfo = cardValue[value] + ” of ” + cardSuit[suit];
return cardInfo;
}
public String getImage(){
return “/images/”+cardValue[value]+cardSuit[suit]+”.png”;
}
}
Stage 3: System Design Specification
The assignment instructions are in the attached file