Discussion Topic,due date:21st march-

 Discuss the advantages and disadvantages of each type of testing. When is each type of testing appropriate? Are there situations that preclude the use of a particular type of testing? 

 Note: minimum 300 words not including title and reference page. References should be taken from peer reviwved 

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

Get Answer Over WhatsApp Order Paper Now

1 page Reaction Paper-Mobile First Design- Need it in one hour

1 page reaction paper of the URL below, – Why It’s Great and Why It Sucks- :

https://mayvendev.com/blog/mobilefirst

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

Get Answer Over WhatsApp Order Paper Now

Discussion question with at least 400 words and should not be plagiarized

In a hostage crises, is it ethical for a government to agree to grant a terrorist immunity if he releases the hostages, even though the government has every intention of capturing and prosecuting the terrorist once his hostages are released?

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

Get Answer Over WhatsApp Order Paper Now

Native react coding help

I’m struggling with my sketch design and need some help to do it as Native react code do it could work on expo 

https://expo.io/

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

Get Answer Over WhatsApp Order Paper Now

Write a one to two (1-2) page paper in which you: Describe your experiences related to your setup of MySQL or MS Access.

Lab 3: XAMPP and MySQL or MS Access Setup

Due Week 5 and worth 75 points

 

Install XAMPP and MySQL or MS Access and take a screen shot that shows the MySQL or MS Access prompt on your screen. (Note: You must include the screen shot which shows that MySQL or MS Access is installed on your computer as part of your assignment.)

Research the capabilities of MySQL.

 

Write a one to two (1-2) page paper in which you:

Describe your experiences related to your setup of MySQL or MS Access. Include any difficulties or issues that you encountered during the installation.

Based on your post-installation research, describe the main capabilities of MySQL.

Describe the approach that you would take to go from a conceptual or logical model that you created to the implementation of that database structure in MySQL or MS Access. Determine the additional information that you will need to implement the database design in a database management system.

Include the screen shot which shows that MySQL or MS Access is installed on your computer.

 

Your assignment must follow these formatting requirements:

Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; citations and references must follow APA or school-specific format. Check with your professor for any additional instructions.

Include a cover page containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required assignment page length.

 

The specific course learning outcomes associated with this assignment are:

Describe the role of databases and database management systems in managing organizational data and information.

Recognize the historical development of database management systems and logical data models.

Use technology and information resources to research issues in database systems.

Write clearly and concisely about relational database management systems using proper writing mechanics and technical style conventions.

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

Get Answer Over WhatsApp Order Paper Now

Computer science assignment, please use C++ and Opencv to finish it

For this assignment, you need to implement two different search algorithms to solve a puzzle problem. For this puzzle game, the GUI (graphical user interface) framework is provided that is is developed by C++ and OpenCV library. The technical details are described in the source files of the project. Below is a highlight of the structure.

How to play:

After you run the project, you should be able to see a puzzle game coming out. You can use your mouse to select one piece of sub-image by one click and move it to the blank area by clicking the blank area. At any time, you can hit “s” key to search a solution, which you need to implement. 

Classes Involved:

1. VisualDisplay – This class deals with all the graphical or visual stuff, including pattern generation from an image, user mouse/keyboard interface, ext (You do not need to modify this class).

2. RandomGenerator – This class is used to generate a random sequence of numbers (from 0-8), which are used as the orders of different pieces of an image that present different patterns. (You do not need to modify this class).

3. SolutionSearch – This is the class that provides a solution for a given puzzle. The solution can be found by different search algorithms. (You are required to implement the functions in this class).

Requirements:

You need to implement the a functions in the “SolutionSearch.cpp” file: void SolutionSearch::AStarSearch(int *data, vector<int> &solution)

(1) For the A* search you need to maintain g(x) and h(x) for each node. (25%)

(2) For the heuristic function h(x), you need to use the Manhattan Distance as the metric. (25%)

(3) Use the correct data structure making sure the node with the smallest f(x) = g(x) + h(x) gets expanded first (25%)

(4) Terminate the search when the first goal node is expanded from the memory (15%)

(5) Successfully find the optimal solution. (10%)

What should be submitted:

