Assignment on SML programming language

 Write a recursive ML function that uses pattern matching with name/type
 optconcat : char option list  -> string

that inputs a list of char options, and returns a single string consisting of all characters on the list concatenated together while ignoring any instances of NONE. For example,

     - optconcat([SOME #"b",NONE,SOME #"o",SOME #"o",NONE]);
     val it = "boo" : string
     - optconcat([NONE,NONE]);
     val it = "" : string

Need help with the SQL Server Database (How to work with data types)

Watch the videos on SQL Training online. SQL Trim, Rtrim, Ltrim, SQL Substring, SQL Like Filter, SQL Convert Function, Cast Function, How to filter Datetime in SQL Server 

NOTE: ONLY RETURN THE TOP 10 ROWS!

1. Write a SELECT statement that returns these columns from the db1.MyGuitarShop.Products table:

a) The ListPrice column

b) A column that uses the CAST function to return the ListPrice column with 1 digit to the right of the decimal point

c) A column that uses the CONVERT function to return the ListPrice column as an integer

d) A column that uses the CAST function to return the ListPrice column as an integer

Query goes here

Screen Shot goes here

2. Write a SELECT statement that returns these columns from the db1.MyGuitarShop.Products table:

a) The DateAdded column

b) A column that uses the CAST function to return the DateAdded column with its date only (year, month, and day)

c) A column that uses the CAST function to return the DateAdded column with its full time only (hour, minutes, seconds, and milliseconds) 

d) A column that uses the CAST function to return the DateAdded column with just the month and day

Query goes here

Screen Shot goes here

3. Write a SELECT statement that returns these columns from the db1.MyGuitarShop.Products table:

a) The OrderDate column

b) A column that uses the CONVERT function to return the OrderDate column in this format: MM/DD/YYYY. In other words, use 2-digit months and days and a 4-digit year, and separate each date component with slashes.

c) A column that uses the CONVERT function to return the OrderDate column with the date, and the hours and minutes on a 12-hour clock with an am/pm indicator.

d) A column that uses the CONVERT function to return the OrderDate column with just the time in a 24-hour format, including the milliseconds.

Query goes here

Screen Shot goes here

Unit 9 Assignment 300 words paper

 Provide me turnitin.com report.

GEL 6.06: Apply research to create original insights and/or solve real-world problems.

Purpose

All disciplines require that practitioners know how to undertake research to fulfill their job responsibilities and keep current in their field. This Assignment requires you to do some research on how to handle a malware infection.

Assignment Instructions

In a 300–500 word paper, explain the steps you would take if one of your organization’s main servers was infected by malware. Use outside research to support your solution to this real-world problem. Your paper must demonstrate an assessment of the problem, your decision-making process, and a justification for your conclusion in relation to your research. You must provide at least three appropriate resources for your paper. Be sure to cite the resources you use in proper APA style formatting

Task: Submit to complete this assignment

(TOPIC)THE DIFFERENT ASPECTS PERTAINING TO BUSINESS ADMINISTRATION AND THE DIFFERENT JOBS THAT'S CONNECTED TO BUSINESS ADMINISTRATION

 

Assignment 7: PPT Project (Final Project)Assignment

(TOPIC) THE DIFFERENT ASPECTS PERTAINING TO BUSINESS ADMINISTRATION AND THE DIFFERENT JOBS THAT’S CONNECTED TO BUSINESS ADMINISTRATION.

(NOTE) PLEASE ADHIRE TO THE TOPIC

Task: Submit to complete this assignment

  

Narrated PowerPoint Presentation

Social, Cultural, and Ethical Issues

For your Final Project, you will create a PowerPoint presentation based on a topic from your current field of study. Since this is a fully online course and we do not meet in person in a traditional classroom setting, you will need to narrate this presentation so it can be viewed electronically.

To assist in the completion of your Final Project, some of the required pieces are included in this course as Milestones. These Milestones are completed throughout the course by the student and the instructor will provide feedback for each Milestone, in order to help the student better the overall quality of their project.  See below where the milestones align with the Final Project requirements.

Topic:

Choose a social, cultural, or ethical issue related to your current major or field of study. Chose ONE area to focus on. For example, you cannot talk about ethics in healthcare, public safety, or IT in general. You would need to pick a single ethical issue to discuss and not just ethics in general. (Milestone 2 & 3)

Research:

Conduct a search using both internet and library database resources. You must use at least 3 sources, one of which must be from the library database. Keep track of these sources! You will need to include a reference slide at the end of your presentation. (Milestone 4)

Content:

Create a NARRATED PowerPoint presentation that contains between 12 to 18 slides. You must add your voice using the narration feature in PPT. Include the following:

