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 an array of size 30. Take 2 indexes from user as input and multiply the value on those indexes and display the answer on screen.

Create an array of size 15. Multiply even values of array with 3 and place them in the array

Create an array of size 20. Take input from the user and find the highest number from the array.



Create an array of size ten, get input from user, show odd index sum and even index sum, show array element by element




Create an array of size ten; get input from user as odd index has odd value [place a check that when user enters odd value then assign that value to the array element] and even indexes can have any value, show array element by element.

Create an array of size ten; get input from user, show only odd values in one go and then even values in one go.

Create an array of size ten; get input from user, show only odd index values in one go and then only even index values in one go.

Create an array of size ten; assign one to all its positions one by one through loop, and show array elements one by one on screen with space.

5


4 5 4


3 4 5 4 3


2 3 4 5 4 3 2


1 2 3 4 5 4 3 2 1


2 3 4 5 4 3 2


3 4 5 4 3


4 5 4


5

Given a string in camel case,write a program to convert the given string from camel case to snake case...


example:

if the given word is "PythonLearning" in camel case.,your code should print given word in snake case "Python_Learning"...


LATEST TUTORIALS
APPROVED BY CLIENTS