The IEEE standard for CSMA/CD is

  

The boundary between OSI model layers is referred to as

The type of signal that is generated by altering the voltage magnitude of the signal up or down over time to create a unique discernable signal pattern is called.

The function that binds multiple network layer protocols with multiple data link layer protocols is called the.

The IEEE standard for CSMA/CD is

Fast ethernet uses category cable for maximum performance. 

The most common type of LLC service is…

Describe the purpose of a MAC address, where it is used, and a specific example of a specific address itself

What are the two primary signalling methods for networks? What are the main differences and where is one used versus the other?

Why does FDDI have counter-rotating rings?

Consider the following requirements of the library project

Consider the following requirements of the library project Students register new course(s) (open for the current semester) through a two steps process

Step 1. Student chooses course(s) (from the opened courses that she can register) and send them to the advisor for approval (Selected courses can not exceed 30 credits)Step2. Each advisor use the system to approve the selected course(s) for each student. (Just select and approve. Do not consider dropping course(s) or adding new ones) For these requirements answer the following questions1. Write down two separate uses cases (one for each step)-(Only success story scenario with rules will be enough) (10)2. Define System Sequence Diagrams (SSD) for each use case (SSD not Sequence diagram) (10)3. Define the domain model that will be used in design process. (10)4. Design each use case by defining a Sequence Diagram for each SSD event. Use GRASP patterns to assign responsibilities. (50)5. Implement use case defined for step 1. (30)Notes – Check SSD diagrams from your book. SSDs and Sequence Diagrams are different things. – You can use the Domain Model from your Phase 2 report. But new concept(s) may be necessary for the new requirements – For each responsibility assignment in the Sequence diagrams, write down the Grasp Pattern type (controller, İnfo Expert ext.) and shortly explain the choice – You will implement only 1 use case (defined for step 1) – There must be one to one mapping between design and implementation (same classes, methods and associations)

Risk Management Project part 1

  

Risk management is an important process for all organizations. This is particularly true in information systems, which provide critical support for organizational missions. The heart of risk management is a formal risk management plan. This project allows you to fulfill the role of an employee participating in the risk management process in a specific business situation.

Please find attached document for more information on assignment.

 Please see the attached requirements. 

Project Part 1: Risk Management Plan Outline and Research

For the first part of the assigned project, you will create a partial draft of the risk management plan. To  do so, follow these steps: 

  1. Research risk management plans.
  2. Create an outline for a basic risk management plan with anticipated section headings (as indicated in this numbered list). This plan will include a qualitative risk assessment, which is addressed later in the project.
  3. Write an introduction to the plan by explaining its purpose and importance.
  4. Define the scope and boundaries of the plan.
  5. Research and summarize compliance laws and regulations that pertain to the organization. Keep track of sources you use for citation purposes.
  6. Identify the key roles and responsibilities of individuals and departments within the organization as they pertain to risk management.
  7. Develop a proposed schedule for the risk management planning process.
  8. Create a draft risk management plan detailing the information above. Format the plan similar to a professional business report and cite any sources you used.

Submission Requirements

  • Format: Microsoft Word (or compatible)
  • Font: Arial, size 12, double-space
  • Citation style: Your school’s preferred style guide

Estimated length: 4–6 pages 

Write C program that does the following

  

Write C program that does the following, in your main function read two numbers(height and radius) from the user. Write a function that calculates the area of a cylinder and call it from your main function.

IT207 week 6 case study

Case study: You have been asked to give a short presentation ( 6-7 slides) on Windows file attributes. The presentation should include handouts that provide definitions of the file attributes and at least three examples of setting them. 

Use citations and references as needed. Please do not copy & paste from the internet resources/solution manual as it will be considered plagiarism. 

INT 1111 Lab 5

 

Lab FIVE

Number Analysis ProgramProblem Statement:Design a program that asks the user to enter a series of 10 integers.  The program should store the numbers within a list and then calculate and display the following data:

  • the lowest number on the list
  • the highest number on the list
  • the sum of the numbers on the list, and
  • the average of the numbers on the list

