Tag Archive for: Assignment Help Online Services Collections

Computer Science 2023 Software Systems Engineering Process – Software Development Process Improvement Plan

2023 Individual Project Software Process Improvement working on several aspects of software development | Assignment Collections

Individual Project

Software Process Improvement

 

working on several aspects of software development process improvement that will result in a complete Software Development Process Improvement Plan for a hypothetical organization of your choosing.

 

See attached document

 

APA Format

 

Full Document is to be completed for this assignment. Must follow the attached document and complete all sections.

 

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

Computer Science 2023 DB COMPUTER

2023 You are the new manager for a family owned coffee shop You recently hired a part time | Assignment Collections

You are the new manager for a family-owned coffee shop.  You recently hired a part-time employee, who is visually impaired, to assist with record-keeping activities.  The coffee shop’s owners have asked you to assess their current input and output devices and make recommendations for assistive technologies. The new employee will need to enter data and review on-screen and printed information.

Discuss the following:

Research the web to find information about assistive input devices, such as voice recognition and larger keyboards.  Research output devices,such as large-screen monitors and Braille printers.  Research costs for implementation,and any grants your company can apply for to ease the costs.

Your initial post must be at least 75 words.

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

Computer Science 2023 Using Backups for complete Recovery

2023 iLAB OVERVIEW Scenario and Summary Successful database recovery relies on the database being backed This is what enables the | Assignment Collections

iLAB OVERVIEW

Scenario and Summary

Successful database recovery relies on the database being backed. This is what enables the database to recover data that were lost due to a media failure, loss of power, or any other type of disaster. Each time the online line redoes logs filled up in a log group, the DBMS issues a log switch that will move the log writer process from the current redo log group to the next one in line. The archive background process begins archiving the data in the full online log group files to the archive log files. This is done simultaneously for each log file in the group. If media recovery is needed at the time that the database needs recovery, then the DBMS will search through the archived log files to find the ones that need to be used.

In Part 1, you will use mysqldump command to dump database, expand tables, and restore database.

In Part 2, you will use MySQL Workbench to back up, expand tables, and restore the database. 

Note: Be sure that you are making screenshots and save in Lab4 Report.

Deliverables

Grading of the lab assignment will be based on the following.

Assignment Step

Description

Points

 

Part 1: Take Dump/Backup and restore database  using command line

 

Step  1

Taking a backup of the database

5

Step 2

Expand table

5

Step 3

Restore and recover the database

10

 

Part 2: Backup and Recovery using MySQL Workbench

 

Step  1

Taking a backup of the database using Export to Dump Project Folder

5

Step 2

Taking a backup of the database using Export to self-contained file

5

Step 3

Expand table

5

Step 4

Restore database using  Import from Dump Project Folder

10

Step 5

Expand table

5

Step 6

Restore database using  Import from self-contained file

10

Total iLab Points

 60

The Report file should be a single file called yourname_Lab_4.doc to submit to the Dropbox for the Week 4 iLab.

Your report should show any queries, create statements, or other SQL code, along with the resulting return from the database.

 

 

 

iLAB STEPS

Part 1: Take Dump/Backup and Restore Database Using Command Line

Step 1: Taking a Backup of the Database

1.      Go to MySQL Command line – Unicode and enter password.

2.      There are several databases here now. To list them, type:

Mysql>show databases;

3.      Identify required database;

You have to make database backup to be used later to restore.

4.      Confirm the location of mysqldump utility on your local machine.

Usually, it is:

C:Program FilesMySQLMySQL Server5.6bin

5.      Go to Start – Accessories – Point to Command Prompt and right-click on Run as administrator (to be able to have all types of access on PC).

6.      Set up location using cd command: type in Command prompt:

C:user username>cd C:  and press Enter

C:>cd Program Files and press Enter

C:\Program Files> cd MySQL and press Enter.

C:Program FilesMySQL>cd MySQL Server5.6 and press Enter.

C:Program FilesMySQLMySQL Server5.6>cd and press Enter.

7.      Use mysqldump utility.

a)       In Command prompt, type:

Mysqldump –uroot –p databasename > c:backup file name with extension .sql

For example: “c:mis561.sql”

Where sign > means to take output (from the left part) and put into the input (right part). All SQL instructions will be written to back-up file.

