1) ECPA is D. Prohibits the government and law enforcement agencies from acquiring information about an individual through telephonic or digital media.
2) COPPA is C. Restricts websites from acquiring information from users below the age of thirteen.
3) OPPA is A. Directs company websites to declare their privacy policies and their expiration dates on their websites if the users are from California.
4) FCRA is B. Regulates credit ratings and how agencies view an individual's credit information.
Answer:
Data-profiling software
Explanation:
Data-profiling software -
It refers to the software , that helps to collect the data or information from a particular existing source and performed it analysis , is referred to as a Data-profiling software .
The software helps to determine information about a topic , or analyse the pattern , for the process of comparison etc.
Hence , from the given information of the question ,
The correct answer is Data-profiling software .
Answer:
def main():
n = int(input('Enter the value of the variable n:'))
k=2;
totalSum = 0
print('The list of the prime numbers are as follows:')
while k <= n:
totalSum = totalSum+is_prime(k)
k=k+1
print('Total sum of the prime numbers:',totalSum)
def is_prime(k):
primeNumber = 0
i=1
while i<=int(k):
if (k % i) == 0:
primeNumber = primeNumber + 1
i=i+1
if(primeNumber==2):
print(k)
return k;
else:
return 0;
main()
Explanation:
- Run the while loop until k is less than n.
- Determine if the variable k is prime then add it to the totalSum variable.
- Increment the value of k by 1.
- Create a function isPrime to check whether the number is prime or not by determining the factors of k which can be found using the modulus operator.
-
Call the main function at the end.
A custom sofware is a computer program or website written <span>specifically for your company,</span>
Answer:
hello your question is incomplete attached below is missing part of the question
Determine how many bits are needed for the opcode
answer : 7 bits
Explanation:
Given data:
memory unit = 26 bits per word
Instruction set consists = 756 different operations
Determine how many bits are needed for the opcode
First we determine The number of bits required to represent 756 operations
=
= 9.56 ≈ 10 bits
finally the number of bits needed for the opcode can be determined by
and 
since 2^10 > 756 hence the number of bits will be 10 bits