Here you go. I added a constructor and a toString overload to make the object creation and printing as easy as possible.
public class student {
private String _id;
private String _name;
private String _address;
public student(String id, String name, String address) {
_id = id;
_name = name;
_address = address;
}
public String toString() {
return "Id: " + _id + "\nName: " + _name + "\nAddress: "+ _address;
}
public static void main(String[] args) {
student s1 = new student("S12345", "John Doe", "Some street");
System.out.println(s1);
}
}
Answer:
Computer memory is a generic term for all of the different types of data storage technology that a computer may use, including RAM, ROM, and flash memory. ... Another way that computer memory can vary is that some types are non-volatile, which means they can store data on a long term basis even when there is no power
Answer: VSAT(Very Small Aperture Terminal)
Explanation:
The computer system could be connected to the transceiver via an antenna and can send and receive data.
Using satellite communication the data could be send to the end user.
Answer:
a positional numeral system that represents numbers using a radix (base) of 16
Answer:
This function is written in python
def intlfax(pages):
if pages <=10:
fax = 7 + 0.45 * pages
else:
fax = 7 + 0.45 * 10 + 0.10 * (pages - 10)
return fax
Explanation:
This line defines the function
def intlfax(pages):
This checks if pages is less than or equal to 10 and calculates the fax
if pages <=10:
fax = 7 + 0.45 * pages
If otherwise, it also calculates the fax (differently)
else:
fax = 7 + 0.45 * 10 + 0.10 * (pages - 10)
This returns the calculated fax
return fax