Note: The location of back-up file has to be enclosed into the double quotes.

 

Example:

C:Program FilesMySQLMySQL Server5.6bin>Mysqldump –uroot –p databasename >c: backup file name with extension .sql

b)      Enter password; press Enter;

c)      In case of error Could not execute SELECT @@GTID_Mode, re-type with GTID options:

Mysqldump –uroot –p  -set-gtid-purged=OFF  databasename > “c:backup file name with extension .sql”

d)     Enter password;

Please note that c) and d) are needed only in case of error.

Save screenshot

e)      To verify back-up file:

Start -All programs-Computer-Local Disk (C)-backup file.sql

Save screenshot

8.      Go to MySQL Command line – Unicode Using DESCRIBE statement show the columns in the table

Mysql>describe databasename.tablename;

Save screenshot

Step 2 Expand table

1.      Using ALTER command add 2 columns to the table

Mysql>ALTER table databasename.tablename

ADD col1 varchar(10);

Save screenshot

2.      Using DESCRIBE statement show the columns in the table

Mysql>describe databasename.tablename;

Save screenshot

 

Step 3 Restore and recover the database

1.      Go to Start- Accessories – Point to Command Prompt and right click on Run as administrator (to be able to have all types of access on PC)

2.      Set up the location: type in Command prompt:

C:user username>cd C:   and press Enter

C:>cd Program Files and press Enter

C:\Program Files> cd MySQL and press Enter

C:Program FilesMySQL>cd MySQL Server5.6 and press Enter

C:Program FilesMySQLMySQL Server5.6>cd bin and press Enter

3.      Type:

C:Program FilesMySQLMySQL Server5.6bin>Mysql –uroot –p databasename < “c:backup file name with extension .sql”

Where sign  <  means to take output (from the right  part) and put into the output (left part). Database will be restored.

Note: The location of backup file has to be enclosed into the double quotes.

Save screenshot

4.      Go to MySQL Command line – Unicode Using DESCRIBE statement show the columns in the table

Mysql>describe databasename.tablename;

Save screenshot

Part 2 Backup and Recovery using MySQL Workbench

To Backup database

1.      Start MySQL Workbench

2.      Connect to database and Test connection

3.      Double click on Connections to connect the database; Enter Password

4.      On Navigator panel under the Management click ‘Data Export’, enter password

5.      On Data Export screen highlight the database name and check it;

6.      Click Select tables button if you want to back up the entire database;

7.      There are 2 options to save backup file.

Option 1

·         Export to Dump Project Folder. Choose this option and back up all tables. Click Start Export, enter password, and review created .sql files (separated for each table in database). It allows you to restore the selected tables in a future. Save screenshots.

·         Close Administration – Data Export tab.

·         Go to the Windows Employer, review folder dumps content. Save screenshots.

Option 2

Repeat steps 5 and 6.

·         Export to Self-contained file. All tables in database will be stored in one file. Choose this option and give the unique name to the backup file to help you to identify file in a future. Click Start Export, enter password.

·         Save screenshots

·         When export is finished, close Administration – Data Export tab.

·         Go to the Windows Employer, review folder dumps content. Save screenshots.

8.      Expand table Employee by adding 2 columns. Please use Query 1 screen.

Hint: Add columns using ALTER command. Highlight query, choose Query in toolbar and click Execute current statement

          Save screenshots

9.      Show new table

          Click icon Create new SQL tab for executing queries (located under the File) to display expanded table.

Hint: Use DESCRIBE statement. Highlight query, choose Query in toolbar and click Execute current statement

          Save screenshots

To Restore database

10.  Click on Data Import/Restore, enter password

Option 1

a.       Choose Import from Dump Project Folder and insure that the file location is correct

b.      Select Schema on Select Database object to Import (only available for project folders)

c.       You have an option to select which table to restore and click Start Import; enter Password

d.      Save screenshot with successful completion

e.       Close Administration – Data Import/Restore tab

f.       Click icon Create new SQL tab for executing queries (located under the File) to display restored table.

g.      Save screenshot

Option 2

11.  Repeat Step 8, Step 9 and Step 10. Enter password

12.  Now, restore from Import from Self-contained file

a.       Choose Import from Self-contained file

