05.04.2022 the following question

What is the current situation for protection of privacy when using icts

. 15

Faq

Business
Step-by-step answer
P Answered by Specialist

she knows the potential benefits and can tolerate the potential disadvantages of that investment

Explanation:

Generally buying stocks in a start-up is extremely risky, but can also be extremely profitable. Since Trisha is young and should be earning a medium to high salary, she can afford losing her investment. The risk is huge, but some can tolerate that risk, e.g. imagine a person who bought $3,000 of Amazon's stock 20 years ago is probably made more than a million by now.

English
Step-by-step answer
P Answered by Specialist

1. Is B. 1.5 to 2.2


2. Is A. High-speed CAN


3. Is B. Energy Storage device


4. Is C. Allow reverse current to flow


5. Is B. Transistor


7. Is C. Farad


11. Is D. 0 and 7V


12. Is C. Both A and B


13. Is A. The wire is connected between two grounds


14. Is D. A lower current circuit controls a higher current circuit


15 is B. Powertrain control module


The others I don't know good luck

Social Studies
Step-by-step answer
P Answered by PhD

In this situation, under the supremacy clause: D) The EPA's decision takes precedence.

Explanation:

President Richard Nixon started Environmental Protection Agency (EPA) in United States of America. EPA is an independent agency established in the year of July 9, 1970 for environmental protection. But it came to operation only on December 2, 1970.

There was a great conflict between the federal EPA and California State law regarding the carbon emission amount from the exhaust system of car.

The survey states that the carbon emission in California in the year 2016 was about 429 million metric tons.

Social Studies
Step-by-step answer
P Answered by PhD

In this situation, under the supremacy clause: D) The EPA's decision takes precedence.

Explanation:

President Richard Nixon started Environmental Protection Agency (EPA) in United States of America. EPA is an independent agency established in the year of July 9, 1970 for environmental protection. But it came to operation only on December 2, 1970.

There was a great conflict between the federal EPA and California State law regarding the carbon emission amount from the exhaust system of car.

The survey states that the carbon emission in California in the year 2016 was about 429 million metric tons.

Computers and Technology
Step-by-step answer
P Answered by PhD
Answer: c. internet of things.

Explanation:
The technology that combines with the 5G capabilities which was used in the monitoring of the shopping trends is the Internet of Things.
- Internet of Things (IoT) simply means when there are interrelated, and internet-connected objects which collects and transfers data without human intervention through a wireless network or makes use of sensors.
- This is being used by the retailer in the example given to monitor the shopping trends. In conclusion, the correct option is Internet of Things.
Computers and Technology
Step-by-step answer
P Answered by Master

The correct answer to the following question will be "Auto-encoder".

Explanation:

It is indeed a form of artificial neural net that utilizes in an unmonitored way to practice successful information coding.

The objective of such an auto-encoder seems to be to acquire a specification (encoding) for a collection of information, usually for reducing degrees of freedom, by teaching the channel to overlook the "noise" message.Learn a few things of endogenous model representation and then use it to recreate the object.
Computers and Technology
Step-by-step answer
P Answered by Master
When one encounters another vessel and assess the situation and believes that you are the stand-on vessel, You should still maintain your course unless the give-away vessel or vessel you have encountered is not taking appropriate actions, what you should do is, you should take action and move away from the vessel, do not go toward the vessel nor pass in front of it.
Computers and Technology
Step-by-step answer
P Answered by PhD

A code in C++ follows:

Explanation:

#include<iostream>

using namespace std;

int calculate_area(int width, int length)

{

int area;

area=width*length;

return area;

}

int main()

{

int a,b,ar,c,d,ar1,n;

cout<<"\nEnter length of room:";

cin>>a;

cout<<"\nEnter width of room:";

cin>>b;

ar=calculate_area(a,b);

cout<<"\nArea of room:"<<ar<<" units";

cout<<"\nEnter length of mat:";

cin>>c;

cout<<"\nEnter width of mat:";

cin>>d;

ar1=calculate_area(c,d);

n=ar/ar1;

cout<<"\nNumber of mats required are:"<<n;

return 0;

}


Codehs 7.4.6:  gymnastics mats calculate how many mats will be needed to fill a room given the dimen
Computers and Technology
Step-by-step answer
P Answered by PhD

boolean rsvp;

int selection;

String option1;

String option2;

(a) if(rsvp){

System.out.println("Attending");

} else {

System.out.println("Not attending");

}

(b) if (selection == 1){

System.out.println("Beef");

} else if (selection == 2){

System.out.println("Chicken");

} else if (selection == 3) {

System.out.println("Pasta");

} else {

System.out.println("Fish");

}

(c) switch(selection){

case 1:

if(rsvp){

option1 = "Thanks for attending. You will be served beef.";

} else{

option1 = "Sorry you can't make it";

}

break;

case 2:

if(rsvp){

option1 = "Thanks for attending. You will be served chicken.";

} else{

option1 = "Sorry you can't make it";

}

break;

case 3:

if(rsvp){

option1 = "Thanks for attending. You will be served pasta.";

} else{

option1 = "Sorry you can't make it";

}

break;

default:

if(rsvp){

option1 = "Thanks for attending. You will be served fish.";

} else{

option1 = "Sorry you can't make it";

}

break;

}

(d) if (option1 == option2){

System.out.println("True");

} else {

System.out.println("False");

}

Explanation:

This code snippet is written in Java.

a) Uses if statement to print "attending" if rsvp is true and "not attending" if rsvp is false.

b) Uses if-else statement to print the variety of food based on user selection. If selection is 1, it print beef. If selection is 2, it print chicken. If selection is 3, it prints pasta else it print fish for any other value of selection.

c) Uses switch statement to determine the value of selection and then uses inner if statement to assign "Thanks for attending. You will be served beef." if rsvp is true to option1. The value of beef changes depending on the value of selection. If rsvp is false, then "Sorry you can't make it." is assigned to option1.

d) Uses if statement to print true if option1 and option2 are equal else it print false.