SE494 week 9

APA FORMAT & references 350 words each questions 

Topic: Menus in Mobile Apps

Read the article titled: Top 8 Mobile Navigation Menu Design for Your Inspiration and answer the following questions

https://uxplanet.org/top-8-mobile-navigation-menu-design-for-your-inspiration-8a2d925bffc0

QUESTION 1 : Compare the following navigation menu types  based on advantage and disadvantages

  • Classic navigation menu
  • Rectangular, grid navigation menu
  • Drawer navigation
  • Rudder navigation

QUESTION 2 : Which one you would use for the Mobile application for health services. Assume that the mobile app is going to be used by the patient to do the followings;

Schedule an appointment, see the bold test results, refill a prescription and communicate with Doctor, Nurse and the Pharmacy.

Intranet ,Internet & Extranet

1. Research and explain, compare and contrast between an RFID tag and a GPS tag.  [Write it in your own words.] 2. Give two examples of each. 
3. Think about a practical application using one instead of the other.

==============================

Solve the optimization problem using Lagrange and Coordinate Descent

 

Qn = 633, D1 = 4,74, D2 = 4,42, Qp = 500, Qi = 500;

Qn = 812, D1 = 6,65, D2 = 6,80, Qp = 800, Qi = 700;

Qn = 1010, D1 = 8,06, D2 = 7,53, Qp = 900, Qi = 600;

Qn = 1250, D1 = 8,13, D2 = 7,74, Qp = 1100, Qi = 600;

Qs = 2400

I want the calculations done step by step and the demonstrations if necessary through graphs and tables

Research

 

Use only online article databases found through a university library (such as the UoF Library Portal) and/or Google Scholar to complete this assignment. Suggested databases for this assignment are:  IEEE Xplore, the ACM Digital Library, the Academic OneFile, Expanded Academic ASAP, and Computer Database, though you may use other article databases as well.  Summarize the results of this assignment in a 3-5 page report, ensuring that you report the results of each of the tasks outlined.  Make certain to write an introduction and conclusion for your report.

  1. Find a book about the adoption of biometrics for use in information security. Provide a list of the key words used to find the book. Provide the specific database or web page in which you located the book.  Provide a reference citation for the book in the introduction of your report.
  2. Find out if the author has published other books or articles, on the same topic or other topics (related or not).  You can do this by searching the article databases for other publications by the same author, as well as searching the Web via Google Scholar. Did the publications (or lack of it) affect your confidence in the experience and authority of the author?
  3. Find a book review published in a popular magazine, trade publication, or scholarly journal about the book identified in task number one above and answer the following questions:
  • How did you find the review?  Discuss your research strategy.
  • What did the reviewer say about the book?
  • Is the reviewer qualified to review this book?  Look for related degrees or certifications.  If this information is absent from the review, note that in your report.
  • Did the review affect your attitude about the credibility of the author or the content of the book?
  1. Based on the book review, the publishing history of the author, and references made to the book by other authors, summarize how you would classify this book as an information source. Do you think it is a credible source for use in secondary research? Why or why not?
  2. Conclude with a discussion about what you learned about performing secondary research as a result of this exercise. In addition, include the opinions you formed about the quality of the information sources that are available to you through the library’s article databases versus Google Scholar.

Objective: To practise use of

  

Objective: To practise use of if-else, switch, while, break, continue statements and ?: operator.
Steps:
(i) Create a new folder called ‘assign41’ under C:JavaLesson4. Copy HelloWorld.java from Lesson 1 into it, and rename the file to “Weather.java”. Replace the word “HelloWorld” with “Weather”. Replace the System.out line with instructions to declare variables, and display output as described below:
(ii) Declare in ‘int’ type variable called ‘i’ and initialize it with a value of 1. This variable represents the year, starting at Year 1.
(iii) Declare a ‘double’ type variable called ‘temp’ initialized to 0.0.
(iv) Declare a ‘final double’ type constant called ‘ANNUAL_INCREASE’, and assign it a value of 1.0.
(v) Declare an ‘double’ type variable called ‘uncertainty’ initialized to 0.0.
(vi) Declare an ‘String’ type variable called ‘result’ initialized to ” “.
(vii) Using a System.out.println line, display the header: ” Year Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec”.
(viii) Using a while(true) statment, loop over Year i from 1 thro 5, EXCEPT i = 3. Use a break statement to exit the loop as appropriate. When i = 3, it should skip the calculations and go the next iteration, so use a continue statement for that.
(ix) In each iteration of the while loop, assign a value to ‘uncertainty’ using a switch statement and the following table:
Year (i) Uncertainty (Percent)
1 2.1
2 4.3
4 7.4
5 8.6
 

