Machine learning algorithms (Demand guru)
Needs help with similar assignment?
We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper
We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper
Write a scholarly research report on a narrowed focus related to Computer Networking based on one of the following main topics:
Topic Computer Networking and Medical Technology
Review the CU Research Guide and APA documentation (Research Report Help)
a. Follow the guidelines of the CU Research guide for the structure of the paper
b. Following the specifications of APA for format
Note: You will write a paper of at least 8-10 pages in length. The Title page, Abstract, Table of Contents, and Reference pages should not be counted in the number of pages required.
The paper must follow APA guidelines.
We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper
First review some PC Troubleshooting Videos made by KEVTECH (on YouTube). Then write a blog in the SAME format of attached file(What-is-a-Blog) and also (see file called “How to Create a Blog” that instructor posted in WEEK list) with many details, single space, one page.
STEP 1: Check the pdf file (What-is-a-Blog) you have to make it the same as the pdf file .This means to go to WORD, make those borders (INSERT borders icon), key in the info. Make it attractive, stimulating for others to read/review. PROMOTE your favorite/s Videos made by Professor Messer. Still, do not bad mouth the videos that are not your favorite.
Put a background color OR use the yellow highlighter to select some key words (not both).
We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper
Explain how cookies can show that a user has visited a site if that user’s history has been deleted.
Optional: install Windows Historian and see the sites visited by a particular user.
We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper
Our assignment for the week is a minimum 450-word initial discussion board post and a minimum of 2 100-word minimum responses.
This week navigate to the Visualizing Data ( https://www.visualisingdata.com/ ) website and click on resources and then click on the colour tab. This site is managed by the author of the textbook. Pick one option and note it by the name in the website. For example “ HTML Color Picker”. Then note what it is, when you would use it. Next, find a website that uses the method or should use the method. Explain why.
In response to peers, continue the conversation by agreeing or disagreeing with the color method selected. Explain your thoughts.
Your work must be entirely original, checked with Grammarly, and make use of proper grammatical conventions.
We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper
Part of lab lesson 7
There are two parts to lab lesson 7. The entire lab will be worth 100 points.
Bonus points for lab lesson 7
There are also 10 bonus points. To earn the bonus points you have to complete the Participation Activities and Challenge Activities for zyBooks/zyLabs unit 10 (Gaddis Chapter 5). These have to be completed by the due date for lab lesson 7. For example, if you complete 89% of the activities you will get 8 points (there is no rounding).
Lab lesson 7 part 1 is worth 50 points
For part 1 you will have 40 points if you enter the program and successfully run the program tests. An additional 10 points will be based on the style and formatting of your C++ code.
Style points
The 10 points for coding style will be based on the following guidelines:
Development in your IDE
For lab lesson 7 (both parts) you will be developing your solutions using an Integrated Development Environment (IDE) such as Visual Studio, Code::Blocks or Eclipse. You should use whatever IDE you are using for your CS 1336 class. Once you have created and tested your solutions you will be uploading the files to zyBooks/zyLabs. Your uploaded file must match the name specified in the directions for the lab lesson. You will be using an IDE and uploading the appropriate files for this and all future lab lessons.
For this and all future labs the name of the source files must be:
lessonXpartY.cpp
Where X is the lab lesson number (7 for lab lesson 7) and Y is the part number (1 for part 1, 2 for part 2).
You will need to develop and test the program in your IDE. Once you are satisfied that it is correct you will need to upload the source file to zyBooks/zyLabs, and submit it for the Submit mode tests. If your program does not pass all of the tests you need to go back to the IDE, and update your program to fix the problems you have with the tests. You must then upload the program from the IDE to zyBooks/zylabs again. You can then run the tests again in Submit mode.
When running your program in Submit mode it is very important that you look at the output from all of the tests. You should then try and fix all of the problems in your IDE and then upload the updated code to zyBooks/zyLabs.
C++ requirements
unsigned int. The sales value must be of of type long long int.Failure to follow the C++ requirements could reduce the points received from passing the tests.
General overview
In this program you will be reading sales information from a file and writing out a bar chart for each of the stores. The bar charts will be created by writing out a sequence of * characters.
You will have to create input files for your program. You can use a text editor such as Notepad or Notepad++ to create this. There may also be an editor in your IDE that you can use. You can use the TextEdit program on macOS but you will need to change the format to Make Plain Text. You will not be uploading these text files to zyBooks/zyLabs. The submit tests will be using their own files. Make sure that some of your files contain a newline at the end of the last line of text in the file. You can do this by hitting the enter key after the last number of the last line in the file. This will match the type of file usually created by programs. This is the type of file that is used for the zyBooks tests. See the description below on reading in files.
Reading in files
When reading data from a file you need to make sure you are checking for end of file properly.
See Demo of file input and output of data in this unit for an explanation of how to properly check for end of file.
The general method shown in the Gaddis text book is:
ifstream inputFile;
inputFile.open("input.txt");
int num;
if (inputFile)
{
// the file opened successfully
while (inputFile >> num)
{
// process the num value
cout << num << endl;
}
inputFile.close();
}
else
{
cout << "The file could not be opened" << endl;
}
If you want to read in two values with every read you can simply replace inputFile >> num with something like inputFile >> num1 >> num2 as shown here:
while (inputFile >> num1 >> num2)
{
// process the num1 and num2 values
cout << num1 << " " << num2 << endl;
}
Text files are more complicated that they seem. Different operating systems handle text files differently. On Windows lines of text end with \r followed by \n. On Unix (or Linux) the lines end with just \n. On old Macs lines ended with \r but now use the Unix convention. The use of the >> operator takes care of these line ending issues for you.
But it is still more complicated than that. Most text files have every line ending with either \r \n (for Windows) or \n (for Unix/Linux and MacOS) but it is also possible to create a text file where the last line does NOT have the line ending characters. The use of the following code will work for all line endings even when the last line of text input does not end with any line endings.
if (inputFile >> num1 >> num2)
{
// executes only if the read worked
}
or
while (inputFile >> num1 >> num2)
{
// executes while the read works
}
There are other ways to test for end of file but you have to make sure your code will work for all of the cases discussed above. It is STRONGLY recommended that you use the process outlined above.
General overview (continued)
Your program will read in a file name from cin. It will then open the input file.
Your program must also open an output file called saleschart.txt. You will write the bar char headings and data to this file.
Your program needs to have the following general flow:
prompt for the input file name with the prompt "Enter input file name"
read in the file name
open the input file for this file name
display a message if the input file does not open and quit your program
open the output file ("saleschart.txt")
display a message if the output file does not open, close the input file, and quit your program
while (readFile into store number and sales for store
if store number or sales are invalid
display an appropriate error message (see below)
else
output bar chart for this store to the output file
end if
end while
close the input and output files
The processing loop will read the input data and process it until it gets and end of file indication from the file read operation
Assuming you have read in valid data AND this is the first sales data being processed your program should output some headings to the output file before processing the data. The headings are as follows:
SALES BAR CHART
(Each * equals 5,000 dollars)
Note: Your program must not output the headings to the output file if all of the data in the input file is invalid, or if there is not any valid data in the input file.
You need to come up with a way of keeping track if this is the first valid read or not. .
Assuming you have valid data the processing will consist displaying the output
Once the loop has completed you need to close the input file.
If the input file could not be opened your program should output an error message to cout. Assume the file we are reading in from is called sales.txt, and the file does not exist. The error message written to cout is:
File "sales.txt" could not be opened
The store number is of type unsigned int. Your program must verify that the store number is in the range 1 to 99 (inclusive). If the store number is invalid display the following message:
If the store number is less than 1 or greater than 99 you need to output the following message to cout:
The store number xx is not valid
Where xx is the store number.
If the sales data is read in as a long long int. If the sales value is less than 0 you need to output the following message to cout:
The sales value for store xx is negative
Where xx is the store number.
Don’t forget to close both files, if they were opened.
Write the bar chart information to the file.
You will be outputting a string of * characters where each * represents $5,000 in sales for that store. For each 5,000 in sales you output one *. You do not round up the sales, so sales of $16,000 and sales of $16,999 would both output 3 * characters.
You will output the sales bar chart to the output file.
Assuming a store number of 9 and sales of $16,999. the display function will write the following to the output file:
Store 9: ***
Note that the store width is 2 characters, so the output is:
Store yy: *******
The yy has a width of 2 even if the store number is 1 through 9.
The format of the input file
The data in the input file is in the order store number followed by the store sales. There will be zero or more of these input pairs in the file.
Here is the contents of a sample input text file:
1 10000
2 25000
3 37000
4 29000
5 8000
Sample runs
Here is an example run. Assume the following input being read in from cin:
sales.txt
Assume that the content of the file sales.txt are as follows:
1 10000
2 25000
3 37000
4 29000
5 8000
The output (to file saleschart.txt) for this input would be:
SALES BAR CHART
(Each * equals 5,000 dollars)
Store 1: **
Store 2: *****
Store 3: *******
Store 4: *****
Store 5: *
You are reading from an input file and you are writing to an output file. Make sure you close both files after you are finished using them. You must do this in your program, you cannot just let the operating system close the files for you.
In this lab. and some future labs, you will be creating an output file. There could be output to cout as well.
For tests where there is output written to an output file the contents of the output file will determine if you passed that test or not. For cases where you have written out to cout the tests will check the output sent to cout.
Failure to follow the requirements for lab lessons can result in deductions to your points, even if you pass the validation tests. Logic errors, where you are not actually implementing the correct behavior, can result in reductions even if the test cases happen to return valid answers. This will be true for this and all future lab lessons.
Expected output
There are eight tests. Each test will have a new set of input data. You must match, exactly, the expected output.Tests 2, 5, 6, and 7 check the output sent to cout. Tests 1, 3, 4, and 8 check the output sent to file saleschart.txt.
You will get yellow highlighted text when you run the tests if your output is not what is expected. This can be because you are not getting the correct result. It could also be because your formatting does not match what is required. The checking that zyBooks does is very exacting and you must match it exactly. More information about what the yellow highlighting means can be found in course “How to use zyBooks” – especially section “1.4 zyLab basics”.
Finally, do not include a system("pause"); statement in your program. This will cause your verification steps to fail.
Note: that the system("pause"); command runs the pause command on the computer where the program is running. The pause command is a Windows command. Your program will be run on a server in the cloud. The cloud server may be running a different operating system (such as Linux).
We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper
DQ7:
We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper
No unread replies.No replies.
This week we will be practicing interpreting poetry. There are 100s of outstanding poets in history, so it is difficult to narrow down which ones for me to choose this week! Please review the bios and a selection of poems from the following five poets:
Rumi
Bio: https://www.poets.org/poetsorg/poet/jalal-al-din-rumi (Links to an external site.)
Poems: https://www.khamush.com/poems.html (Links to an external site.)
Langston Hughes
Bio: https://www.poets.org/poetsorg/poet/langston-hughes (Links to an external site.)
Poems: https://www.poets.org/poetsorg/poems/44733 (Links to an external site.)
Basho
Bio: https://www.poetryfoundation.org/poets/basho (Links to an external site.)
Poems: https://www.poemhunter.com/matsuo-basho/ (Links to an external site.)
Shakespeare
Pablo Neruda
Bio: https://www.poetryfoundation.org/poets/pablo-neruda (Links to an external site.)
Poems: https://www.poemhunter.com/pablo-neruda/ (Links to an external site.)
Initial Post
Choose one poem from the above listed poems. Then complete the following:
1. Paste and cite the poem.
2. Discuss in your own words what you think the underlying meaning is in the poem.
3. Discuss the literary elements used in the poem that helped you interpret the meaning of the poem.
Responses to Others
Respond to at least two other posts. Discuss the similarities and differences of the literary elements the authors used. Also, is your interpretation of their poem the same of different from what they identified? Explain.
We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper
No unread replies.No replies.
Businesses use symbols to help consumers identify with their brand. Review the following two articles about how symbols relate to a company’s brand.
Hidden symbols in common food logos: https://www.businessinsider.com/hidden-symbols-in-common-food-logos-2017-3 (Links to an external site.)
Make your brand iconic: The power of symbols in branding: https://stickybranding.com/make-your-brand-iconic-the-power-of-symbols-in-branding/ (Links to an external site.)
Initial Post:
If you started a company today, what would your logo look like?
What symbols would you use to convey your brand? Explain why you would choose that symbol and what that would convey about you or your business.
Responses to Others
Respond to at least two other posts. How was their use of symbolism similar to or different from what you chose to convey your brand?
We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper
No unread replies.No replies.
Hello,
Week 8 Class Discussion topic comes from —
Chapter Eleven “Marketing Strategies for a Digitally networked World”
In today’s digitally networked world, for most companies, the optimal path to be competitive and successful through the digital maze is far from clear. This class expects you to contribute three times:
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Your contribution one — answer one question only out of six questions below —
Question #1 Does every company need a digital or social media strategy?
Questioni #2 Do recent technological advances represent threats or opportunities?
Quetion #3 What marketing roles can the internet play?
Question #4 What marketing roles can the social networking play?
Question #5 As director of marketing of a medium-sized Canadian sporting goods manufacturer that produces helmets for use in sports, such as cycling, skiing, hockey, and football, you have been considering using the internet as a marketing tool. Although your helmets are sold in retail stores and to schools and athletic programs across Canada, you believe the company could reach a bigger audience and sell more helmets if the company also sold the product online at the company’s website. What arguments would you use to convince the CEO that online marketing is a good strategy?
Quqestion #6 In meeting with the CEO of the helmet manufacturer, you have been asked to outline the possible threats of selling the product online. Explain.
.
You do not need to answer all six (6) questions above:
Question 1 needs student X1 to answer it (Question 1 must be listed first)
Question 2 needs student X2 to answer it (Question 2 must be listed first)
Question 3 needs student X3 to answer it (Question 3 must be listed first)
Question 4 needs student X4 to answer it (Question 4 must be listed first)
Question 5 needs student X5 to answer it (Question 5 must be listed first)
Question 6 needs student X6 to answer it (Question 6 must be listed first)
You will earn maximum 2 points from your completed contribution one, if —
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Your contribution two — comment on two (yes two, not one) of your classmates’ postings about his/her contribution one.
You will earn maximum 2 points from your completed two comments, if —
We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper
At Get SPSS Help, we provide expert assistance with SPSS and data analysis tools. Our team delivers accurate, timely, and affordable solutions for academic and professional assignments with

Email:
support@getspsshelp.com
Phone:
+1 (317) 923-9733
