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
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