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

Any four challenges faced while selecting program development tools


Write a program language that accepts the radius of a circle from the user and compute the area and circumference of the circle.
Write a C++ program to determine prime number within a certain range( choose your own range )
Write a C++ program to print numbers from 1-5
Hollow Right Triangle

Given an integer number 

N as input. Write a program to print the hollow right-angled triangular pattern of N lines as shown below.

Note: There is a space after each asterisk (*) character.

Input

The first line of input is an integer 

N.

Explanation

In the given example the hollow right angled triangle of side 

4. Therefore, the output should be

* * * * 
  *   *
    * *
      *




Diamond Crystal

Given an integer value 

N, write a program to print a diamond pattern of 2*N rows as shown below.

Input

The first line of input is an integer 

N.

Explanation

In the given example, the number of rows in the diamond is 

2*5 = 10.

So, the output should be




    /\
   /  \
  /    \
 /      \
/        \
\        /
 \      /
  \    /
   \  /
    \/

How to determine the types of data files?


A. Write I if the statement is Interval, N if Normal, R if Ratio, and O if Ordinal.

1. Military title

2. Temperature in degree celcius

3. Birthplace

4. Year level

5. Favorite type of music

6. Clothing such as hat, shirt, shoes

7. A score in 5-item quiz in Math

8. Feeling for today

9. Means of transportation to school

10. How internet is used at home



Give two applications each for repeaters, hubs and routers

Consider the code snippet given below:-

[Assume the necessary header files and namespaces included]

int x=10;

int main()

{   int x=20;

{ int x=30;

     }

       return 0;

}

Include the ‘cout’ statements at appropriate places in the program to get the output

 10 20 30


LATEST TUTORIALS
APPROVED BY CLIENTS