[solved] – Question 84233

“Our company needs a mobile application to keep track and manage the testing conducted continuously in different development projects. Today, our build and test system sends emails every day to inform our developers and managers of the current test and build status. This app should be able to give more up-to-date, accurate and understandable summary of the information. Based on the situation, user should be able to take corrective actions and decisions. Thus, we would like to offer an opportunity for your company to develop this application with us. However, we have contacted several other companies too to bid for this project and make the selection based on how well the company can fullfil our requirements.”

•Determine the project objectives and scope ;
•Describe the software design requirements;
•Verify and validate the requirements;
•Review the requirements specifications;
•Prototype the requirements; and
•Reuse the requirements.

Expert Answer


[solved] – Question 84234

Using HTML code, create a web site about yourself that meet the following site requirements:

•Home page: This page will include a brief introduction of the web site, links to the other pages, pictures, etc.
•About me page: This page tells about yourself, your skills and everything that people need to know about you, pictures, etc.
•Content Page: This page will include information either about your family, your hobbies, achievement or other contents of your interest.
•Pictures page: This page will include an organized set of appropriate pictures.
•Future Plans Page: This page will include an outline of what you plan to do in the future.
•Resume page. You need to create a resume for yourself and post it on this page.

Your web site also should consider the following guidelines:
a.Suggest any attractive names for the web site
b.Organize the contents such as text or images by using the table layout
c.Use appropriate graphics or images, colours, texts and fonts.

Expert Answer


[solved] – Question 84235

Write a JavaScript program that prompts for an employee name, employee no, rate of pay and hours worked, and computes the total pay for the employee. If the hours worked is greater than 40 hours, compute by using 1.5 times regular rate for the extra hours. For example, if one works for 50 hours and the rate paid is RM10.00/hour, the total pay should be RM550.00.

Include screenshots that show the output of each code for working hours < 40 hours, = 40 hours, and > 40 hours. Sample window shown on Figure 1.

Expert Answer


[solved] – Question 84266

Add the even numbers between 0 and any positive integer number given by the user.

Expert Answer


[solved] – Question 8429

is having two methods in a class permissible? why?
explain the purpose of a constructor and the implication of having two in one class.

Expert Answer


[solved] – Question 84303

Create an application that displays the average of three test scores entered by the user. Use the following names for the solution and project, respectively: Average Solution and Average Project. Display the average with two decimal places. Code the application using the Val and Format functions. Add appropriate comments in the General Declarations section and in the coded procedures

Expert Answer


[solved] – Question 84381

Free response: Spot and Fix the Bug
Respond to the following questions about your investigation into the bug with the counting game. Feel free to go back and look at the game again (but do so in another tab or be sure to click “Submit” to save your work!):

From the user’s perspective, what was the difference between the first version of the game and the one with the bug?
From looking at the code, what specifically was the difference between the two, and why is that an issue?
How did you fix the bug?

Expert Answer


[solved] – Question 84398

A 3.5inch diskette labeled 2HD has a capacity of 1.44MB.
Convert 1.44MB to bytes.

Expert Answer


[solved] – Question 844

Write a java program. User enters size of a triangle from 1-50. Print the triangle in asterisks. The user’s input is the middle of the triangle. For example, if the input is 3, the triangle will look like this:
*
**
***
**
*
You have to use nested for loops. So far i did the top half of the triangle:

for(row = 1; row <= size; row++)
{
for(col = 1 ; col <= row ; col++)
{
System.out.print(“*”);
}
System.out.println();
}
Now i have to do the bottom half and do not know how.

Expert Answer


[solved] – Question 8440

what’s the difference between the following functions?

Void init1 ()
{
Static int yrs = 1;

Cout << “The value of yrs is ” << yrs << endl;
Yrs = yrs + 2;

return;
}

Void init2 ()
{
Static int yrs;

Yrs = 1;
Cout << “The value of yrs is ” << yrs << endl;
Yrs = yrs + 2;

return;
}

Expert Answer