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

Make a website using HTML and CSS all about Zombies


A student can register for more than one degree over time, and lots of students can register for the same degree. • Each degree consists of a number of modules that you have to complete. And a module can be part of multiple degrees. The number of credits for the module should be stored in the database too. • A student can register multiple times for the same module, and the final mark and result should be recorded for each module registration. • The name, surname and student number should be recorded for each student. • A student also registers to study at a specific campus. Each campus has a name. Draw ERD


Date Format - 2

Given seconds as input, write a program to print in D days H hours M minutes S seconds.Input


The input will be a single line containing an integer.Output


The output should be a single line containing the D Days H Hours M Minutes S Seconds format. Print only the non-zero values.Explanation


For example, if the given seconds are 200. As 200 seconds is equal to 3 minutes and 20 seconds, and days, hours are zero, so ignore the days and hours. So the output should be "3 Minutes 20 Seconds"


output is like if we give as input like 3600 output like 3 min 20sec


and input is like 86400 the output should be like 1 day


Write a program that reads an integer and prints how many digits the number has, by

checking whether the number is ≥ 10, ≥ 100, and so on. (Assume that all integers are

less than ten billion.) If the number is negative, first multiply it with –1. Sample runs of the program are given below:


Enter an integer less than 10 billion: 576838

Digits: 6


Enter an integer less than 10 billion: 100000000000

Number is out of range


Enter an integer less than 10 billion: 7645362758

Digits: 10


Write a C++ program to design polygon-rectangle-square-parallelogram-triangle hierarchy with pure virtual function of getArea(). The base class now is an abstract base class and lots of other classes added to the hierarchy.


ten Network-related issues and the corresponding troubleshooting steps


Question 4

A group of enterprising farmers are growing high demand vegetables and fruits in view of the shortage in the traditional markets caused by the current pandemic and lockdowns. Describe from the point of farm set up to the delivery of the final products at the homes of consumers, how these entrepreneurs can set up the necessary computer systems and tap cloud computing resources at different stages for the efficient operation leading to high profitability from this business.  (25 marks) 


Date Format - 2

Given seconds as input, write a program to print in D days H hours M minutes S seconds.Input


The input will be a single line containing an integer.Output


The output should be a single line containing the D Days H Hours M Minutes S Seconds format. Print only the non-zero values.Explanation


For example, if the given seconds are 200. As 200 seconds is equal to 3 minutes and 20 seconds, and days, hours are zero, so ignore the days and hours. So the output should be "3 Minutes 20 Seconds"


Sample Input 1

200


Sample Output 1

3 Minutes 20 Seconds


Sample Input 2

86400


Sample Output 2

1 Days




Right Angle Triangle

Given an integer N, write a program to print a right angle triangle pattern similar to the pattern shown below

    /|
   / |
  /  |
 /   |
/____|

Input


The input will be a single line containing a positive integer (N).Output


The output should be N lines containing the triangle pattern.Explanation


For example, if the given number is 5, the pattern should be printed in 5 lines, as shown below

    /|
   / |
  /  |
 /   |
/____|

Sample Input 1

5

Sample Output 1

/|

/ |

/ |

/ |

/____|

Sample Input 2

4

Sample Output 2

/|

/ |

/ |

/___|




Date Format - 2

Given seconds as input, write a program to print in D days H hours M minutes S seconds.Input


The input will be a single line containing an integer.Output


The output should be a single line containing the D Days H Hours M Minutes S Seconds format. Print only the non-zero values.Explanation


For example, if the given seconds are 200. As 200 seconds is equal to 3 minutes and 20 seconds, and days, hours are zero, so ignore the days and hours. So the output should be "3 Minutes 20 Seconds"

Sample Input 1

200

Sample Output 1

3 Minutes 20 Seconds

Sample Input 2

86400

Sample Output 2

1 Days




LATEST TUTORIALS
APPROVED BY CLIENTS