Skip to main content

Posts

Showing posts from February, 2022

Solving TCS IRA Java Question asked by my Subscriber. |TCS IRA | TCS PRA |TCS CPA |TCS IPA

Question:  create the class Song with below attributes. songId - int    title - String  artist -  String duration-double The above attributes should be private, getters, setters and parameterized  constructor as required.  Create class MyClass with main method. implement two static methods - findSongDurationForArtist and getSongsInAscendingOrder in MyClass class. findSongDurationForArtist method: This method will take two input  parameters of Song objects and String parameter The method will return  the sum of song duration from array of Song object for the giver  artist (String parameter passed). If no Song with the given artist is present in the array of Song objects,   then the method should return zero. getSongsInAscendingOrder method: This method will take input parameters  array, of Song objects and String parameter.The method will return Song  objects array in an ascending order of their duration, from the array of  Song objects whose artist attribute matches with the input Stri

pra mock java solution .

  Question: Create a class College with the below attributes.  id-int   name -String   contactNo-int address-String  pinCode-int Write the getters and setters and parametrized constructor in the above  mentioned sequence as required. Create the class Solution with the main method. Implement the two static methods:  1.findCollegeWithMaximumPincode   2.searchCollegeByAddress findCollegeWithMaximumPincode method:    Create the Static method in the Solution Class.  This method will take array of the College objects and return the  College object having maximum pincode if found else return null if not  found.    for this method ,main method will print College object with maximum pincode if the returned value is not null.if the returned value is null , then the main method will print "No college found with mentioned attribute". searchCollegeByAddress method:    Create the Static method in the Solution Class. This method will take array of College objects as input and address as  in

feb 7 IRA JAVA SOLUTION

Create the class Student with below Attributes: studentId-int studentName-String score- int collegeName-String The above attribute should be private ,write getters and setters and  parametrized constructor as required.Create class Solution with main method. Implement 2 Static methods- getLowestScoredStudentByCollegeName and getSecondHighestScoredStudent getLowestScoredStudentByCollegeName method:   The method will take array of Student objects and a String value as  input parameters and return the Student with lowest score from array of Student objects for the given collegeName.(String parameter passed).   If no student with above condition is present in  the array of Student objects,then the method should return null.  The main method should print the studentId,studentName,score,collegeName on separate lines from the returned Student object if the returned value is  not null. If the returned value is null then main method should print "No such student found". getSecondHighes