Answer:
Style sheet.
Explanation:
A website is a collection of web pages. Web development tools are mainly HTML,CSS and JavaScript. They have their individual functions in structuring a web page.
JavaScript is a purpose object oriented programming language widely used in web page for writing scripts, aimed to make web pages interactive.
HTML is a mark-up language which provides a non-linear structuring approach to web page development.
CSS or cascaded style sheet is a tool used to design the element and layout of web pages on a device screen.
Answer:
- import java.util.Scanner;
-
- public class Main {
- public static void main(String[] args) {
- Scanner input = new Scanner(System.in);
- int n = input.nextInt();
- int l = 1;
- for(int i=1; i <= n; i++){
- for(int j=1; j<= l; j++){
- System.out.print("*");
- }
- System.out.println();
- l = l + 2;
- }
- l = l - 4;
- for(int i=1; i < n; i++){
- for(int j=1; j <= l; j++){
- System.out.print("*");
- }
- System.out.println();
- l = l-2;
- }
- }
- }
Explanation:
The solution code is written in Java.
Firstly use a Scanner object to accept an input integer (Line 5-6).
Create the first set of inner loops to print the upper part of the diamond shape (Line 8-14). The variable l is to set the limit number of asterisk to be printed in each row.
Next, create another inner loops to print the lower part of the diamond shape (Line 17-23). The same variable l is used to set the limit number of asterisk to be printed in each row.
Document.write()
I'm not sure that this is a method, but I think this is right.
Answer:
The answer to this question is given below in the explanation section.
Explanation:
You can submit your course work most often in a Word document. Because in the word document, you can insert text, numbers, images, charts, shapes whatever you want such as required for writing a course assignment or course work- easily. Because your final work should be in a complete document.
The correct options to this question, that you should need to avoid using to create and submit course work are pages, numbers, and keynote.
Because while submitting the course work, you need to submit a complete word document, it is not required to you that you have to submit numbers, pages, or keynotes along with the course assignment. You can create a course assignment or project document in word and submit to your respective teacher. However, you can not create your course work using keynotes or pages, etc as given in the question.
Answer:
#include <iostream>
# include <conio.h>
using namespace std;
float fat_burning_heart_rate(float age);
main()
{
float age,bpm;
cout<<"enter the age of the person"<<endl;
cin>>age;
if (age>=18 && age<=75)
{
bpm=fat_burning_heart_rate(age);
cout<<"fat burning heart rate for the age of"<<age<<"="<<bpm;
}
else
cout<<"Invalid age";
getch();
}
float fat_burning_heart_rate(float age)
{
float a;
a= (220-age)*0.7;
return a;
}
Explanation:
In this program, the variable named as age has been taken to enter the age of the person, needs to calculate the burning heart rate. All the variables taken in float, as the age and fat burning heart rate should come in decimal value.
The formula has been used as mention in question that,
a= (220-age)*0.7;