Create a top and bottom navigation bar similar to ebay in HTML
Hi, I would like to get help to create navigation bar top and bottom part of ebay. I wanted to be with drop down menu, so like search minu and all of the navigation bars on top and bottom like office hours and phone numbers. I do not want them to work.
Arizona State University Create an Application Java Programming Task Question
Create an application named StudentsStanding.java that allows you to enter student data that consists of an ID number, first name, last name, and grade point average. Have the program accept input until ZZZ is entered for the ID number. Depending on whether the student’s grade point average is at least 2.0, output each record either to a file of students in good standing (StudentsGoodStanding.txt) or those on academic probation (StudentsAcademicProbation.txt).
Create an application named StudentsStanding2.java that displays each record in the two files created in the StudentsStanding application. Display a heading to introduce the list produced from each file. For each record, display the ID number, first name, last name, grade point average, and the amount by which the grade point average exceeds or falls short of the 2.0 cutoff. For example, the output should be formatted as follows (note that the student info may vary):
PUGS 6429 University of Illinois at Chicago Descriptive Analytics on City Light Venture Capital Firm Project
Download project data and import it into your analysis software(R programming). Run some summary statistics (number of observations, variables, missing values, etc.) and write a brief summary report of your initial findings. Anything you see that is interesting? Anything you want to explore further?
BIS 344 Indiana Wesleyan University Visual Basic Net Programming Project
BIS-344: Visual Basic Net Programming
Review the rubric to make sure you understand the criteria for earning your grade.
1.2 Assignment including “Your First Program” must be completed prior to attempting this assignment.
One should also confirm the submission file has been created correctly.
Read Chapter 2 in Introduction to Programming Using Visual Basic (11 Edition).
Review section comments for summaries of key points.
Complete programming exercises selected from Exercises 2.3 in the textbook.
Per general requirement, provide a meaningful name for each exercise project.
Exercises 35 and 37.
Each exercise is a separate Visual Studio project. Start with New Project dialog.
Complete the form visual layout based upon provided form and form control properties.
Create Visual Basic code to address the requirements and behavior specified.
Run and test to assure full compliance with the requirements.
Exercise 40
Start with New Project dialog.
Create the form.
Create Visual Basic code to address the requirements and behavior specified.
Include a detailed comment responding to the question “How can one manage Tab Order beyond following the Hint provided in Exercise 40?” Include a textbook reference.
Run and test to assure full compliance with the requirements.
Create submission zip archive.
Make a new folder including student name—“WorkshopOne LastNameFirstName” as in “WorkshopOne JenningsBartikJean”.
Copy each exercise project folder to the submission folder.
Create zip archive of the submission folder. In Windows Explorer, right click folder name, select “Send to” and “Compressed (zipped) folder.” Full details provided in 1.2 Assignment.
MATH 105LA California Irvine Algorithm of Gaussian Elimination Worksheet
Hi, you need to submit one pdf file including all of your codes, results, and analysis to the questions, programming languages other than MATLAB are also acceptable.
Montana State University Bozeman C Programing Computer Science Task
A network address is made up of 4 sections – each an integer from 0-255. Each section is separated by a period (.) when shown to the user. Depending on the class of the address, one or more sections identify the network and one or more sections identify the host within the network. For an IP addresses from Class A, the first 8 bits (the first number) represent the network part, while the remaining 24 bits (last 3 numbers) represent the host part. For Class B, the first 16 bits (the first two numbers) represent the network part, while the remaining 16 bits (last 2 numbers) represent the host part. For Class C, the first 24 bits represent the network part (the first 3 numbers), while the remaining 8 bits (the last number) represent the host part. To idenfity which class a network is, we can look at the first number.
A: 0-127
B: 128-191
C: 192-223
D: 224-239
E: 240-255
For this assignment, you will read in a file of network addresses (using scanf and file redirection) and print out some statistics about the networks in the file. You should ignore Class D and Class E networks. Your program will also take in a command line argument indicating the number of network addresses to be processed.
The statistics you must compute are:
The number of Class A, Class B, and Class C networks
For each of Class A, Class B, and Class C, the network with the most hosts and the number of hosts it contains.
In order to help you develop your program, here is a rough idea of how you might structure your program.
Convert the command line argument into an int. If there is no command line argument, print an error and end the program. This argument is the number of network addresses that will be in the file.
Read each address into a 2 dimensional array of 4 unsigned chars. The size of the first array dimension is the command line argument. (Note: you can use the int data type instead, but you will lose 5 points. If you feel more comfortable with int, you could write your program with int first and change it to unsigned char after it is working.)
Sort the array. (You will need to implement a sorting algorithm of your choice.)
Use the sorted array to compute the information you need.
Sample input and output
There are a number of sample input files in the /public/pgm1 directory.
Here is what your output should look like when you run your program on the inp17.txt, inp2000.txt, inp5000.txt, and inp8000.txt sample files.
<code>[program1]$ ./pg1 17 < inp17.txt
Class A has 5 networks
Largest A network is 106 with 3 hosts
Class B has 5 networks
Largest B network is 137.249 with 2 hosts
Class C has 2 networks
Largest C network is 215.116.26 with 2 hosts
[program1]$ ./pg1 2000 < inp2000.txt
Class A has 128 networks
Largest A network is 38 with 16 hosts
Class B has 484 networks
Largest B network is 129.74 with 2 hosts
Class C has 256 networks
All C networks have only 1 host
[program1]$ ./pg1 5000 < inp5000.txt
Class A has 128 networks
Largest A network is 95 with 35 hosts
Class B has 1234 networks
Largest B network is 144.40 with 3 hosts
Class C has 640 networks
All C networks have only 1 host
[program1]$ ./pg1 8000 < inp8000.txt
Class A has 128 networks
Largest A network is 106 with 50 hosts
Class B has 1961 networks
Largest B network is 141.175 with 4 hosts
Class C has 987 networks
Largest C network is 216.24.49 with 2 hosts
</code>
If you prefer, you can write your entire program in one single file and just separate it into four different files before you turn it in.
Print an unsigned char using the placeholder %hhu.
Start early!
Requirements
Write your program in a file called program1.c in your csci112-firstname-lastname/programs/program1/ directory.
You must use at least three functions in addition to main. Each should be stored in a separate file. (If you use more than four total functions, you can use four or more files.)
Since the network addresses are made up of integers between 0 and 255, use the unsigned char data type to store them instead of int. This way, they only take 1 byte (8 bits) instead of 4 bytes, meaning that your program will take only a quarter of the memory.
You must use a makefile to compile and link your separate files.
You may not use global variables.
Your output formatting must match the example. Use a tool like diffchecker to compare your output with the sample output. Don’t worry about trailing spaces.
comments explaining what your program does
code is indented so that it is readable
there are no global variables
compiles successfully with -Wall – no warnings
successfully reads in and uses a command line parameter
has error msg if no command line parameter
reads all input into a 2 dimensional array of size command line number x 4
the array is of unsigned char data type
compiles and links with makefile
four functions are stored in different files
computes the number of networks for class A, B, C correctly.
identifies the largest networks for class A, B, C correctly, prints the largest network, and prints the correct largest count