Construction -4 Dis

 

Answer the following questions based on this scenario.

Problem: Write a program that reads 10 username and password values into parallel arrays. After the arrays have been loaded, the program should behave like a login screen, prompting for a username and a password. Based on the data read and stored in the arrays, the program should respond appropriately with one of three output messages: “Username not found.”, “Username and password does not match.” or “Access granted.”

Question 1: Would you write this program asking a user to enter the usernames and passwords or would you use a file that contains all the username and passwords as input?  Explain why you would choose one over the other.  

Question 2: Will your answer remain the same if the number of username and password values change to 40, and why?

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Discussion Forum (LO2) (LO3) (LO4) – 50 points

week 3 Discussion 50  and week 3 Assignment 100 points

What role do you see APA citations playing in your writing? How does the use of citations help avoid plagiarism? How does ethics play a role in scholarly writing?

Using one of the resources found in Week 2, paraphrase a paragraph from the resource, in one to two sentences, providing appropriate in-text citations and reference list.

Initial posts should be 300-500 words.You can finish your post asking a question that you may have about academic integrity for others to answer OR you can respond to two peers. Responses should be 100-200 words. (LO2) (LO3) (LO4)

Essential Activities: 

  1. Reading the all of the required readings will assist you in writing this discussion forum.

Week 3 Assignment (LO4) – 100 points

Research and examine strategies for maintaining academic integrity. Create an infographic with at least five strategies you will use to maintain academic integrity. Create an original graphic in Canva, templates are not allowed. Submit as a PDF. (LO3)

Cite all sources used in APA Style Format. (LO4)

Essential Activities: 

  1. Reading the all of the required readings will assist you in writing this discussion forum.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Week 4 Discussion Forum (LO2) (LO3) – 50 points

Define plagiarism in your own words and describe strategies avoid it?  Describe a method of organization that maintains academic integrity and avoids plagiarism.

Post must be 300-500 words; end post with a question OR respond to two peers. Responses to peers should be 100-200 words. (LO2) (LO3)

Essential Activities: 

  1. Reading the required materials for the week will assist you in this forum.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

lab03

You need to submit a detailed lab report, to describe what you have done and what you

have observed. You also need to provide explanation to the observations that are interesting or surprising.

Please also list the important code snippets followed by explanation. Simply attaching code without any

explanation will not receive credits.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Organizational Learning and Article Review

1. Discussion 

Read: Chapter 4 (Organizational Learning Theories and Technology)(Information Technology and Organizational Learning)

This week we focus on the social and organizational issues that exist with a better understanding of why changes occur. Beginning on page 96 of the Information Technology and Organizational Learning text, the author presents three phases of maturation with technology. A summary table of these phases appears on page 99. Using what you understand from these phases, consider what phase your current (or previous) organization may currently be in and what challenges they are facing in moving to the next phase.

Your response should be 250-300 words.

2. Article Review

Read: Chapters 7 and 8, Interaction Design 5th Edition

Big Data has undoubtedly played a role in the way business is conducted. For many industries, when a product is created, especially a Website, mobile application, or enterprise system, there is a desire to understand how data is presented in the environment. Data has in fact become a usability measurement whether it is under the scope of information, system, or service quality. For this assignment, you’ll find ONE SCHOLARLY ARTICLE that discusses data in the context of a usability evaluation. Your article should review data from the perspective of an industry vertical (i.e., healthcare, education, supply chain, etc.).

You’ll submit a 3-page synopsis of the article that answers the following questions: 

  1. Article Title
  2. Article Subject Area
  3. Type of Data Set Used/Evaluated
  4. Synopsis of Article
  5. Three business takeaways on how data impacts the industry in respect to usability
  6. Source Citation

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Information Systems Security (Written Assignment 4)

How are authentication and authorization alike and how are they different? What is the relationship, if any, between the two? 

Select one of the three topics defined in the Essay Quiz section on page 334 in the textbook(Principles of Computer Security, Conklin and White, 4th Edition, McGraw-

Hill Companies, 2016; ISBN: 978-0-07-183597-8). paper should be 2 pages in length. You need to provide a minimum of two references and need to use APA format in the reference section.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

can anyone answer task 6.. if yes message +919852719784

 

Among the many applications of the constraint satisfaction problem (CSP) paradigm, one of the first was to perform a process called line-labeling to attempt to use a 2-dimensional image of a “blocks-world” environment to infer its 3-dimensional structure so that a robot can reconfigure the blocks to achieve a goal. In this task, you will utilize code that we provide to you, and extend it with code that you write, to develop a deeper understanding of the CSP paradigm and its application to line labeling.

As an introduction to the line-labeling problem, see the separate document provided that summarizes it.

Part of the line labeling code has been written for you (Python 2.7). Parts a to i will provide more instruction on finishing the code.

Many of the utility functions written in diagram.py will be helpful. The class Vertex is used extensively in diagram.py and is defined in vertex.py.

You will use main.py to run the code. Example commands: python main.py examples/cube.txt propagation -p ac_3 # only run AC3 on cube.txt

