Answer:
#include <math.h>
#include <stdio.h>
#include <string.h>
#define BASE 3
#define NRQUESTIONS 15
void toABC(int n, char* buf, int base, int size) {
memset(buf, 'A', size);
buf[size] = 0;
while (n && size) {
buf[--size] = 'A' + (n % base);
n /= base;
}
}
int main()
{
char buf[16];
for (int i = 0; i < pow(BASE, NRQUESTIONS); i++) {
toABC(i, buf, BASE, NRQUESTIONS);
printf("%s\n", buf);
}
}
Explanation:
Assuming 3 is the number of possible answers to choose from for each question.
I tackled this by having an integer counter enumerate all values from 0 to 3^15, and then convert each integer to a base-3 representation, using ABC in stead of 012.
Answer:
A) Metadata
Explanation:
Metadata is information about data. call it data about data if you like and it could be descriptive, structural, statistical or administrative, the aim is to provide further information about a particular data element for example in descriptive meta data which is useful for discovery and identification as it provides futher information such as title, keywords, authur and abstract.
Answer:
Technology has a prestigious history. It took years for the technology to come up and prove its essence.
The Internet, World Wide Web, the development of websites, the introduction of Wikipedia and its evolution marks the golden period on 1980s which was followed by launch of certain search engines like google, bing, duckduck go and may more which made the surfing more easy and fun. Then further the launch of android phones and iPhones brought up another revolution in technology.
Nowadays, technology finds its use almost everywhere. Talking about the classrooms, students resort to internet for exploring studies, topics, projects and much more. The use of Wikipedia has reached a whole new level. Teachers tend to provide assignments over the internet only in order to increase the exposure and reduce the use of paper which works in the collective good of both internet and nature!
Answer:
If you can pick two:1/4 If you can pick one: 4
Explanation:
Common Sense
Answer:
95 years
Explanation:
the dura- tion of copyright is 95 years from first publication or 120 years from creation, whichever is shorter (unless the author's identity is later revealed in Copyright Office records, in which case the term becomes the author's life plus 70 years).