[solved] – Question 89077

Write a method that builds an array by appending a given number of random two-digit integers. It should accept an array and how many values to add as parameters.
Print the array after calling the array.
Sample Run:
How many values to add to the array:
12
[14, 64, 62, 21, 91, 25, 75, 86, 13, 87, 39, 48]

Expert Answer


[solved] – Question 8908

910209 – Where’s ResizeEnd event?
hi
i need to know when resize ends in my Silverlight application. how can i do that?
ResizeEnd exists in a form application, but not in a Silverlight application. how can i resemble it?

Expert Answer


[solved] – Question 89094

You are given the position as Network Administrator at Richfield Graduate Institute of Technology and using Windows server 2012.Explain how you would assign a static IP address to a computer.

Expert Answer


[solved] – Question 8912

write c++ program to find the summation of odd numbers in 2D-array

Expert Answer


[solved] – Question 8913

write c++ program to multiply the array elements by 2*[A ]= A[i]*2;

Expert Answer


[solved] – Question 89131

As in the previous exercise, start with the program of Exercise 8 in Chapter 9. This time,
add a function that rounds a bMoney value to the nearest dollar. It should be used like
this:
mo2 = round(mo1);
As you know, amounts of $0.49 and less are rounded down, while those $0.50 and above
are rounded up. A library function called modfl() is useful here. It separates a type long
double variable into a fractional part and an integer part. If the fractional part is less than
0.50, return the integer part as is; otherwise add 1.0. In main(), test the function by sending it a sequence of bMoney amounts that go from less than $0.49 to more than $0.50.

Expert Answer


[solved] – Question 89133

The mainline logic of almost every procedural program consists of three parts
namely housekeeping tasks, detail loop tasks and end-of-job tasks. By making
use of flowcharts, show how these parts can be implemented in your solution
for Question 2.1.

Expert Answer


[solved] – Question 8914

Your lecture wishes to store the exam marks for java,and perform an analysis of the marks.The marks are expressed as a percentage.There are 15 students that wrote the exam. Write the java program that will enable her to:
-input the marks for each student and store in an array called Supp.The input must be validated befoe being stored
-Determine and display the highest and lowest mark.
-Determine and display the average mark for the supplementary exam.
-Determine and display the mean and median(mean is calculated as the average of the lowest and highest marks)
E.g input:15 27 38 2 98 42 87 92 99 13 5 72 67 2 1
Output:
highest:99
lowest:1
median:38
average:44
mean:50

i’d be grateful for your help.
NB: URGENT!

Expert Answer


[solved] – Question 8915

using the following code fragment describe the following feature:
types
field = record
vertical:(a,b,c,d,e,f,g,h);
horizontal:1…8

function of the course horse (n1, n2) tests a horse from the field to declare n1 max if the king is in the field of n2

Expert Answer


[solved] – Question 8916

The program should use Zelle’s graphics. Use a random number generator to select a point and a perhaps radius around that point. These determine the target ‘hole’ and are not revealed to the player. The user is then permitted to click around on the screen to “find the hole”. You should show each point the user tries immediately after the click. Once the user selects a point that is within the chosen radius of the mystery point, the circle should appear. There should be a message announcing how many steps it took.

Expert Answer