Answer:
Security Tab is the correct answer.
Explanation:
The Security Tab will enable the users to authorize anyone to use that file or directory.Many clients deleted the security tab because After that nobody can alter the security privileges on the device.
- With the help of the Security tab, we will minimize the ActiveX attacks on Internet Explorer. This option is available in the Internet Options of the dialog box.
- Other options are incorrect because they are not related to a given scenario.
Answer:
Following are the solution to this question:
Please find the attachment of this code.
Explanation:
In this code, an email_list method is declared, that accepts a domains parameter, and in the next step, an empty list and two for loop are defined, in which the first for loop is used for a count parameter value and in the second loop is use the append method to add the given value, and use the return method to print its value, and use the print method to call the "email_list" method.
A. Edit Data because if you want to change something you can edit and rewrite it.
Answer:
#include <bits/stdc++.h>
using namespace std;
int main() {
double time_h,temp_c;//declaring two variables for time and temperature of type double.
cout<<"Enter the time"<<endl;
cin>>time_h;//taking input of the time...
temp_c=((4*2*time_h)/(time_h+2)-20);//calculating the temperature...
cout<<temp_c<<endl;//printing the temperature..
return 0;
}
Explanation:
I have taken 2 variables of type double.
I am taking input of time from the user.
Then after that calculating the time according to the equation.
Then printing the output.