Answer:
Sara: Personal data
Jorge : Personal data + official data.
Wanda: Personal data + students data
Carl: Personal data + official data
Explanation:
Personal data could contain pictures, social security numbers, banking transactions details, passwords, credit card information etc.
Jorge's official data could contain information about various sources that he gets his news from. It could contain password information about his official email. And he connects to the office network, he might pose a threat to the entire network if his PC is infected.
Wanda could leak the student's information. She could also leak her social security numbers, bank details, organization's details etc.
Carl could leak company's information. He can avoid it by staying away from public networks. Installing anti-virus. He should also take great care while accessing various sites and never download harmful files over the internet.
Answer:
public class num6 {
public static void main(String[] args) {
int n = 4;
for(int i = 1; i <= n; ++i) {
for(int j = 1; j <= i; ++j) {
System.out.print("* ");
}
System.out.println();
}
}
}
Explanation:
This solution is implemented in Java
Two for loops are required for this (an inner nd outer for loop).
The innner and outer for loops can be seen as implementing rows and columns (so on the first 'row' i=1, so a single star is printed, on the second row, i =2, two stars are printed and so on, all on seperate lines)
Answer:
#include <iostream>
using namespace std;
int main()
{
int num;
cin>>num;
cout<<num<<" "<<2*num<<" "<<num*num<<endl;
return 0;
}
Explanation:
The code snippet above written in C++ programming language meets all the requirements of the question as specified in the instructors note.
Importantly is the use multiple C++'s cout (<<) operators to display all the output seperated by spaces on the same line.