Discuss how encryption, digital signatures, and digital certificates work
answer should be cited.
+1 (231)-518-0303 [email protected]
Home » Archives for June 2023 » Page 603
Discuss how encryption, digital signatures, and digital certificates work
answer should be cited.
include
#include
#include
#include
#include
static const long Num_To_Add = 1000000000;
static const double Scale = 10.0 / RAND_MAX;
long add_serial(const char *numbers) {
long sum = 0;
for (long i = 0; i < Num_To_Add; i++) {
sum += numbers[i];
}
return sum;
}
long add_parallel(const char *numbers) {
long sum = 0;
return sum;
}
int main() {
char *numbers = malloc(sizeof(long) * Num_To_Add);
long chunk_size = Num_To_Add / omp_get_max_threads();
#pragma omp parallel num_threads(omp_get_max_threads())
{
int p = omp_get_thread_num();
unsigned int seed = (unsigned int) time(NULL) + (unsigned int) p;
long chunk_start = p * chunk_size;
long chunk_end = chunk_start + chunk_size;
for (long i = chunk_start; i < chunk_end; i++) {
numbers[i] = (char) (rand_r(&seed) * Scale);
}
}
struct timeval start, end;
printf(“Timing sequential…n”);
gettimeofday(&start, NULL);
long sum_s = add_serial(numbers);
gettimeofday(&end, NULL);
printf(“Took %f secondsnn”, end.tv_sec – start.tv_sec + (double) (end.tv_usec – start.tv_usec) / 1000000);
printf(“Timing parallel…n”);
gettimeofday(&start, NULL);
long sum_p = add_parallel(numbers);
gettimeofday(&end, NULL);
printf(“Took %f secondsnn”, end.tv_sec – start.tv_sec + (double) (end.tv_usec – start.tv_usec) / 1000000);
printf(“Sum serial: %ldnSum parallel: %ld”, sum_s, sum_p);
free(numbers);
return 0;
}
Chapter 1 –discussion question #1 & exercise 15 (limit to one page of analysis for question 15)
Discussion question #1:
1. Survey the literature from the past six months to find one application each for DSS, BI, and analytics. Summarize the applications on one page, and submit it with the exact sources.
Exercise 15:
Find information about IBM Watson’s activities in the healthcare field. Write a report
When submitting work, be sure to include an APA cover page and include at least two APA formatted references (and APA in-text citations) to support the work this week.
All work must be original (not copied from any source).
Create a UML and Sequence diagram for a given scenario
Conduct research on the distinctions between Internet routers and personal access routers. Write a 4page paper that explains the differences between personal access routers and Internet routers.
You must use a minimum of 3 sources (one can be your textbook) and you must cite at least two of your sources in the body of your document.
Go to the website: https://epic.org/privacy/litigation/ which focuses on civil rights issues and privacy. Pick a case.
Using WORD, in your OWN WORDS, write an ORIGINAL brief summary of 300 words or more :
Task 1:
This week, you have read about entrepreneurship in a global economy. For your written assignment this week, complete a case study of the organization you work for (use a hypothetical or “other” organization if more applicable) that will address the following prompts:
Submit your research paper as a single document. Your paper should meet the following requirements:
Task 2: Discussion -> 300 – 350 words.
Networks have changed drastically over the last 30 years. With the first introduction of the 56k modem, which was about 3 typewriter pages per second, to speeds well over 1Gbps these days, the ability to use networks globally, has changed the way we do business. Using research, determine where networks will go in the next 5-10 years and how that might impact the global economy.
For this assignment, you are asked to locate any company privacy policy. Some of the more popular ones might include GOOGLE, APPLE, or MICROSOFT, but you may elect to review another agency. In 3- 4 paragraphs, explain what you find to be the most interesting information contained in that privacy policy. At the end of your report, please include a LINK to the policy you have reviewed.
Submit these answers as a single Word document. APA style with references. 100% original work. no plagiarism.
Answer the following questions:
1. Map the layers of the TCP/IP model to the OSI model
2. Each layer of OSI has a body/group that is responsible for the standards, please name them
3. Describe the progression through the OSI model of the following:
– A web browser request and connection to www.cnn.com
– An email being sent from Outlook on a Windows machine from your APUS email account to [email protected]