Answer:
confidentiality, integrity, availability
Explanation:
Confidentiality: Data and information assets must be confined to people who have authorized access and not disclosed to others
Integrity: Keeping the data intact, complete and accurate, and IT systems operational
Availability: An objective indicating that information or system is at disposal of authorized users when needed.
The answer is the second answer Increasing the size of the wire.
Answer:
ADGH AVFH VVBLA FDHLAVRGLBHSRGLHFSgh HGK g gH G avoshhbv so bhsf vhbfsb gfsb gb gh g hhow gw
Explanation:
eehhfhsghOhrrbfghedhchggfgsbbfbhdhfhehyfnfnhhsh
Answer:
import java.util.Scanner;
import java.lang.*;
class Main
{
public static void main(String args[])
{
int n;
//For capturing the value of n
Scanner scanner = new Scanner(System.in);
System.out.println("Enter the value of n:");
//The entered value is stored in the var n
n = scanner.nextInt();
int k=1;
printnum(n,k);
}
public static void printnum(int n,int k)
{
if(n%2==0)
{
for(int i=k;i<=n-1;i=i+2)
{
System.out.print(i);
}
System.out.println("");
}
else
{
for(int i=k;i<=n-1;i=i+2)
{
System.out.print(i);
}
System.out.println("");
}
n--;
if(n<=1)
{
System.exit(0);
}
else
{
printnum(n,k+1);
}
}
}
Explanation:
The program is self explanatory.