Title Slide (1 slide) – includes your name and the presentation title. (Milestone 2)

Introduction Slide (1 slide) – should be something catchy and explain why this issue is important. (Milestone 3)

Body/Content Slides (8-14 slides) – must be interesting, well organized, and presented clearly. Slides should not contain full sentences/paragraphs.
Summary Slide (1 slide) – may also include a way for others to get involved, help, or get more information.
Reference Slide (1 slide) – must be in APA style and be a minimum of 3 resources. When including hyperlinks in the reference list, they must be hyperlinked. (Milestone 4)

PowerPoint Elements:

Include the following PowerPoint elements:

Apply a single theme or design template.
Apply a transition to each slide.
Do NOT use animation.
Provide at least one hyperlink to a video or useful online article.
Use at least 5 open or creative commons images (Clipart, photos, shapes, etc). (Milestone 6)
Use smart art at least one time.
Include an original chart. (Milestone 5)
Include a footer on each slide with the slide number and your last name.

Narration:

To earn full points, your presentation must be narrated. Do NOT read word for word from your slides. Slides should only contain bulleted information, but full sentences should be spoken!  The narration audio should start automatically when you start the slideshow and should continue through the entire presentation.

Submission:

Please upload your completed PowerPoint project with a filename formatted as:

PowerPoint_SectionProject_yourfirstname_yourlastname.

Recursion and iteration discussion

 Write a response to the discussion below about recursion and iteration with a minimum of 150 words.

   In both recursion and iteration, a set of instructions is executed  repeatedly. In recursion, the method making the call and the method  being called is the same method (GeeksforGeeks, 2019). In iteration, a  loop repeats until a certain set condition is met (GeeksforGeeks, 2019).  Conditional statements terminate recursion and set values control  iteration termination. Recursion may utilize less code, but it has the  potential to create a lot of overhead because it is constantly calling  methods (Recursion (computer science), 2021). Because Iteration relies  on loops, it is much easier to find the time complexity of using  iteration versus recursion (GeeksforGeeks, 2019). Because the time  complexity of recursion due to overhead can be very large, it can lead  to system crash. There is no danger of this with iteration since it  relies on loops exclusively, which do not use as much overhead to  operate. Keeping this in mind, if the number of calls will be large and  speedy operation is essential, then iteration would be a better method  to use. If time and overhead are not an issue but tidy code is,  recursion is the better choice. Recursion involves breaking complex  problems down into increasingly smaller subproblems to make them easily  solvable (Recursion (computer science), 2021). In other words, the  solution to the bigger problem can be found in the solution to the  smaller problem. As such, it is suited for finding solutions to complex  programming problems. If you know how many times you will need to loop a  block of code, or the problem is a simplistic one, then iteration is a  straightforward and easy way to solve the problem. Certain data  structures work better using recursion or iteration, so it is important  to take this into consideration when choosing which data structure to  use.

Intro to Networking: Assignment 4

Must be one full page. At least (2) APA reference. 100% original work. no plagiarism. Attached are the previous assignment instruction leading to this assignment. Also, attached is the answer that will you for this work.

Assignment Instructions:

  • Uh-oh, the Legal department and the HR department are demanding their own network.
  • The departments feel that their data is sensitive enough that their data should be separated from the other departments.
  • In addition, the Outside Sales department has gotten brand new Apple iPads for all of their users. So there needs to be a Wireless network setup so they can go online.
  • So, you need to build out a change order for the network to account for these two curveball requests.
  • Your submission should be in a Word document and should cover the following (not a complete list)
    • How will you separate the networks, physically or virtually?
    • What type of WiFi network will you setup?
      • What hardware will you use?
      • What encryption method will you use?
      • Will you limit the WiFi signal via physical means?
    • What additional hardware is needed? Software? Etc?
    • Remember to justify your choices

A.I

one page to page and half more information in the word file and  sources should be a website journal sources

Week 11

1.Write at least 500 words discussing how text mining and anti-crime applications are making internet crime prevention easier.  Use APA format and Include at least 3 quotes from your sources enclosed in quotation marks.

2.Write at least 500 words comparing and contrasting multi-threading and parallel processing. Use APA format and Include at least 3 quotes from your sources enclosed in quotation marks.

Portfolio Project

 Select an organization that has a Global platform (they operate in more than one country), that has demonstrated operational excellence.  In this paper, perform the following activities:

  • Name the organization and briefly describe what good or service they sell and where they operate.
  • Note how they are a differentiator in the market.
  • Note the resources used to ensure success in their industry (remember resources are comprised of more than just people).
  • Explain what actions the company took to achieve operational excellence.

The above submission should be three pages in length.  Remember the total length does not include the APA-approved cover page or the references.  There should be at least three APA-approved references to support your work.