I’m going to assume it’s wan
its the first one x 3/14 bc 2/7 times 3/4 makes 6/28. 6/28 simplified is 3/14
Answer:
Printing Quality, Price, If it van vonnect to my laptop or nay devices.
This rights protected document cannot be opened because the rights management feature has been disabled on your machine by Policy is known to be an error message.
<h3>What is the error message about?</h3>
The Error message above is known to be one that shows that your IT department has made a group policy in one's company's Active Directory. It is known to be one that tends to disables the use of ADRMS (Rights Management Feature) in all to all users.
Note that in the case above, one need to ask your IT department to be able to disable or make changes to the group policy so that it will not apply to the users who are said to require access secured Microsoft Office documents in any of Ansarada Rooms.
Another option is to look at documents off the network with the use of a personal computer or a mobile phone.
Hence, This rights protected document cannot be opened because the rights management feature has been disabled on your machine by Policy is known to be an error message.
Learn more about error message from
brainly.com/question/25671653
#SPJ1
Answer:
// here is code in Java.
// package
import java.util.*;
// class definition
class Main
{
// method that return sum of two sale value
public static int Add(int euroSales,int asiaSales)
{
// return the sum
return euroSales+asiaSales;
}
//main method of the class
public static void main (String[] args) throws java.lang.Exception
{
try{
// variables
int euroSales=100;
int asiaSales=150;
int eurasiaSales;
// call the function
eurasiaSales=Add(euroSales,asiaSales);
// print the sum
System.out.println("total sale is:"+eurasiaSales);
}catch(Exception ex){
return;}
}
}
Explanation:
Declare and initialize two variables "euroSales=100" and "asiaSales=150". Declare another variable eurasiaSales. Call the method Add() with euroSales and asiaSales as parameter. This method will add both the value and return the sum.This sum will be assigned to variable eurasiaSales.Then print the sum.
Output:
total sale is:250