Answer:
it would be B hope this helps
Explanation:
Answer:
- public static String bothStart(String text1, String text2){
- String s = "";
-
- if(text1.length() > text2.length()) {
- for (int i = 0; i < text2.length(); i++) {
- if (text1.charAt(i) == text2.charAt(i)) {
- s += text1.charAt(i);
- }else{
- break;
- }
- }
- return s;
- }else{
- for (int i = 0; i < text1.length(); i++) {
- if (text1.charAt(i) == text2.charAt(i)) {
- s += text1.charAt(i);
- }else{
- break;
- }
- }
- return s;
- }
- }
Explanation:
Let's start with creating a static method <em>bothStart()</em> with two String type parameters, <em>text1 </em>&<em> text2</em> (Line 1).
<em />
Create a String type variable, <em>s,</em> which will hold the value of the longest substring that both inputs start with the same character (Line 2).
There are two possible situation here: either <em>text1 </em>longer than<em> text2 </em>or vice versa. Hence, we need to create if-else statements to handle these two position conditions (Line 4 & Line 13).
If the length of<em> text1</em> is longer than <em>text2</em>, the for-loop should only traverse both of strings up to the length of the <em>text2 </em>(Line 5). Within the for-loop, we can use<em> charAt()</em> method to extract individual character from the<em> text1</em> & <em>text2 </em>and compare with each other (Line 15). If they are matched, the character should be joined with the string s (Line 16). If not, break the loop.
The program logic from (Line 14 - 20) is similar to the code segment above (Line 4 -12) except for-loop traverse up to the length of <em>text1 .</em>
<em />
At the end, return the s as output (Line 21).
Answer:
Option(c) is the correct answer for the given question.
Explanation:
The method variable overrides the class variable name with same name The method variable overrides of the class variable name .
Following are the example in java language
public class Main
{
int b=90; // class varaible or instance varaible
void sum()
{
int b=34; // method having same name as class varaible name
b=b+10;
System.out.println(b); // display b
}
public static void main(String[] args) // main method
{
Main ob=new Main(); // craete object
ob.sum(); // calling method sum
}
}
Output:
44
In this we declared a variable 'b' as int type in class and override this variable in sum() function it means same variable name is declared in function sum() .
acquiesces ,destroys,alters are the wrong for the given question.
So overrides is the correct answer
Answer:
yes they are: Central Processor Unit (CPU)
Memory (RAM)
Input (keyboard, mouse, etc)
Output (monitor, printer, etc)
Explanation:
True