Answer:
- import java.util.Scanner;
-
- public class Main {
- public static void main(String[] args) {
- Scanner input = new Scanner(System.in);
-
- System.out.print("Input first string: ");
- String string1 = input.nextLine();
-
- System.out.print("Input second string: ");
- String string2 = input.nextLine();
-
- System.out.print("Start index for first string: ");
- int i1 = input.nextInt();
-
- System.out.print("Start index for second string: ");
- int i2 = input.nextInt();
-
- System.out.print("Number of characters to be compared: ");
- int n = input.nextInt();
-
- if(string1.regionMatches(true, i1, string2, i2, n)){
- System.out.println("The strings are equal.");
- }
- else{
- System.out.println("The strings are not equal.");
- }
- }
- }
Explanation:
The solution code is written in Java.
Firstly create a Scanner object (Line 5).
Next, use the Scanner object and nextLine method to get user input for string1 and string 2 (Line 7 - 11 )
Next, proceed to get the start index for first and second string using nextInt (Line 14 and Line 17) and followed with number of characters to be compared (Line 20).
Use the regionMatches method by passing all the input values as argument (Line 22) and if we pass the sample input we shall get the true and the program shall display the message "The strings are equal." (Line 22- 23)
Answer:
MINE
Explanation:
The ocean tides on earth are caused by both the moon's gravity and the sun's gravity. ... Even though the sun is much more massive and therefore has stronger overall gravity than the moon, the moon is closer to the earth so that its gravitational gradient is stronger than that of the sun.
Answer: Port
Explanation :
When we port a software from one computer to another computer or from one operating system to another operating system, it tries to adapt to the new environment of the machine by checking the required the configurations of the machine and then checking the available files in the software to run the machine.
The porting of a software also checks whether the software is compatible with the machine or not and if not then why.
Answer:
Try refreshing, it doesn't look like you did anything wrong. Refreshing usually fixes it, or close the tab and reopen it. That should fix it.
Explanation: