Answer:
A) copyright
B) copyright
C)Trade mark
D) copyright
E)Patent
Explanation:
Patent can be regarded as a form of intellectual property which helps the owner of an invention to others to sell or use the invention for some period of time. Example of this is a patent that protect microwave oven.
trademark is form of intellectual property, this could be inform of symbols, words that differentiate the product of a party from another. Example of this is a bite of apple that represents apple products.
Copyright can be regarded as a legal right given to those that owns a intellectual property which gives him/her right to copy and exclude others from reaping from where they did not sow. The owner get exclusive right to reproduce the copy.
Below is the match of the intellectual property with the examples.
a. books, poems<> Copyright
b. music, movies, paintings<> Copyright
c. company logo<> Trademark
d. software<>Copyright
e. combinations of materials to make drugs<> patent
Answer:
If a good friend comes to me for advice in pursuing a music career. With my knowledge of digital technology and the performing
arts, my advice to use digital technology to help build her career by <u>Delivering service to clients
.</u>
Explanation:
<u>There were several reasons for this:
</u>
• Being able to access work platforms and resources removed the need to travel back
to office bases because remote access allowed the completion of administrative
tasks where the practitioner was working.
• Working with clients in rural and isolated areas can prove difficult in terms of meeting
clients face to face and digital solutions helped to resolve this. This is because more
clients can be seen remotely than when practitioners must travel to see them.
C. When listing items that have an order of priority.
Explanation:
There are a lot of ways to list items such as alphabets and Roman numerals.
And the all have their respective reasons.
When numbering in order of priority, it is more appropriate to use numbers instead of alphabets and Roman numerals.
Answer:
// here is statement in C++ to declare and initialize an array.
int denominations[]={1, 5, 10, 25, 50, 100};
Explanation:
In C++, an array can be declare and initialize in a single statement.Syntax to declare and initialize an array in C++ is type <type> <name>[]={val1,vale2...valn}. Here first literal is type of array and second is name of the array.And in the {} braces value of the array.In the above statement type is integer and name of the array is "denominations" and the values are 1,5,10,25,50,100.
//here is implementation in C++.
// include headers
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// declare and initialize array
int denominations[]={1, 5, 10, 25, 50, 100};
return 0;
}