The Grades Array

Q1) Make the grades array.Q2) Using an ehanced for loop, add up the numbers in the last array [1,3,2,1,1].Q3)Do the same but with a traditional for loop.Q4) Write code to swap the 2 arrays [3,1,2] and [1,7,2]. // Look at the shoelace patternQ5) Using a traditional for loop, add up the first elements of each array (3 + 4 + 1 + 1).Q6) Do the same but with an enhanced for loop.Q7) Replace the array [4,3] with the array [1,2,1].Q8) Add up all the numbers in the 2D array using an outer enhanced for loop and an inner traditional for loop.Q9) Add up all the numbers in the 2D array using an outer traditional for loop and an inner enhanced for loop.Q10) Make grades refer to this new 2D array => { {1,2}, {1,1,1}, null }.Q11)a) scores is a 2D array of Integer, some of the arrays are null and some of the elements inside some arrays are null. Add up all the Integers without making your program crash.b) loop scores and remove any arrays with a length less than 3 (avoid nulls)Q12) Data is a 2D array of double (there are no nulls). Write code to add up its diagonal elements using only one traditional for loop (see pic.)

Read more

White Pig Consulting

Case Study: White Pig ConsultingWhite Pig Consulting Ltd is a group of twenty-five consultants specialising in strategic planning, financial planning, change management and corporate governance. The group has been operating from their Nicosia offices in Ermou Street for over forty years and is a highly respected company with a long list of important clients. The company is now headed by Richard Goldbury after the recent retirement of Edward Corcoran. Under Mr.Corcoran the company operated the way it had for the last forty years: by using manual systems, a typing pool and lots of filing cabinets. Mr.Goldbury is determined to bring things up to date and has just purchased Bluetooth-enabled mobile phones for all consultants. He has engaged your company, Information Systems Implementation Services, to install a new information system. As the newly appointed Project Manager it will be your job to plan and then implement this project. Mr.Goldbury has requested that the project be complete and operational by 1st June.Project Requirements White Pig Consulting Ltd have the following information system requirements at this time: •Install a network of computers in each professional and administrative office. The network operating system should be Microsoft. •Mr. Goldbury does not know much about computers but thinks that PCs running Windows 10 Professional would be appropriate. He is keen that only ‘the best’ machines be used and has requested that you supply only IBM computers and HP printers. There are twenty- five consultants (including Mr. Goldbury) and ten assistants (each of whom will need a computer). The administrative office is to be re-organized(after most of the ten typists are retrenched) and will have a total of five administrative staff. Mr. Goldbury thinks that each of these staff should have their own computer. Each of the con-sultants (and assistants) will also need their own (small) laser printer. The administrative office will require two larger, faster laser printers with several paper trays. The building in which Paramount are housed is quite old, but provision can be made for network cables in the ceiling. There is no room suitable for a network server but Mr. Goldbury will authorize some building work to convert a storeroom for this purpose. •Install Microsoft Office XP (Professional) software on all computers. •Install broadband Internet access (via Fiber cable) and ensure all computers in the network have Internet access. •A set of Excel VBA spreadsheets macros to make up the information system that will be used by the consultants in planning their work. Mr Goldbury has detailed the requirements here and you will write these macros in Visual Basic for Applications (VBA). •Install a new accounting system using MYOB. Access to this system should be available to two administrative staff to send invoices, enter payments and print accounting reports. •Create a simple Web page advertising the company’s presence. •Most consultants often work from the premises of their clients and, although they try to take all relevant documentation with them, sometimes need additional files from the office. The system should al Tatnall & Reyes 165 low them to download these files while ‘on the road’, using Internet access via a laptop. Purchase five Bluetooth enabled laptop computers (IBM) and set up connections to the mobile phone of each con-sultant. Set up access, via the Internet, to relevant files in the office.Assignment 1b (The Project Plan)You should ensure that your project has no over-allocated resources, or dangling tasks. Before submission you should save the project with a baseline. You should include:• A letter and firm quotation to White Pig Consulting Ltd. This letter should summarise the important items in the budget and schedule, and indicate any important dates – such as when cabling work is to occur, when training is planned and when the project is to be completed. It should, however, include only information that is relevant to White Pig Consulting Ltd, and be expressed in a form that will be readily understood.• A memo to your boss, the Director, including: table of contents and executive summary, a list of any assumptions you have made, and any special requirements for the project, a detailed Gantt chart showing the critical path, with a baseline project schedule, a Network diagram (PERT chart) with no dangling tasks: that is, every task should be on a path from the first to last task, a Microsoft Project summary report, a series of other reports showing detailed costing, and resource usage.• Do you agree with the idea of Mr. Goldbury? What will you change in order to update the office?

Read more

Connection Diagnostic Tool