python main.py examples/cube.txt backtracking -p ac_3 -o mrv # find all solutions of AC3 and MRV

python main.py examples/cube.txt backtracking -s -p ac_3 -o mrv # find ONE solution using backtracking with AC3 and MRV

python main.py examples/cube.txt backtracking -p forward_checking -o first_unassigned # find ONE solution using backtracking with forward checking and the first unassigned heuristic

Run python main.py -h for detailed usage instructions.

row#

#solns

propagation

ordering

# assignments TOWER

# assignments POIUYT

1

all

No-prop

First-unassigned

2

all

Forward-checking

First-unassigned

3

all

Arc-consistency

First-unassigned

4

all

No-prop

MRV

5

all

Forward-checking

MRV

6

all

Arc-consistency

MRV

7

one

No-prop

First-unassigned

8

one

Forward-checking

First-unassigned

9

one

Arc-consistency

First-unassigned

10

one

No-prop

MRV

11

one

Forward-checking

MRV

12

one

Arc-consistency

MRV

13

all

Arc-consistency**

MRV

  1. a. The method for backtracking, search_solutions in diagram.py was left unfinished. Finish the code to fill in the first 2 rows of the table.
  2. b. Implement arc consistency and fill in the 3rd row of the table. Fill in the ac_3 method of the D iagram class in diagram.py.
    For each of the diagrams, briefly explain the extent to which it did (or did not) affect the number of variable assignments compared to forward-checking, and why.
  3. c. In class, we will have talked about how the order in which variables are assigned can make a difference to the search effort. In the current code the first_unassigned method chooses based on alphabetical order. As a first step at considering this, modify first_unassigned to return a random unassigned vertex instead. Test out the new random heuristic and record the number of variable assignments for 10 trials for both diagrams and each of the 3 propagation methods.
    What do your results tell you about the impact of variable ordering on the search effort for each of these diagrams?
  4. d. One way of ordering vertices that heuristically can decrease the number of (tentative) assignments needed to find solutions, as discussed in class, is to assign the variable next that has the fewest number of possible values to assign – the Minimum Remaining Values (MRV) heuristic.
    Implement this heuristic and add it to your code in the method mrv. Break ties based alphabetical ordering (as was done in first_unassigned). With your new code, fill in rows 4-6 of the Table.
  5. e. Use observation(s) from the answer to part c to explain the impact of the MRV heuristic in rows 4-6 you just filled in. Particularly address the fourth row performance on the TOWER diagram. What do the results tell you about the mrv heuristic?
  6. f. As you did in part d, experiment with a “random” MRV heuristic (break ties randomly). Comment on whether the variance in the number of tentative assignments differs from part c, and briefly (in a sentence or two) explain why or why not.
  7. g. In most applications of constraint satisfaction where there might be multiple solutions, the user only cares about getting one legal solution (for example, for scheduling a conference room, packing a box, the n-queens problem in class). Fill in rows 7-12 using the -s command line argument in main.py (see examples). For each of the TOWER and POIUYT diagrams, briefly explain how searching for just one solution (rows 7-12) impacts the number of variable assignments performed compared to the first 6 rows where all solutions were found.

h. Finally, create a version where you modify the search_solutions method to apply arc-consistency (ac_3) to every vertex before any search is done. Fill in row 13 of the table, and briefly explain any difference(s) with row 6. 

*STARTER CODE ATTACHED*

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Disaster Recovery 3

Search “scholar.google.com” for a company or school that has reported issues, problems, concerns about their backup procedures. Discuss the issue of securing backups. There have been several incidents lately in which backup media containing personal customer information were lost or stolen. How should backup media be secured? What about off-site storage of backups? 

Need 300 plus words plus APA citation and referances

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

5-2 Journal: Memory Management in Practice

 Create a journal assignment in preparation for the memory management assessment elements of your final project.

Identify a graphical or command line utility that displays the allocation of virtual memory on your workstation. For example, memory_pressure provides information about the state of memory pages on OS X. The command or utility you choose must be part of the standard operating system’s distribution. Do not use third-party utilities. You are encouraged to select an operating system different from the one you used in previous lab exercises.

Execute the command and report on your findings in a journal assignment that provides insight into how the command you selected displays physical and virtual memory. 

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

4

4.1. Using a Web browser, identify at least five sources you would want to use when training a CSIRT.

4.2. Using a Web browser, visit www.mitre.org. What information is provided there, and how would it be useful?

4.3. Using a Web browser, visit www.securityfocus.com. What is Bugtraq, and how would it be useful? What additional information is provided under the Vulnerabilities tab?

4.4. Using a Web browser, visit www.cert.org. What information is provided there, and how would it be useful? What additional information is provided at www.cert.org/csirts/?

Discussion

 Search “scholar.google.com” or your textbook. Discuss the technical skills required to have a CSIRT response team consisting of employees with other job duties (i.e., not a full-time CSIRT job category)? Why or why not? What factors will influence their decision?  

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now