Answer:
144°
Explanation:
The sum of the measures of interior angles of a quadrilateral is 360°
The ratio of angle measures is 1:2:3:4
Total ratio = 1+2+3+4=10
The angles will be :
1/10 * 360°= 36°
2/10*360°=72°
3/10*360°=108°
4/10*360°=144°
The largest angle is 144°
Answer:
Explanation:
Always the getaway is the first device in a network, and for that was assigned this IP address 192.168.2.1, is the first address of the block, a network getaway gives us interoperability between networks and contains devices, and is a protocol translator, this is a piece of hardware used for telecommunication networks.
Answer:
C. External Data
Explanation:
On the External Data tab, you can find import and export commands located in Access.
Answer:
Java Class given below
Explanation:
class ReadOnly
{
protected int val;
public ReadOnly(int arg)
{
val = arg;
}
public int getVal()
{
return val;
}
}
class ReadWrite extends ReadOnly
{
private boolean dirty;
public ReadWrite(int arg)
{
super(arg);
dirty = false;
}
public void setVal(int arg)
{
val = arg;
dirty = true;
}
public boolean isDirty()
{
return dirty;
}
}