Answer:
Both LANs and WANs
Explanation:
Physical layer standards govern physical links between devices which includes connectors, plugs, transmission media, and signaling.
Answer: SCM
Explanation:
SCM stand for supply chain management system and it is amazon's competitive strategy. The amazon SCM is the strategic of being the retailer according to the customer's choice.
Inventory system for multi-tier is the major component for the amazon's SCM. The main key aspect for the amazon supply chain management is that it is responsible for development in the trade market over years.The amazon SCM are basically responsible for analysis all the major growth and productivity ij the market by using the supply chain management process.
Answer:
Explanation:
The following modified code correctly uses recurssion to reverse the string that was passed as a parameter to the reverseString method. A test output using the runner class can be seen in the attached image below.
import java.util.Scanner;
class U10_L2_Activity_One {
public static String reverseString(String str) {
if (str.isEmpty()) {
return str;
}
return reverseString(str.substring(1)) + str.charAt(0);
}
}
class runner_U10_L2_Activity_One
{
public static void main(String[] args)
{
System.out.println("Enter string:");
Scanner scan = new Scanner(System.in);
String s = scan.nextLine();
System.out.println("Reversed String: " + U10_L2_Activity_One.reverseString(s));
}
}
Answer:
O DTP programs are basically layout programs.
Explanation:
Desktop publishers are vector-based graphics software, and a perfect example of one such software is Microsoft Publisher. You can consider Adobe Illustrator, and Corel Draw as well, but they are huge software meant for many more things, and hence let's include only Microsoft publisher. And a long list follows as well. And they are in general a layout program used to prepare cards, advertisements, infographics, etc, and in fact the layout for them. And hence its more appropriate to say that it is basically a layout program that uses vector graphics to accomplish its goal. Various formats supported are like SVG, EPS, PDF,AI etc. And these are vector graphics based formats. The other type is Raster, and that includes Photoshop etc, with formats iike jpeg, gif etc, and which are pixel based.
It could be ‘save as’ or ‘your work’, not completely sure