Computer Science, asked by sneha413639, 3 months ago

please answer my question. ​

Attachments:

Answers

Answered by payalsingh1134
10

Answer:

Child trafficking can be defined as any person under 18 who is illegally recruited, transported, transferred, harboured or received by threats, force, and coercion or inducing fear for the purpose of exploitation, either within or outside a country. ... These children are also often used for drug trafficking purposes.

Answered by udayagrawal49
2

Answer: The required java program is :-

public class Main {

public static void main(String[] args) {

    Test2 var = new Test2();

    var.output();

   }

}

class Test2 {

   int sum (int x , int y) {

       return (x+y);

   }

   void output() {

       System.out.println("Sum of 4 and 7 is : "+sum(4,7));

       System.out.println("Sum of 3 and 9 is : "+sum(3,9));

   }

}

Please mark it as Brainliest.

Similar questions