Programming & Computer Science Answers

C++ 9913
Python 5288
Java | JSP | JSF 3611
C 1680
C# 1362
Computer Networks 989
Algorithms 652
Databases | SQL | Oracle | MS Access 641
HTML/JavaScript Web Application 588
Other 537
Visual Basic 358
Assembler 209
Software Engineering 202
AJAX | JavaScript | HTML | PHP 166
MatLAB 150
MatLAB | Mathematica | MathCAD | Maple 124
Action Script | Flash | Flex | ColdFusion 112
UNIX/Linux Programming 89
Web Development 73
Excel 36
ASP | ASP.NET 23
Delphi | Pascal 21
Perl 16
Prolog 9
Functional Programming 9
MathCAD 5
Wolfram Mathematica 4
WPF 4
Ruby | Ruby on Rails 3
NodeJS Web Application 2

Questions answered by Experts: 26 876

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search

Create a program using a one-dimensional array that accepts five input values from the keyboard. Then it should also accept a number to search. This number is to be searched if it is among the five input values. If it is found, display the message “Searched number is found!”, otherwise display “Search number is lost!”.
Sample input/output dialogue:
Enter five numbers:
10 15 20 7 8
Enter a number to search: 7
Search number is found!
Create a program using two-dimensional arrays that determines the highest and lowest of the 12 input values.
Sample input/output dialogue:
Enter twelve numbers:
13 15 20 13 35 40 16 18 20 18 20 14
highest: 40
lowest: 13
Create a program using two-dimensional arrays that computes the sum of data in rows and the sum of data in columns of the 3x3 (three by three) array variable n[3[3].
Sample input/output dialogue:
5 9 8 = 22
3 8 2 = 13
4 3 9 = 16
---------------------
12 20 19
Create a program using a one-dimensional array that determines the highest value among the five input values from the keyboard and prints the difference of each value from the highest.
Create a program using two-dimensional arrays that determines the even numbers among the twelve input values from the keyboard and prints the list of these Even numbers.
Note:
3 rows, 4 columns
2. Class Distance consists of length in feet and inches. Class Distance contains

1. one default constructor

IF. one parameterized constructor III. Function getdata () to take the value of feet and inches.

IV. Function show () to display.

V. Overload += operator in the Distance class.

Overload < operator to compare two distances.
A company wants to transmit data over the telephone, but it is concerned that its phones may be tapped. All of its data is transmitted as four-digit integers. It has asked you to write a program that will encrypt its data so that the data may be transmitted more securely. Your program should read a four-digit integer entered by the user in a prompt dialog and encrypt it as follow: Replace each digit by (the sum of that digit plus 7) modulus 10. Then swap the first digit with the third, and swap the second digit with the fourth. Then display the encrypted integer.

I.2 (10 points)
Write a program to decrypt the encrypted data.
A company wants to transmit data over the telephone, but it is concerned that its phones may be tapped. All of its data is transmitted as four-digit integers. It has asked you to write a program that will encrypt its data so that the data may be transmitted more securely. Your program should read a four-digit integer entered by the user in a prompt dialog and encrypt it as follow: Replace each digit by (the sum of that digit plus 7) modulus 10. Then swap the first digit with the third, and swap the second digit with the fourth. Then display the encrypted integer. Write a program to decrypt the encrypted data.
Write a program to decrypt the encrypted Word. The user enters the encrypted word. For example, if you input JCQQA the program should print out HAPPY.
. Write a MATLAB program to solve the following BVPs
Solve the following PDEs

2u
∂t2
=

2u
∂x2
, 0 < x < 1, t > 0.
u(x, 0) = 0,

∂u
∂t 
(x,0)
= sin3
(πx), 0 ≤ x ≤ 1
u(0, t) = u(1, t) = 0, t ≥ 0.
LATEST TUTORIALS
APPROVED BY CLIENTS