Answer:
Most HTML tags are fixed
Explanation:
There are various kind of technology one can use for designing web application. A web designer should know HTML, CSS and other basic building block of web development.
HTML meaning hypertext markup language is used to define the basic structure of a web page . HTML has tags which are used to declare the contents on the web page. The tags includes anchor(<a>), paragraph tag(<p>),header tag(<h1>).
CSS which is known as Cascading style sheet describes the presentation of the web pages.
Other tags in HTML includes <img>, <link>, <ul> etc and generally this tags are HTML tags which are fixed for a particular kind of job . For example you can't use an image tag <img> to enclose video instead you use a video tag <video> tag. The header tag <h1> cannot be represented like a paragrapgh tag<p> on the web page. The both of them serve specific purpose and are fixed.
Answer:
import java.util.Scanner;
class Main {
public static int calcSeries(int n) {
int sum = 0;
for(int i=10; i>=n; i--) {
sum += i;
}
return sum;
}
public static void main(String[] args) {
Scanner reader = new Scanner(System.in);
int n = 0;
do {
System.out.print("Enter n: ");
n = reader.nextInt();
if (n >= 10) {
System.out.println("Please enter a value lower than 10.");
}
} while (n >= 10);
reader.close();
System.out.printf("sum: %d\n", calcSeries(n));
}
}
Answer:
<u><em>please mark brainliest!</em></u>
Explanation:
Benjamin Franklin found and acquainted power (electricity) with the USA. He likewise had numerous different developments such the wood stove. Benjamin Franklin initially stunned himself in 1746, while leading examinations on power with discovered items from around his home. After six years and precisely 261 years back today, the establishing father flew a kite joined to a key and a silk lace in a storm and adequately caught lightning in a jug.
A physical CPU core without hyper-threading enabled can process two instructions at the same time is a false statement.
<h3>Can a CPU do multiple things at once?</h3>
Computers are those that do only one task (or process) at a single time. But a computer can alter tasks very fast and can do a lot of work.
The Central processing unit is known to be the brain of the computer system and without it, the computer cannot function or be turn on.
Hence, A physical CPU core without hyper-threading enabled can process two instructions at the same time is a false statement.
Learn more about CPU from
brainly.com/question/474553
#SPJ1