Answer:
rows and columns, or matrix
Explanation:
Two-dimensional 2D arrays are being indexed with the help of two subscripts. The first one is for the row and the second one if for the column. And each of the elements of the 2D array must be of the one kind like they all can be an object type or they all can be of primitive type.
Like:
int A[3][3];
The above is the 2-dimensional array in C++, and elements are of type int, which is a primitive data type.
1.the average class size at Harbor Elementary School is 32.
2.The National Education Association recommends a class size of 23.
3. She taught sixth-grade students for 12 years.
Hope this helps:)
Answer:
Following is the statement in the C language :
if(carYear < 1968)
printf("\nProbably has a few safety features.\n");
if(carYear > 1970 && carYear <=1991 )
printf("\nProbably has head rests.\n");
if(carYear > 1991 && carYear <=2002)
printf("\nProbably has anti-lock brakes\n.");
if(carYear > 2002)
printf("\nProbably has airbags.\n");
Explanation:
Following is the description of the statement:
- In the given question we used if block. The if block is only executed when their condition is true.
- if(carYear < 1968) In this we check we the value of "carYear" variable is less then 1968 then it prints "Probably has a few safety features." in the console window.
- if(carYear > 1970 && carYear <=1991) In this we check we the value of "carYear" variable is greater then 1970 and less then 1992 it prints "Probably has head rests" in the console window.
- if(carYear > 1991 && carYear <=2002 ) In this we check we the value of "carYear" variable is greater then 1991 and less then 2003 it prints "Probably has anti-lock brakes" in the console window.
- if(carYear > 2002) In this we check we the value of "carYear" variable is greater then 2002 then it prints "Probably has airbags" in the console window.
Answer:
The answer to this question is given in the explanation section. The correct option is long tail
Explanation:
a.Folksonomy
Folksonomy is a way of organizing data and digital content. With Web 2.0, users can collaboratively manage and tag photos, journals and other media. As more users do this, creates a system of classification for the media and information. so this option is not correct
b. long tail (correct option)
Some sites are able to offer services as well in which users can subscribe monthly or pay a fee every so often. An example of this would be Netflix.
c.user participation
All users have the free will to contribute to the site which makes many Web 2.0 pages public. With sites such as Wikipedia, anyone is open to the editing of articles. Information is provided two-way instead of solely from the site owner.
d.application
Web 2.0 applications that allow anyone to create and share online information or material they have created. As you know that there are number of different types of web 2.0 applications including wikis, blogs, social networking, folksonomies, podcasting & content hosting services.