Answer:
seconds.
Explanation:
max-age attribute of a cookie is specified in seconds.It sets the time when the cookie will be deleted.max-age attribute is not supported by all the browser.Internet Explorer does not support max-age.Son expires is used more than max-age because it supports almost all the browsers.
Answer:
True.
Explanation:
Mainframe computers were developed and introduced in the early 1950s.
Mainframe computers have several CPUs, have very fast processor speeds, can supporting multiple operating systems and have huge amounts of storage capacity. As a result, mainframe computers are mostly or commonly used by large companies, business firms or governmental institutions for performing various complex tasks such as census, financial transactions, e-commerce, data sequencing, enterprise resource planning, etc.
D) To determine which posts from a particular user have received the greatest number of comments
<u>Explanation:</u>
Since social media excepting comments from end user website or social media should keep track of end user information such as name with email address and phone extra.
If we do so we can end user information in cans, end user post, wrong post information can be blocked or given end user information for further analysis. Moreover web site can receive positive or negative posts.
For me all four will be my answer. If we don’t track any information about end user it is against to law.
B. Hydrogen because it has an atomic number of 1 and molar mass of 1
Answer:
Only
Option: void f1(float array[], int size);
is valid.
Explanation:
To pass an array as argument in a function, the syntax should be as follows:
functionName (type arrayName[ ] )
We can't place the size of the array inside the array bracket (arrayName[100]) as this will give a syntax error. The empty bracket [] is required to tell the program that the value that passed as the argument is an array and differentiate it from other type of value.