He should cancel the date and move to another country semis how he screwed up his work, hope this helped
Answer:
explanation below
Explanation:
Management controls are some of the techniques and mechanisms that can be put in place to implement security policies – which ensure information and information systems are protected. These controls are not only used by managers but can be exercised by selected users.
These controls must be put in place to cover all forms of information security, physical security and classification of those information.
Answer:
The answer to this question is given below is in the explanation section.
Explanation:
manages the function of all the hardware and other software used in the computer:
operating system is defined as a system software that manages computer hardware and software resources and provide common services for computers programs.All application software computer programs requires an operation system to function. operating system controls computer hardware run the computer programs and organize file.
CPU:
central processing unit that bring the instruction from memory to be executed and decodes.
Storing device:
Any hardware that can hold information temporarily and permanently. we distinguish two type of storage: as primary storage device and a secondary storage device.
Example:
- Magnetic storage device:hard drive,floppy diskette etc.
- optical: Blu-ray disc,CD Rom disc.
Flash memory device:memory card memory sick,ssd
Hardware:
Hardware include the physical features,which are every part that you can either see or touch, for example monitor,case,keyboard,mouse and printer.
Software:
The part which activate the physical components called software. it includes the features that resposible for directing the work to the hardware.
import java.util.Scanner;
public class JavaApplication77 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Enter a sentence:");
String sentence = scan.nextLine();
String [] arr = new String[sentence.length()];
arr = sentence.split(" ");
System.out.println("There are "+arr.length+" words in the sentence.");
int count = 0;
for(int i = 0; i < arr.length; i++){
count += arr[i].length();
}
System.out.println("The average length of a word in your sentence is "+(count/arr.length)+" characters");
count = 0;
System.out.println("Your sentence is "+sentence.length()+" characters long.");
}
}
For the length of a sentence, I included spaces as characters but I did not do this for the length of a word. I hope this helps!