b.      Select file you want to restore

c.       Click on Start Import; enter password;

d.      Save screenshot with successful completion

e.       Close Administration – Data Import/Restore tab

f.       Click icon Create new SQL tab for executing queries (located under the File) to display restored table.

 

g.      Save screenshot

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

Computer Science 2023 Technology Projects

2023 Part 1 Sunstein 2014 suggested that many people making small contributions can complete significant projects There are several | Assignment Collections

Part 1:

Sunstein (2014) suggested that many people making small contributions can complete significant projects. There are several stories of an idea taken on by a small group of people and transformed into a very significant development (Bill Gates and Microsoft come to mind). Describe such an action and how this action affected technology and the world in a positive manner. Were there any downsides to the results?

Part 2:

Contributing to a project is an important part of working in a team environment.  Consider a scenario where you’re interviewing for a position and are asked to discuss your previous contributions to a team in an ethical context. How can you best convey your skills in working with a team while maintaining your ethical boundaries?  Research appropriate interview styles and identify what interview style will work to convey your abilities in this area.

Sunstein, C.R. (2014). Nudging: A very short guide. Journal of Consumer Policy 37, 583-588. https://doi.org/10.1007/s10603-014-9273-1 

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

Computer Science 2023 CIS524 Week 10 Discussion 1

2023 Characterizing Data Types Please respond to the following Justify characterizing data types | Assignment Collections

“Characterizing Data Types” Please respond to the following:

  • Justify characterizing data types according to task taxonomy. Support your response.
  • Assess the value to an interface designer, of being familiar with the seven basic tasks and create an argument for which three of the seven basic tasks are the most important to incorporate in a design.

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

Computer Science 2023 CSS/562: Programming Concepts – NetBeans JAVA Programming

2023 I have 2 Assignments to be completed and I require for both of the assignments the use | Assignment Collections

I have  2 Assignments to be completed and I require for both of the assignments the use of only NetBeans. No other JAVA programming tool accepted. Therefore, programming only with NetBeans.

Assignment 1:  Wk 2 Assignment: GUI and Input, Output, and Variable

 

Assignment Content

  1. In your position as the leader of a programming team, sometimes you need to take on tasks when the team is overloaded with work. Your team is currently busy, so you are taking on a customer request to create a business application that allows the user to determine an approximate cost for a business trip. The customer will add functionality and features to the application throughout the development process. You will continue to modify this application throughout the remainder of the course.

    Create a Java™ travel authorization request graphical user interface (GUI) application via NetBeans to calculate the cost of a business trip.

    Include the following functionality:

    • Traveler name (text field)
    • Airfare cost (text field)
    • Food cost (text field)
    • Hotel cost (text field)
    • Car cost (text field)
    • Shuttle cost (text field)
    • Summary: Display request total in label (must use a variable to store each item and calculate totals)
    • Button
    • The user will enter the name of the traveler and the cost of each item for a trip request. When the user clicks the calculate button, 10% of the total amount will be added to the trip total and be displayed in the Summary field. The use of variables are required to store the costs of the individual items.

      Submit your assignment as follows the Netbeans project file (export/zip file), cut/paste the source to a MS Word document and a screen shoot of the output. Also, let me know if you are using a Mac or a PC platform.

Assignment 2:  Wk 3 Assignment: Condition/Objects

 

Assignment Content

  1. The customer is pleased with the first set of functionality and features added to the business application in Week 2. This week the customer wants you to add functionality and features to the application you created last week.

    Modify the deliverable from Week 2 to:

    • Include a combo box for the locations with five cities of your choice.
    • Modify the food field to make it automatically place a value in that field based on the location selected.
    • The values for the food field will be 70 when the first location is selected and 80 when the second location is selected.
    • The food values will then increase by 5 for the remaining locations when selected.
    • Add to the car field to allow for three rental car companies to select from using a radio button.
    • The value for the cost of the rental car will remain as a text field.
    • Submit your assignment.

Both assignments to be submitted by latest coming Monday 07.12.2020 6PM of USA Arozona Time

Required Files: NetBeans Exported ZIP File, Code copy to Word, a screenshot from the output showing that the displayed program GUI is working sucssesfully.

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

Computer Science 2023 Assignmt

