Answer:
I would choose either paraphrase the info or take notes.
Explanation:
Answer:
Passwords must meet basic complexity requirements.
Explanation:
Password should contain:
- special characters like @#$%^&*
Passwords should not contain:
- user's name or surname
- birth year/date
- not similar to previous password
- account/identity number
Answer:
The correct answer for the given question is option(A) i.e Global
Explanation:
The global variable is the variable which is declared outside the function The lifetime and scope of global variable in whole the program i.e "Globally" .They can be access anywhere in the program,however local variable are those which is declared inside the function .local variable are access inside that function only where it is declared.
Following are the example of Global variable.
#include <stdio.h> // header file
int t=9;// global variable declared outside the function
int main() // main function()
{
printf("%d",t); // display the value of t
return 0;
}
so the correct answer is Global.
Dont drive so ask a friend to drive you home
Pc
hope this helps have a good day