If the Quickbooks Database Server Manager is not working problem. Also, if you notice an error related to the Quickbooks Database Server Manager.In case the Firewall has not been updated and is not compatible with the version of Quickbooks you are using.To fix corrupted Quickbooks files. Not only if it is corrupted, but also if it is broken or damaged.At instances when the vendor and customer list are empty.If you are not being able to update entries.To resolve the H series errors in multi-user mode.To get more data on the tool you can click on the link that is given above in the post.

Read more

Programming With C++

Builders Inc. wants a program that allows its sales clerks to enter the diameter of a circle and the price of railing material per foot. The program should calculate and display the total price of the railing material. Use 3.1416 as the value of pi. First, create an IPO chart for this problem, and then desk-check the algorithm twice. For the first desk-check, use 35 feet as the diameter and $2 as the price per foot. For the second desk-check, use 15.5 and $3.50. After desk-checking the algorithm, list the input, processing, and output items in a chart similar to the one shown in Figure 3-25, and then enter the appropriate C++ declaration statementsSave your document( AS A CPP FILE) with the name material followed by your initials.Example material-rf.cpp

Read more

A Single Switched LAN

Description:You are asked to develop a replicator (client) that distributes a large job over a number of computers (a server group) on a single switched LAN (our Linux lab). In this assignment, a large (simulation) job can be divided into a number of small jobs, each of which can be assigned to one machine from the server group for execution. The execution results of the small jobs can be merged once all of them successfully terminate.System Architecture:client server1 server2 server3 … | | || | | |LANThe client and servers are running Network File System (NFS) so that user files are visible at $HOME directory. You may want to set up the following environment:$HOME/replicate.hosts: a list of (server) hostnames which participate in the simulation. There is no reason why your implementation cannot support up to 10 server$HOME/replicate_out: the directory that stores the small job execution result.The simulation program ” hyper_link ” (binary) is provided. In this assignment, you don’t need to know or care what “hyper_link” does, and actually it is a computing intensive (CPU demanding) simulator. The command line arguments of “hyper_link” are job# 1000000 999 1 2 2 100, where the job number determines the number of small jobs in your simulation. To allow the client to run a large job, the job# should be given in a tuple: start, end, and step. For example, the command (from the client) “hyper_link 1 100 1 1000000 999 1 2 2 100” yields 100 small jobs with the job# starting from 1 to 100. Each small job produces a screen output (see example below) at the end (if finished successfully). Your code needs to redirect the output to a file and save it in $HOME/replicate_out. For example (on the server side)

Read more

Transitioning a Network

You are required to identify a problem or opportunity in the IT area and develop a solution to the problem. The project should integrate theory and application from across your educational experience and allow you to showcase your academic learning. During the course, you will identify a problem, develop requirements based on stakeholder needs, develop a design after considering alternative solutions, implement the solution (virtually is sufficient), and test the solution. Your design and test plans should take into consideration the end-user as well as the broader context of the end-user. The course culminates in a final presentation and final report.

Read more

Software Systems

Discuss two reasons why software systems tend to degrade over time. For each reason, identify a strategy a team could take to fight entropy.

Read more

Creating an IPO Chart

2 different assignments. Need them finished in 10 to 12 hours.1-Please complete the following assignment using visual studio and upload the project or .cpp file:Instructions: Write a cpp program to print “Hello, World!—————————————————————————————————-2- Archie wants a program that calculates and displays a team’s final score in a football game, given the numbers of the team’s field goals, touchdowns, one-point conversions, two-point conversions, and safeties. First, create an IPO chart for this problem, and then desk-check the algorithm twice. For the first desk-check, use 3, 2, 2, 0, and 1 as the numbers of field goals, touchdowns, one-point conversions, two-point conversions, and safeties. For the second desk-check, use your own set of data. After desk-checking the algorithm, list the input, processing, and output items in a chart similar to the one shown in Figure 3-25(SEE ATTACHED BELOW), and then enter the appropriate C++ declaration statements.Save your document(cpp file) with the name football followed by your initials. Example football-rf.cpp

Read more

Careers of Interest Salary

Review the videos in this section. After viewing, create a 2page Word document in APA format. Your topics include:A brief description of 2 careers, 1 in your major and the second in the technology field.Describe each career in detail including salary (based in MD, VA, and DC geographical area), education level or certification needed, and duties.What emerging technology (within the past 5 years) is used in the industry (your chosen career) to improve production or work flow.What are the ethical issues.Include 4 references.n this assignment you will research information about your careers of interest salary, education level, duties, ethical issues,and emerging technologies. You want to find out what a person in each career does but you also need to investigate criteria for each career that we will use for evaluation

Read more

Ethnography Methods

Suggest two contexts where ethnography might be a challenging method of requirements engineering. For each context, how would you recommend that your team elicit requirements? why ? and how ?

Read more
Enjoy affordable prices and lifetime discounts
Use a coupon FIRST15 and enjoy expert help with any task at the most affordable price.
Order Now Order in Chat

Ensure originality, uphold integrity, and achieve excellence. Get FREE Turnitin AI Reports with every order.