You can put all your code inside the function “AStarSearch()”. But if you want to create any additional data or functions, you are suggested to put all the created data or functions inside the “SolutionSearch” class, which are considered as the members of this class. So you just need to submit two files: “SolutionSearch.h” and “SolutionSearch.cpp” from the Isidore online system.

Explanation of “AStarSearch()” Function:

For this function, there are two input parameters: the first parameter is the random order of the 9 numbers, which you need to re-organize to make them into the correct order; the second parameter is actually an output. It returns or stores the moving path of the “empty space” that it is involved to make all the sub-images in the correct position. The integer sequence variable “solution” should store all the steps along the “Optimal” path.

For example: 

Input:  data = {0, 4, 1, 3, 8, 2, 6, 7, 5 }; 

Goal:  make it into the correct order {0, 1, 2, 3, 4, 5, 6, 7, 8} 

You need to make the following changes on the number 8, since the number 8 represents the empty space, moving 8 to its neighboring numbers equals to moving the corresponding number to the empty space. Below it shows a demo of the steps: 

  0 4 1   swap with 4       0 8 1   swap with 1       0 1 8     swap with 2             0 1 2     swap with 5       0 1 2

  3 8 2  —————–>    3 4 2  —————–>      3 4 2  —————–>           3 4 8  ——————>     3 4 5  ————> End 

  6 7 5                             6 7 5                               6 7 5                                   6 7 5                               6 7 8 

So from this example, the right path should be {1, 2, 5, 8}. 

WHY? You may thought it was {4, 1, 2, 5}, since the number 8 has swapped with them in this order. That is true. However, we do not care which number it swapped with, but which position the number 8has gone through. As the numbers can be in any positions during different time, which give no hint about where the number 8 is. In contrast, the positions are fixed. So we assume the positions are in the same order as an increasing sequence: 

[0]  [1]  [2] 

   Fixed Position =    [3]  [4]  [5] 

                                 [6]  [7]  [8]

Here, I use “[]” to distinguish the positions from the numbers. So now you can see, the number 8 starts from position [4], then swapped with number 4, which goes to the position [1]; then swapped with number 1, which goes to the position [2]; then swapped with number 2, which goes to the position [5]; finally, swapped with number 5, which goes to the position [8]. So the path you should assign to the parameter “&solution” with the path sequence {1, 2, 5, 8}.

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

Get Answer Over WhatsApp Order Paper Now

Create a web application

Create a web application to match the topics discussed in the Capstone

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

Get Answer Over WhatsApp Order Paper Now

Quiz 5

  

Create two essay questions and associated answers.

Topic: Wharton Managing Emerging Technologies – Assessing Future Markets and new Technologies.

Need two (2) pages (500-600 words) of answer according to the text book Wharton Managing Emerging Technologies with APA standards and appropriate references. 

No plagiarism and on time delivery. 

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

Get Answer Over WhatsApp Order Paper Now

operation security

1.  Discuss the issues of availability versus confidentiality of the DR and BC plans. The recommendation is for all DR team members to have several copies of these plans, at the office and at home, and perhaps even in their vehicles to ensure that the plans are available for a sudden onset disaster. Consider the confidential nature of these plans, and the financial damage that could occur if competitors obtained these documents. How can an organization meet this objective and also protect this sensitive information? Consider accidental loss, employee resignation, theft, etc. 

2.  Server rooms often have halogen systems for extinguishing fires. An accidental discharge of the halogen could have disastrous results. Ask students to describe the effects of halogen systems on equipment and personnel. Should this possibility be included in the DR plan? What recommendations would you make for this scenario? 

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

Get Answer Over WhatsApp Order Paper Now

Operating Systems: PoswerShell classes

 

Work with PoswerShell classes to gain mastery knowledge of PoswerShell objects.

(1) Write 10 scripts to demonstrate the use of PoswerShell objects. Please make sure all scripts are useful to Operating Systems functionality

(2) Demonstrate working knowledge of each PowerShell objects- Each script should include 5+ commands/lines of code
Please know screen print alone is not enough to demonstrate your working knowledge (the know-how). Explain how these scripts are useful.

(3) Submission Requirements – (a) Screen Print – showing the result of each script. (b) Detail explanations of each script (what it does, how it works, …). (c) Script  source code

(4) Please make sure to include references used to complete the assignment.

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

Get Answer Over WhatsApp Order Paper Now