Answer:
musical works, dramatic works, literary works, sound recordings.
Answer:
Pros:
- Connect with friends, family in a short period of connecting time
- Faster, easier than paper
- The messages can be stored in the device for longer times, without being damaged, unlike paper files that easily get damages
- Digital communication can be done over large distances through internet and other things.
And many other pros
Cons:
- Software can be easily hacked
- Digital Communication has completelymake people become far to others. They would stop meeting face-to-face but instead of that, video call, chatting is become more popular
- Most of devices have hidden recording mechanisms that can take your information unknowingly and may be used to attack you in the future
And many other cons
Hope this helped :3
Answer:
Check the explanation
Explanation:
#include <iostream>
using namespace std;
void hex2dec(string hex_num){
int n = 0;
//Loop through all characters in string
for(int i=0;i<hex_num.size();i++){
//take ith character
char c = hex_num[i];
//Check if c is digit
if(c>='0' && c<='9'){
n = 16*n + (c-48);
}
//Convert c to decimal
else{
n = 16*n + (c-55);
}
}
cout<<hex_num<<" : "<<n<<endl;
}
int main()
{
hex2dec("EF10");
hex2dec("AA");
return 0;
}
The Output can be seen below :
Answer:
Zero (0); one (1).
Explanation:
Boolean logic refers to a theory of mathematics developed by the prominent British mathematician, called George Boole. In Boolean logic, all variables are either true or false and are denoted by the number "1" or "0" respectively; True = 1 or False = 0.
The memory of a computer generally stores data as a series of 0s and 1s. In computer memory, zero (0) represents the absence of an electric signal i.e OFF and one (1) represents the presence of an electric signal i.e ON.
0,7,0,0
9,9,0,0
7,7,7,7
3,9,0,7
Hope this helps