Write a MATLAB program to generate a Gaussian window and apply it to a signal as follows:
In: Computer Science
Course: Big Data Processing
Why is the most basic Hadoop deployment at least using Virtualization, what happens if we implement Hadoop Without Virtualization, is it possible? What are the consequences if you install Hadoop on a dedicated server?
In: Computer Science
Identify and describe four applications of quantum computing; Explain how regular computing would not be suitable for this application and provide a You Tube video(up to 10 min) of each of these applications (200 words).
In: Computer Science
Please in C++ language
Write a program that reads 10,000 words into an array of strings. The program will then read a second file that contains an undetermined number of words and search the first array for each word. The program will then report the number of words in the second list that were found on the first list.
In: Computer Science
Question 3 - Write a java program named BinaryConversion that will convert base 2 numbers to base 10 numbers.
This complete question is already in chegg study! I want to know the answer for that question?
In: Computer Science
Write a complete Java code that contain two classes. A GradeBook and a GradeBookTester.
- The GradeBook class contains the followings:
- An array of grades (integer array) declared as a field.
- A constructor that takes an integer value as parameter (len), and creates the grades array of size equals to len.
- A method called fillArray that fills the grades array with random integers. Acceptable values are between 1 and 100 (inclusive)
- A method called printStatistics that prints 4 values: the average of the grades, the minimum grade, the maximum grade, and the median grade (the middle value of the sorted array).
- The GradeBookTester contains the main and do the followings:
- Uses the input dialog to ask the user to enter an integer value (assume that the user will enter a value that is non-zero and positive / no need to check)
- creates an object of GradeBook class while passing the entered value as parameter.
- calls the functions fillArray and printStatistics for testing.
Please Solve As soon as
Solve quickly I get you thumbs up directly
Thank's
In: Computer Science
In: Computer Science
In: Computer Science
Online Store Project Assignment Four
Introduction
Project Four introduces the ability to read and write data to files. This project will create an online store application circa 1990. The application you will build is a standard C++ console project (visual studios). The store will contain basic operations to shop for items, check out of the store, calculate taxes and totals.
All online store applications are “data driven” in that the contents of the store changes over time. In addition, shipping rates change over time. So this project will read shipping rates and tax rates in from a file. It assumes that these rates are based upon the zipcode provided by the user. The sample data for this file is located here:
90001 0.09000 1.55 1.65 1.72
90002 0.09000 1.55 1.65 1.72
90003 0.09000 1.55 1.65 1.72
9000411 0.09000 1.55 1.65 1.72
90005 0.09000 1.55 1.65 1.72
90006 9 1.55 1.65 1.72
90007 0.09000 1.55 1.65 1.72
90008 0.09000 1.55 1.65 1.72
90009 0.09000 1.55 1.65 -1.72
90010 0.09000 1.55 1.65 1.72
90011 0.09000 -1.55 1.65 1.72
90012 0.09000 1.55 1.65 1.72
90013AB 0.09000 1.55 1.65 1.72
90014 0.09000 1.55 1.65 1.72
90015 0.09000 1.55 1.65 1.72
90016 0.09000 1.55 1.65 1.72
90017 0.09000 1.55 1.65 1.72
90018 0.09000 1.55 1.65 1.72
90019 0.09000 1.55 1.65 1.72
90020 0.09000 1.55 1.65 1.72
90021 0.09000 1.55 1.65 1.72
90022 0.09000 1.55 1.65 1.72
90023 0.09000 1.55 1.65 1.72
90024 0.09000 1.55 1.65 1.72
90025 0.09000 1.55 1.65 1.72
90026 0.09000 1.55 1.65 1.72
90027 0.09000 1.55 1.65 1.72
90028 0.09000 1.55 1.65 1.72
90029 0.09000 1.55 1.65 1.72
90030 0.09000 1.55 1.65 1.72
90031 0.09000 1.55 1.65 1.72
90032 0.09000 1.55 1.65 1.72
90033 0.09000 1.55 1.65 1.72
90034 0.09000 1.55 1.65 1.72
90035 0.09000 1.55 1.65 1.72
90036 0.09000 1.55 1.65 1.72
90037 0.09000 1.55 1.65 1.72
90038 0.09000 1.55 1.65 1.72
90039 0.09000 1.55 1.65 1.72
90040 0.09000 1.55 1.65 1.72
90041 0.09000 1.55 1.65 1.72
90042 0.09000 1.55 1.65 1.72
90043 0.09000 1.55 1.65 1.72
90044 0.09000 1.55 1.65 1.72
90045 0.09000 1.55 1.65 1.72
90046 0.09000 1.55 1.65 1.72
90047 0.09000 1.55 1.65 1.72
90048 0.09000 1.55 1.65 1.72
90049 0.09000 1.55 1.65 1.72
90050 0.09000 1.55 1.65 1.72
90051 0.09000 1.55 1.65 1.72
90052 0.09000 1.55 1.65 1.72
90053 0.09000 1.55 1.65 1.72
90054 0.09000 1.55 1.65 1.72
When a consumer checks out of the store with their shopping cart, most eCommerce applications will email an invoice to the customer. Unfortunately, emailing receipts to customers is beyond the scope of this class! So you will need to write the invoice to a file. The format is described below. You will need to upload a sample output file along with the .cpp file.
Steps and Requirements
Follow the steps below to create your program.
|
Weight |
Modifier |
|
1-10 |
1x |
|
11-50 |
5x |
|
> 50 |
10x |
For example, total weight = 50 ounces shipped via USPS to 90001, results in amount = 5 * 1.55 = $7.55
After calling the above functions, the checkOut() routine should display the subtotal, tax, and total amounts to the screen. It should save the invoice or receipt to a file. You should print out the customer name at the top. Follow this with the item descriptions, price, quantity and extended price. Then print the subtotal, tax, shipping, and grand total (on separate lines of the file). Name the file “invoice.txt”.
In: Computer Science
Operating System Management
In: Computer Science
FINISH print and freelist
#include<stdio.h>
#include <stdlib.h>
struct node {
int data;
struct node *next;
};
struct node* insert(struct node* list,int d );
struct node* del(struct node* list,int d );
void print( struct node *list);
void freeList(struct node* list);
void copy ( struct node *q, struct node **s );
int main( ) {
int number = 0, choice = 0;
struct node *pList=NULL;
struct node *nList = NULL;
while(choice!= 4)
{
printf("Do you want to (1)insert, (2)delete, (3)Copy (4)quit.\n");
scanf("%d", &choice);
printf("Your choice is %d\n", choice);
if (choice == 1)
{
printf("Enter the value to insert\n");
scanf("%d", &number);
pList = insert(pList, number);
printf("Items in linked list: ");
print(pList);
printf("\n");
}
else if (choice == 2)
{
printf("Enter the value to delete.\n");
scanf("%d", &number);
pList = del(pList, number);
printf("Items in linked list: ");
print(pList);
printf("\n");
}
else if (choice == 3)
{
if (nList)
freeList(nList);
copy(pList, &nList);
printf("Items in NEW linked list: ");
print(nList);
printf("\n");
}
else
{
break;
}
}
freeList(nList);
freeList(pList);
printf("\nBye..\n");
return 0;
}
void copy ( struct node *source, struct node **dest )
{
if(source != NULL)
{
*dest = malloc(sizeof(struct node));
(*dest)-> data = source -> data;
(*dest) -> next= NULL;
copy(source->next, &((*dest)->next));
}
}
struct node* insert(struct node *list,int item)
{
if(list == NULL || item <= list->data)
{
struct node * pNew = (struct node *) (malloc(sizeof(struct node)));
pNew->data = item;
pNew->next = list;
return pNew;
}
list->next = insert(list->next, item);
return list;
}
struct node* del(struct node *list, int item)
{
if(list == NULL)
return NULL;
if(list->data == item)
{
struct node* rest = list->next;
free(list);
return rest;
}
list->next = del(list->next, item);
return list;
}
void print(struct node *list)
{
}
void freeList(struct node* list)
{
}
In: Computer Science
In C++ write a function to find a product of two matrices using arrays. The function should be general and should accept any size matrices.
In: Computer Science
Question 1 Draw a Entity Relationship Diagram
Snooty Fashions is an exclusive custom fashion designer business.
The Snooty Fashions Operations Database will keep track of the following:
Question 2 Draw a Schema Diagram with the same information.
In: Computer Science
Given the unordered array:
|
[0] |
[1] |
[2] |
[3] |
[4] |
[5] |
[6] |
[7] |
[8] |
|
P |
E |
R |
Y |
I |
H |
J |
L |
S |
Suppose this array were being sorted using the quick sort algorithm from the course content,
into ASCENDING order, with the left-most item as the pivot value.
List the letters in the resulting array, in order AFTER the FIRST PARTITIONING.
|
[0] |
[1] |
[2] |
[3] |
[4] |
[5] |
[6] |
[7] |
[8] |
In: Computer Science
The internet and other ICTs have played a key role in
transforming business. Write a report
analysing the impact of the internet and ICT on Disney World’s
business. Refer to the following elements in your report:
1. How the digital economy, including m‐commerce, has enabled
Disney World to
transform its business.
2. How Disney World has used MagicBands as part of an enterprise
system (ES) to exploit ICT.
3. How the Internet and related technologies, as disruptive
technologies, have assisted Disney World in improving customer
experiences.
In: Computer Science