[solved] – Question 90300

write a program that create a file named “MyFile”.store the following information in the file
name surname icas number
michael samsons 87745

Expert Answer


[solved] – Question 90339

Define and discuss the concept of transitive dependency. Include an example. (

Expert Answer


[solved] – Question 90340

1.1 Write a C++ Program to change the background colors on the screen.

1.2 Write a C++ Program to draw 2 rectangles and fill One of them.

Expert Answer


[solved] – Question 90356

Write a Csharp that will calculate the space of a room as the user will be able to enter the height , weight , roll cover and with then you will calculate the space and convert it from centimeters to meters. All the calculating should be done using void method namely Space and the roll cover the user will enter should increments by 0.5

Expert Answer


[solved] – Question 90374

Question: Write a subroutine to sort an array in ascending order by Selection Sort.
Array should contain 150403780.

in make DOXBOX

Expert Answer


[solved] – Question 90396

Question 3 C#
3.1) Write a C# program that will calculate the space of a room .as the user will be able enter the height, weight, roll cover and width then u will calculate the space and convert it from centimeters to meters .All the calculating should be done using void method namely Space and the roll cover the user will enter should increments by 0.5
Formula
S=(((height*length*witdh)/(roll_cover))/4

Expected output
Length=18
Height=15
Width=20
Roll cover =45.5
Answer=30

Expert Answer


[solved] – Question 9050

Hello , I want to put status in Twitter using C# code .. i m succeeded in auto Logging in Twitter as my Lab assignment but i m un able to put status ,, i m using code for this :

HtmlElementCollection eInputs = ObjHTMLDocument.GetElementsByTagName(“textarea”);
foreach (HtmlElement tweet in eInputs)
{
if (tweet.GetAttribute(“class”).Equals(“twitter-anywhere-tweet-box-editor”))
{
tweet.SetAttribute(“textarea” , “saad”);
break;
}
}
Can any one help me plz ????

Expert Answer


[solved] – Question 90502

Develop an algorithms to compute for the distance d in km and acceleration a in metre per second square of an object B which move through an arc with an initial and final velocities u and v in metre per second at a time t in second

Expert Answer


[solved] – Question 90504

Write an algorithms to compute for the square and average of three differ even numbers

Expert Answer


[solved] – Question 90544

Untitled
1
Integer V lies strictly between integers U and W if U < V < W or if U > V > W.
2
A non-empty zero indexed array A consisting of N integers is given.
3
A pair of indices (P, Q), where 0 ≤ P < Q < N is said to have adjacent values if no value in the array lies strictly between values A[P] and A[Q].
4
For example, in array A such that:
5
A[0] = 0
6
A[1] = 3
7
A[2] = 3
8
A[3] = 7
9
A[4] = 5
10
A[5] = 3
11
A[6] = 11
12
A[7] = 1
13

14
The following pairs of indices have adjacent values:
15
(0, 7), (1, 2), (1, 4), (1, 5),
16
(1, 7), (2, 4), (2, 5), (2, 7),
17
(3, 4), (3, 6), (4, 5), (5, 7).
18

19
For example, indices 4 and 5 have adjacent values because there is no value in array A that lies strictly between
20
A[4] = 5 and A[5] =3; the only such value could be the number 4, and it is not present in the array.
21

22
Now, Find the distances among all adjacent pairs in the array.

Expert Answer