—————————————————————————————————Details:Develop a function for each of the following: 

  • A function to determine the lowest number on the list
    • The function receives the list as an argument
    • The function returns the lowest number on the list back to the main function
    •  The lowest number then is displayed within the main function
  • A function to determine the highest number on the list
    • The function receives the list as an argument
    • The function returns the highest number on the list back to the main function
    • The highest number then is displayed within the main function
  • A function to determine the sum of the numbers on the list
    • The function receives the list as an argument
    • The function calculates and returns the sum of the numbers on the list back to the main function
    • The  sum of the numbers is then displayed within the main function
  • A function to determine the average of the numbers on the list
    • The function receives the list as an argument
    • The function calculates and returns the average of the numbers on the list back to the main function
    • The  average of the numbers is then displayed within the main function
  • A main function, based on the following algorithm:
    • Set up a list for 10 integers
    • Set up a loop to ask the user to enter 10 integers, one at a time, into the list
    • Set up another loop to display the contents of the list, one at a time
    • Make a call to the function that determines the lowest number on the list
    • Display the lowest number on the list
    • Make a call to the function that determines the highest number on the list
    • Display the highest number on the list
    • Make a call to the function that determines the sum of the numbers on the list
    • Display the sum of the numbers on the list
    • Make a call to the function that determines the average of the numbers on the list
    • Display the average of the numbers on the list

Once all the functions have been developed, make a call to the main function to start the execution of your program.
==================================================================================NOTE 1: As you may be aware, there are built-in functions in Python.   Examples of these include:min ()max ()sum () You do NOT want to use such built-in functions; rather, you want to develop your own code to calculate the lowest and the highest numbers on the list.  You also want to  develop your own code to calculate the sum and the average of the numbers on the listYou will receive NO credit for using the above-mentioned built-in functions.NOTE 2:A sample program run is attached below.  It illustrates user’s interactions with the program, as the program is run, ten integers are entered, one at a time.  Then, the contents of the list are displayed, and then calls are made to the above functions, one at a time; and, as each piece of data is returned to the main function, it is displayed: Lab 5 – Sample Program Run.pdf Lab 5 – Sample Program Run.pdf – Alternative Formats  =======================================================================You need to set up a    Python solution that is    complete and    workable.  

For your solution to be    complete, you must

  • Prompt the user for the specific input data asked for within the problem statement
  • Set up a correct formula to process the input data, arriving at the output data
  • Provide the output data asked for within the problem statement to the user

For your solution to be    workable,

  • Your solution should be free of any type of errors (syntax, run-time, logic)
  • You may want to develop an algorithm first, using pseudocode or flowchart
  • You do NOT need to turn in any algorithm

========================================================================Grading rubric:

  • You’ll receive full credit, if 
    • your program
      • compiles and runs with no problems 
      • produces the expected output
  • You’ll receive partial credit, if 
    • your program
      • compiles and runs with no problems 
      • produces partial output (that is, incomplete output)
  • You’ll receive 25% of the points, if your program will not compile
  • You’ll receive 30% of the points, if your program compiles but has a run-time problem
  • You’ll receive 40% of the points, if your program produces logic error(s)
  • You’ll receive 50% of the points, if your program compiles and run, but no functions are used

Technology discussion

 Referencing the Learning Resources for this week, choose a question in the research project list and answer it in relation to an issue in literature and technology. 

https://aeon.co/essays/how-ai-is-revolutionising-the-role-of-the-literary-critic

COMPUTER SCIENCE

 

You have been contacted by a small Ma’ and Pa’ company that is struggling to stay afloat in this high technology centered business environment. Most of its employees are over 50 years of age. The company however, is bringing in new employees who are five years or less out of college. The issue is that the current employees are having trouble keeping up with their younger counter parts. You have been hired by this company to develop a short training guide on ways to keep up with technologies in the work place for the company’s seasoned employees.

  • Use the article, “Keep Up with Technology and Keep Your Career Afloat.” to help you.

Need it tomorrow by 4pm eastern time.