(x) Next (still inside the while loop), use the following formula to compute the temperature of each of the 12 months of years 1, 2, 4 and 5. Use a for loop to loop over the months in a given year.
—————
Year i = 1:
—————
Month j = 1, 2, … 12
Note: (A) and (B) below, taken together will be called “Equation 1”.
(A) Winter Months: j = 1, 2, 11 and 12: Temperature = j + 3
(B) Other Months: j = 3, 4, 5, .., 9, 10: Temperature = 5j + 7
 

Note: Use a logical expression to differentiate between Winter and Other Months, in conjunction with the ?: operator, all in one single statement to compute the temperature for a month j using Equation 1.
 

1st year, so ANNUAL_INCREASE doesn’t apply, but uncertainty does. In the next line, increase Temperature by Uncertainty percent to display the final temperature, for each month.
 

Example: If Temperature calculated above is 45.0, and uncertainty is 2.1 percent, then final Temperature is 45.0 * (1.0 + 2.1/100) = 45.945. Only the integer part is to be displayed (decimal part truncated), so it should show 45 as the value in this case.
————————
Years: i = 2, 4, 5
————————
First calculate Temperature using Equation 1. Next, find the increases to apply to that value. Temperature increase per year: ANNUAL_INCREASE (degrees) – same increase applies to each month of a year. Use the Year i and ANNUAL_INCREASE in an expression to figure the exact increase that would apply for that year.
 

Uncertainty percent applies to the value obtained after the ANNUAL_INCREASE.
 

Example: If temperature for a month is 45.0 using Equation 1, and it is Year 4, so you are 3 years away from Year 1, which means 3 annual increases on top of each other. Each annual increase is 1.0 degree (= ANNUAL_INCREASE), so for 3 years beyond Year 1, you need 1.0 + 1.0 + 1.0 = 3.0 degrees from the base value (45.0), so temp for Year 4 would be 45.0 + 3.0 = 48.0.
 

Next, you apply the uncertainty percent on this modified value (48.0) as applicable for year 4 (7.4 percent). So the temperature for that month in Year 4 becomes: 48.0 X (1.0 + 7.4/100) = 51.552. Value displayed will be integer part only (decimal part truncated), so it should display 51 in this example.
 

Inside the ‘for loop’, concatenate temperature values for all 12 months with spaces in between, assign it to ‘result’ and display in one line along with the Year i. Repeat for years 1, 2, 4 and 5. Try to align the output with the Month headers by maniupulating the blank space in between. 

Assignment

 Write short answers, uploaded as a WORD DOCUMENT (300 to 400 words) and attach references 

 

  • 2.1 What are the essential ingredients of a symmetric cipher?
  • 2.2 What are the two basic functions used in encryption algorithms?
  • 2.3 How many keys are required for two people to communicate via a symmetric cipher?
  • 2.4 What is the difference between a block cipher and a stream cipher?
  • 2.5 What are the two general approaches to attacking a cipher?
  • 2.6 Why do some block cipher modes of operation only use encryption while others use both encryption and decryption?
  • 2.7 What is triple encryption?
  • 2.8 Why is the middle portion of 3DES a decryption rather than an encryption?

Description of what the program does

  

Write a C program to display the duplicate values in an array.
 

Formulas Needed: None
 

Final submission along with Code
 

Documentation & Naming Style Sheet
 

1. Opening Documentation: the header block should include the following:
 

Program name/syntax
Description of what the program does
Summary of the problem’s specifications and assumptions
License info (optional)
References to sources of additional information used
Parameters
Class/Program Invariant (ensure these conditions are true)
Algorithm(s) used (including any special notes)
Output (any print statements, files created, etc.)
Return values (does it return any parameters?)
Name of the authors (plus contact info)
Creation & modification dates

Discussion

 

Q:What are the advantages and disadvantages of a Private Cloud vs. a Public Cloud delivery model? When would you implement each and why?

IT Presentation

 

  • Introduction: provide the reader a bulleted list of all the points your will discuss in the presentation.
  • Database Management Systems: identify some basic concepts associated with database management systems 
  • Database Models: explain what a database model is and provide a description of three types 
  • Databases & the Digital Economy: provide the description and the current trend of E-Business & E-Commerce 
  • Information Systems in Organizations: explain how organizations are using databases to help make decisions
  • Administration: define database administration and the administrators used to manage a database 
  • Specialized Database: identify a specialized database and its purpose (Audio is required).
  • Summary: provide the reader a bulleted list of all the major points you discussed in the presentation.
  • (included images, video,  and content hyperlinks where needed to extend presentation). Remember to give your source credit using APA format, and you need at least 15 slides.