Ask Question
19 October, 11:43

To check if a string s contains the prefix "Java", you may write A. if (s. startsWith ("Java")) ... B. if (s. indexOf ("Java") = = 0) ... C. if (s. substring (0, 4). equals ("Java")) ... D. if (s. charAt (0) = = 'J' && s. charAt (1) = = 'a' && s. charAt (2) = = 'v' && s. charAt (3) = = 'a') ...

+1
Answers (1)
  1. 19 October, 12:00
    0
    D

    Explanation:

    Option D is the correct answer The Option checks each characters from index 0-3 and compares the character against the letters (J, A, V, A). See an implementation of in the code snippet below. The output will be Yes since the condition is true

    public class num5 {

    public static void main (String[] args) {

    //Create a string and give a value starting with Java

    String s = "Java is cool";

    if (s. charAt (0) = = 'J' && s. charAt (1) = = 'a' && s. charAt (2)

    = = 'v' && s. charAt (3) = = 'a') {

    System. out. println ("Yes");

    }

    else{

    System. out. println ("No");

    }

    }

    }
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “To check if a string s contains the prefix "Java", you may write A. if (s. startsWith ("Java")) ... B. if (s. indexOf ("Java") = = 0) ... ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers