Answer: 2) To provide instruction for how the structure should look
4) To provide instruction for how the content should look
Explanation:
HTML 5 is a hypertext markup language revision which basically provide the structure and content to the page. It is a standard programming which basically describe the content of the web page. It reduce the overall development time and it is faster.
In the remaining option, It does not provide any meaning as we cannot add structure directly we should use the CSS styling for the particular document.
Therefore, (2) and (4) option are correct.
An area of improvement that can be achieved using AI and Machine in the Future of Transport are given below:
The technical issues of artificial intelligence are
- Artificial Neural Networks.
- Deep Learning.
- Natural language processing.
The potential issues that can arise from the adoption of AI technology
is hacking of transport system and system fail and how it can be overcome is by aiding system with enough security as well as regular maintenance.
<h3>What is the Future of Transport about?</h3>
AI is known to be one that has the power as well as the potential to be able to make traffic in regards to movement of vehicles to be very more efficient.
Note that it is one that can ease traffic congestion and also gives driver's a lot of time, also make parking easier as well as encourage car or ridesharing.
Note that as AI aids or function to keep road traffic to be flowing, it can also lower the fuel consumption rate that is as a result of the use of vehicles idling if stationary,
Learn more about AI from
brainly.com/question/25523571
#SPJ1
<span>C:\Program Files (x86) folder</span>
Answer:
The answer is "Option A"
Explanation:
Following are the complete code to these question:
public class Arr//defining a class-Arr
{
public static void main(String[] args)//main method
{
int [][] numbers={{1, 2, 3},{4,5,6}}; //defining 2D array numbers
for(int[] row : numbers) //use for loop that holds all array value into 1D array
{
for (int n: row)//defining n variable that holds row array values
{
System.out.print (n); //print n variable value
}
}
}
}
The code comment explains its functioning.