[prob1.c][100%] Develop a C program to read hurricane data and store and sort those hurricane data.
Each hurricane record contains the hurricanes name, year, month, and category. An input file named
hurricane.txt contains 100 hurricane records. Your program will perform the following tasks.
a) Read hurricane data from input file hurricane.txt and store them in an array of structure. The
structure definition is shown below. Then write the hurricane data stored in the array of structure
to a binary file named hurricane.bin.
typedef struct hurricane
{
char name[20];
int year;
int month;
int category;
}H_RECORD;
b) Create a new structure for storing the same hurricane data. This new structure should contain the
same members (name, year, month, and category) but utilize a minimum size as a data type.
Take the definition of the new structure shown below as an example. Design this new structure
so that the value sizeof(H_RECORD_MIN) is minimized
The instructions are outlined in the paper. I don't need anything fancy. There are pictures of what the final product should resemble. They do not have to be the exact, it just has to resemble the final design. Only use HTML and JavaScript to make this program. The final product should be an HTML document that should be able to open any browser
I need someone to write me a CSS stylesheet and make the web page in the attached PNG that I will link. I have the HTML assets that are needed. I need an embedded stylesheet or an external is fine as well, just make sure to link it. Please use the following in the stylesheet: Body global elements: background colour, font family, text colour
Structural elements, such as the wrapper: widths, padding, margin, background colour
Navigation (a tag): color, text decoration and pseudo elements (link, visited, hover and active)
Typography elements: h1, h2, p, etc.
Need this done as soon as possible, if anyone could help that would be great. If there's any questions, please feel free to ask.
Assignment Instructions
There are 2 parts to this weeks assignment.
Download the attached instruction details.
The objective is to perform the same tasks; first, by issuing SQL commands, and then by using MS Access (use the graphical interface to perform the tasks).
Part A SQL (70%); by following the detailed instructions you will Create a table, Insert data into that table, and use Select commands to select and display data from the table.
Submit one Word document, which includes the text of the SQL commands, and screen captures of the commands along with the Web sites feedback.
Part B MS Access (30%): use MS Access to create the same tables, load the same content and perform the same Queries.
The MS Access database is submitted.
Two files will be submitted a word document for Part A and an Access database for Part B.
Write a PHP program that determines if a given credit card number is a valid Visa, MasterCard, or Discover credit card number
by performing the Luhn check (aka the Mod 10 check).
The format for a valid American Express, Visa, MasterCard, or Discover credit number is as follows:
American Express numbers start with 3
Visa card numbers start with 4
MasterCard numbers start with 5
Discover card numbers with with 6
Visa, MasterCard and Discover card types must have exactly 16 digits
American Express card types must have exactly 15 digits
Given the sample credit card number: 4388576018402626
The algorithm for the Luhn/Mod 10 check is as follows:
Starting from the second digit from right and moving to the left, double every other digit.
If the result from doubling is two digits, then add those two digits together to end up with a one digit number.
Add up all of the one digit numbers from Step 1.
4 + 4 + 8 + 2 + 3 + 1 + 7 + 8 =
please add/fix the following to my website
main navigation structure should have some type of hover effects / change
one left aligned image and one right aligned image with text to
the side of that image
Use an image map for an image that contains three links.
Create a solid border for at least one image in the site.
Use at least 1 feature using JavaScript
i will provide you with the coding of my website please go in and fix or add to the coding so it has all of the features above.
There were 3 stages to this and my group completed 2 of 3. This is the last stage for my group project.
We each have our own API. Edamams Nutrition facts API, Yelp Search API and an SMS sender API. Each has their own rails environment and functional databases. My professor said, "okay now combine them into one rails application, combine their databases, and create a webpage that makes use of these APIs. Make it in a way so they interact with each other" and that's where we need help.
You will be creating an Angular app that manages contacts.
This project should be fairly simplified as it's just to demonstrate some basic use of Angular to accomplish a simple app. It should only utilize angular and nothing outside of that (like php integrations, databases, etc...). The data storage for the contacts can simply be implemented using JSON stored either in a file or just within the app itself as a variable. The app appearance should have at least some styling and polish, maybe utilizing some bootstrap integration.
Please see the attached word document for exact details for the assignment exactly as they were given to me by my instructor.
This really isn't too difficult of an assignment, I'm just really swamped right now and have to focus a more on another class right now.
All the details are contained inside the assignment details doc all elements.html,generic.html,index.html,Liscense.txt and Readme.txt should be in one folder buut got spit up when I uploaded it. Game details are the detailsfor question 2 and csvdata is for the third question
Deliverables: ChatServer.java, ChatClient.java, ChatMessage.java, ChatFilter.java,badwords.txt
There is a pdf you must read through and understand, it is very descriptive. There a total of six tasks. After finishing the assignment pls go through the attached rubric/last page of pdf, to see if the program does all of the following.
There is a starter code attached.