Answer:
dont think u can actually report someone, pero u can report their questions/answers by clicking on the little flag icon and selecting why u want to report them. if they get reported enough they can be banned for about a day or so,, or they could get permanently banned
Explanation:
Answer:
The correct answer for the given question is option(a) i.e Local - within that function
.
Explanation:
The variable which is declared inside any function are called as local variable The scope and lifetime of local variable is inside that block or function only.
They cannot access outside the function.
Following are the example of local variable
#include <stdio.h> // header file
void fun(); // function prototype
int main()// main function
{
fun(); //calling function
print("%d",t); // it gives error because t is local variable cannot access in main function
return 0;
}
void fun()
{
int t=9;// local variable
printf("t is local variable which value is:");
printf("%d",t);
}
As we seen that t cannot access outside the function .So correct answer is option(a)
Answer:
Option D is correct. A pound sign is used to indicates that a cell is not wide enough to display its numbers.
Explanation:
A pound sign symbol indicates that a cell is not wide enough to display its number in Excel. However, it is noted that if you use or installed a US keyboard in your computer then hash symbol (#) is shown and the pound sign symbol is shown if you use or installed the UK keyboard layout in your computer.
Why other options are not correct.
this symbol is used for multiplication in formula or in a cell to multiply the numbers with each other.
A dollar sign is used in a cell to show the currency. If you want to show the cell value as a currency. Then, you can use the dollar sign.
Percentage sign in the cell shows that value in a cell is representing a percentage of some values.
Html quickly developed thanks to specifications that came up as a result of the World Wide Web Consortium's joint work (W3C).
<h3>What is world wide web consortium (W3C)?</h3>
- The main worldwide standards body for the World Wide Web is the World Wide Web Consortium.
- The consortium, which was established in 1994 and is now chaired by Tim Berners-Lee, is made up of member organizations that employ full-time workers to collaborate on developing standards for the World Wide Web.
- In order to create Web standards, member organizations, a full-time staff, and the general public collaborate inside the World Wide Web Consortium (W3C).
- W3C's goal is to lead the Web under the direction of Web creator and Director Tim Berners-Lee and CEO Jeffrey Jaffe.
To learn more about world wide web consortium (W3C), refer to:
brainly.com/question/11397745
#SPJ4