a) Sequential structure
b) A List
c) A plan
d) An Algorithm
Answer: d
Explanation: An Algorithm
Related Posts
What will be the output of the following Java program?
class string_class
{
public static void main(String args[])
{
String obj = “hello”;
String obj1 = “world”;
String obj2 = “hello”;
System.out.println(obj.equals(obj1) + ” ” + obj.equals(obj2));
}
}What will be the output of the following Java program?
class string_class
{
public static void main(String args[])
{
String obj = “hello”;
String obj1 = “world”;
String obj2 = obj;
obj2 = ” world”;
System.out.println(obj + ” ” + obj2);
}
}What will be the output of the following Java program?
class string_class
{
public static void main(String args[])
{
String obj = “I LIKE JAVA”;
System.out.println(obj.length());
}
}What will be the output of the following Java program?
class string_class
{
public static void main(String args[])
{
String obj = “I LIKE JAVA”;
System.out.println(obj.charAt(3));
}
}What will be the output of the following Java program?
class string_demo
{
public static void main(String args[])
{
String obj = “I” + “like” + “Java”;
System.out.println(obj);
}
}Which of the following statements are incorrect?
Which of these method of String class can be used to test to strings for equality?
Join The Discussion