2023 The false discovery rate FDR provides an error metric to measure the rate of false positives false discoveries This | Assignment Collections

 

The false discovery rate (FDR) provides an error metric to measure the rate of false positives/false discoveries. This is pertinent data as we process the data set. Is there a point when you would not correct this?

In addition, please discuss the relationship between Type I and II errors. Is this relevant to the analysis?

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

Computer Science 2023 Computer Security – Industrial Espionage

2023 Required Videos https www youtube com watch v 8b9fYVG1FuY Required Readings Read Chapter 7 of the Easttom text Industrial Espionage in Cyberspace | Assignment Collections

Required Videos

Required Readings

Read Chapter 7 of the Easttom text, Industrial  Espionage in Cyberspace

Primary topics:

  • Information as an Asset
  • Real-World Examples of Industrial Espionage
  • Steganography
  • Phone Taps and Bugs
  • Spear Phishing

Week Eight Assignment

Consider this hypothetical situation:

David Doe is a network administrator for the ABC Company. David is passed over for promotion three times. He is quite vocal in his dissatisfaction with this situation. In fact, he begins to express negative opinions about the organization in general. Eventually, David quits and begins his own consulting business. Six months after David’s departure, it is discovered that a good deal of the ABC Company’s research has suddenly been duplicated by a competitor. Executives at ABC suspect that David Doe has done some consulting work for this competitor and may have passed on sensitive data. However, in the interim since David left, his computer has been formatted and reassigned to another person. ABC has no evidence that David Doe did anything wrong.

What steps might have been taken to detect David’s alleged industrial espionage?

What steps might have been taken to prevent his perpetrating such an offense?

Write your answer using a WORD document. Do your own work. Submit here. Note your Safe Assign score. Score must be less than 25 for full credit.

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

Computer Science 2023 Individual Project

2023 Hello COURSE Physical Security In the realm of IT Security policies should include a Physical | Assignment Collections

Hello,

 COURSE : Physical Security

In the realm of IT Security, policies should include a Physical Security Policy.

Our dependence on computers has resulted in massive amounts of sensitive, and valuable information being physically and digitally stored.  This dependence has increased the need for digital based security along with digitally based products. A comprehensive IT security policy is not enough if you want peace of mind. Organizations must have an adequate physical security policy.

  • Write a Physical Security Policy, a minimum of 1.5 pages

Review the article.

http://resources.infosecinstitute.com/security-policies-include-physical-security-policy/#gref

I need in APA format with citations(Referential).

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

Computer Science 2023 CISSP Assignment 1

2023 Assignment 1 Business Continuity Plan Report Due Week 3 and worth 50 points | Assignment Collections

Assignment 1: Business Continuity Plan Report
Due Week 3 and worth 50 points 

During your first week as a Senior Information Systems Security director, you met with the Chief Information Officer (CIO) and Chief Security Officer (CSO). During the meeting, they revealed their deep concerns with the organization’s business continuity plans (BCP). Since you were previously responsible for BCPs for a large enterprise they are requesting that you review the company’s BCP staffing plans and training plans.   

They would like you to provide a report with your findings and recommendations for corrective action.   

Additionally, include why it is important to include legal representatives on the business continuity planning team and provide an example of laws or regulation the company should include to remain compliant.   

While there is not a specific page requirement for this assignment, students are required to fully develop ideas and answer questions to the point that no further questions are left in the mind of the reader. If the instructor can clearly find the answers to their questions, the ideas within the report are fully developed. If there are unanswered or under-answered questions, further development of the report is required.  
Keep the following in mind: 

3 pages min

  • More words do not necessarily indicate more meaning.  
  • When an employee is tasked with a project in the workplace that requires a report, the report should fully answer all the questions needing to be answered. In this school environment, students are learning how to prepare such documents.   
  • Consider your audience. Although instructors are very knowledgeable on the subject matter, they need to verify that the student has absorbed the material through a written report. Students should therefore write to an audience of a co-worker or classmate who does not know the answers to the questions posed.  
  • For students who are more comfortable with more specific guidelines, ideas can generally be developed in one to three paragraphs. The goal of writing in this class is to demonstrate what you have learned.   

Assignment grading will be based on answer quality, logic/organization of the paper, and language and writing skills, using APA format and the following rubric

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now