Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

Java programming

+4 votes
asked Jan 3, 2020 by anonymous

(a)   Declare a local String variable id and initialize it with your 8-digit student ID in string form. What is the output of the following program segment?

String str = id + " "; // two spaces System.out.println(str.indexOf("5") + " + " + str.substring(0,2) + "\n"

+ str.trim().substring(5)+ "#");

[2 marks]

(b)   The class List below is in java.util. What is the output of the following program segment?

List<String> aList = new Vector<>(); aList.add("one");

aList.add("two");

aList.add("three");

aList.add(2, "one"); aList.remove("one");

System.out.println(aList + "\n" + aList.size());

1 Answer

+2 votes
answered Jul 28, 2023 by MALABADI SHRADDHA REVANSIDDH (180 points)
addition of two number in java

class Addition

{

            public static void main ( String[] args )

             {

                    int n1=5,n2=7,ans=0;

                    System.out.println("n1=  "+n1);

                     System.out.println("n2= "+n2);

                      ans=n1+n2;

                      System.out.println("ans= "+ans);

             }

}
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...