Usability Journal Work

3 Journal Entries:

Three Journal entries with 300-350 words for EACH entry.

Each entry should focus on an object that contains a bad usability design

Explain why the object being described does not maintain good usability practices.

APA citation with examples from scholars explaining best practices that should be followed

An example image of the bad design practice followed

An example of good potential practices to follow

The deliverable should include citable examples of best practices from academic literature explaining why the product/object does not follow best practices.

For Example:

A remote control. What about the remote control makes the device both a good and bad example for the usability perspective?

pseudorandom random number (bit) generator (PRNG)

 

Implement a pseudorandom randomnumber (bit) generator (PRNG). A good random bit generator is supposed to generate bits independently, i.e., the probability of bit 0 (p0) is the same as the probability of bit 1 (p1), where
p0 = p1 = 0.5 and p0 + p1 = 1.
However, one student (Alice) implemented it in a bad way, i.e., p0 6= p1. For example, p0 = 0.3
and p1 = 0.7, or p0 = 0.2 and p1 = 0.8. Of course, the actual probabilities and her implementation
details are unknown to you. You job is to use Alice’s defective generator to produce an unbiased
random bit string without using additional cryptographic tools.
First, clearly explain your step-by-step algorithms (or pseudocode). Second, provide a formal proof
of correctness.

Supported Paragraph

 Read this article: Debate on Face Masks Divides Air-Travel Industry • Gangitano, A. (2020, August 6). Debate on face masks divides air-travel industry. 

The Hill, https://thehill.com/policy/transportation/510791-debate-on-face-masks-dividesair-travel-industry You will be creating one paragraph that answers the following question:

 • Why or why not should passengers be required to wear a face mask on a plane? 

You will write that paragraph in third person (he, she, they, one, it, people) and not use first (me, us, our, we, my, I) or second person (you, your). Most academic writing is done in third person rather than first or second person because the writing is more objective. 

The key to this assignment is to make sure that the seven-to-nine sentence paragraph you write only has one topic and includes evidence to support that topic. 

Review the Citing Evidence interactive in this unit for information on how to include a direct quote in your work. Your evidence should go in the middle of the paragraph so that you can completely introduce it and explain how it supports your topic.

 (See step-by-step instructions about creating a paragraph with evidence.)

 Instructions: 

Answer the question above in one paragraph comprised of at least seven (7) to nine (9) sentences. You should use one direct quote from the article. 

1. First, begin your paragraph with a clear topic sentence that states where you stand on the question above.

 2. Next, include supporting sentences that explain and prove your topic. Next, remember to not use the words “me,” “I,”“us,” “we,” “our,” “you,” and “your”.

 3. Then, in the center of your paragraph, include a direct quote from the reading as one piece of evidence to support your topic with an in-text citation that looks like this: (Gangitano, 2020, p. #). 

4. Finally, comment on and explain the quotation and wrap up your paragraph with a concluding sentence.

 Requirements:

 • Please submit a Microsoft Word document or PDF.

 • Include a title page, a proper font case per APA standards (Times New Roman 12 font is suggested), and a references page. The document should have 1-inch margins and should be double-spaced.

 • The direct quote should be included within the center of the paragraph (as opposed to at the start or end). • Use objective third-person language: “he,” “she,” “it,” “him,” “her,” “himself,” “herself,” “itself,” “they,” “them,” “their,” “themselves.” (Avoid subjective language such as “I,” “me,” “you,” “we,” “us,”etc.) • The paragraph should be at least seven (7) sentences in length. 

• Follow proper APA formatting when citing the quote and include the article’s reference double-spaced on a reference page. For the reference page, simply label the last page of your document References and add this reference: o Gangitano, A. (2020, August 6). Debate on face masks divides airtravel industry. The Hill, https://thehill.com/policy/transportation/510791-debate-on-facemasks-divides-air-travel-industry 

• When using a reference, you indent after the first line of the reference (as seen above). Be sure to read the criteria by which your work will be evaluated before you write and again after you write. 

SIEMENS SIMATIC

I need to write a term paper on the topic Siemens Simatic- PCS7/WINCC (SCADA) 

There are all the requirements for the term paper alongside the template for the term paper.
Please help and thank you 

July Discussion Assignment

Please answer the below questions:

1.Write at least 500 words explaining logistic regression and how it is used in the chronic kidney disease data set. Use APA format  and include at least 3 quotes from the sources enclosed in quotation marks and cited in-line by reference to your reference list.

2.Write at least 500 words discussing how Cambridge Analytica used text mining to analyze to affect the 2016 US presidential election. Use APA format and include at least 3 quotes from the sources enclosed in quotation marks and cited in-line by reference to your reference list.

Write a program to create a dictionary class using BST

allows to   

insert,

delete,

display in-order and

search records.

Each record represents a book and should contain,

book title,

author name,

number of copies,

publication year.

Insert the record using book title as key.

2- Extend the solution to previous question by providing a menu for insert, delete, search, display and quit options that you already implemented in the previous question. Make sure you program doesn’t quit unless user selects the quit option. Add another functionality to get the name and number of copies of each book that has more than 01 copy. Note: To get full marks, add data validations and constructors wherever applicable.