[solved] – Question 98365

Write a C++ program which reads in a line of text and counts the number of occurrences of the word ‘the’ in it. It outputs the line of text on one line, ‘The number of times the ppears is’ and the count on the next line using a single cout statement.

Expert Answer


[solved] – Question 98447

Write a for loop to print the numbers 5, 10, 15 … 75.

Sample Run

5 10 15 20 25 30 35 40 45 50 55 60 65 70 75

Expert Answer


[solved] – Question 98486

*Explanation:*
Write a program for which the user has to log in before he/she can access it. The user supplies *two numbers* and the *sum of these numbers* (answer) himself. The program then shows whether the answer is *right* or *wrong*.

Expert Answer


[solved] – Question 9849

Create a program containing and showing random information about name, ID
and status (year, current and cumulative performance) of students from a file
students.txt. This program should process a list of 20 students, filtering those of
them having a name beginning with the same letter (prompt the user to choose
one), who are third year students and have current as well as cumulative
performance above the average of this filtered list. Sort the filtered users
according to their user ID (you can use bubble sort etc). Save the
results in file studentsFilter.txt.

Expert Answer


[solved] – Question 985

I am working on a program to scroll text vertical with a start and pause button and I can not get the text to move. Can you provide assistance? Here is my code:

function moveMarquee(){

for (var i=0; i < marqueeTxt.length; i++){

topPos = parseInt(marqueeTxt.style.top);

if (topPos < -110) {
topPos = 700;
} else {
topPos -= 1;
}

marqueeTxt.style.top = topPos + “px”;

}
}

Expert Answer


[solved] – Question 98550

a hospital name xyz requires a laboratry system and has contacted your firm.you have 20 programmers out of 15 are busy

Expert Answer


[solved] – Question 98562

Write a program to input 6 numbers. After each number is input, print the biggest of the numbers entered so far.

Expert Answer


[solved] – Question 98578

During their life time operation software system have to change if they are to remainuseful. Explain why?

Expert Answer


[solved] – Question 9858

Write a class named Rectangle, which represents different rectangles. The private data fields are width, length, area and color. Use double for width and length and String for color. The methods are getWidth(), getLenght(), getColor() and findArea(). Use a class variable for color.
Include the above class in a program that uses it.

Expert Answer


[solved] – Question 98580

Legacy system are not just software system but are broader socio-technical system that includes various inter-related part. Discuss this logical part of a legacy system

Expert Answer