Answer:
i say hexadecimals
Explanation:
The hexadecimal numeral system, often shortened to "hex", is a numeral system made up of 16 symbols (base 16). The standard numeral system is called decimal (base 10) and uses ten symbols: 0,1,2,3,4,5,6,7,8,9. Hexadecimal uses the decimal numbers and six extra symbols.
Answer:NO, I WILL NOT GIVE THE TELEPHONE NUMBER
WHY?
IT IS A BREACH OF TRUST
IT IS A BREACH OF DATA PRIVACY
IT ALSO VIOLATES THE PRIVACY OF INFORMATION RIGHT OF THE GIRL.
Explanation:BREACH OF TRUST is act or actions taken against the signed agreement between a person and another party which may be any Organisation like a Financial Institution where the Financial Institution agrees not to release the personal Information about their customer without the person's consent.
IT IS A BREACH OF DATA PRIVACY many persons wants their data which are made available to Organisation to be kept private,divulging such information without the person's consent is a reach of data privacy.
It violates the privacy of Information right of the Girl, except for Security or other specified reasons no Organisations or person is given the right to divulge another person's right to a third party, ALL THESE VIOLATIONS ARE PUNISHABLE UNDER THE LAWS OF THE LAND.
Answer:
Following are the code to this question:
m=3#defining a variable m
while(m<22):#defining a while loop to count value
print(m)#print value
m=m+3#increment the value by 3
Output:
Please find the attached file.
Explanation:
Note: In the given question, it is not clear that what the question asks about so, we describe the code above and its description can be defined as follows.
In the above code, an integer variable m is defined, that holds an integer value, in the next step, it uses a while loop to increment the value by 3 and use the print method to print its calculated value.
import java.util.Scanner;
public class JavaApplication33 {
public static void main(String args[]) {
Scanner scan = new Scanner(System.in);
int total = 0;
System.out.println("Enter positive numbers (-1 to stop)");
while (true){
int num = scan.nextInt();
if (num == -1){
break;
}
else{
total += num;
}
}
System.out.println("Sum is "+total);
}
}
I hope this helps!