Skip to main content

Posts

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

30 January 2022 CPA, prime management JAVA solution.

Question: Create the class PrimeManagement with the below attributes: primeId-int  userProfileName-String subscriptionType-String subscriptionPrice-double noOfProfiles-int The above attributes should be private,write getter and setter and  parameterized constructor as required. Create class MyClass with main method. Implement a static method-findAvgPriceByType in MyClass class. findAvgPriceByType method:     This method will take two input parameters-array of PrimeManagement  objects and String parameter.This method will return average Subscription  price (as int value) from array of PrimeManagement objects for given  subscription type(String parameter passed) and whose noOfProfiles is greater than 3.       If no PrimeManagement with above condition is present in array of  PrimeManagement objects,then the method should return 0.      The main method should print the returned average subscription price  of PrimeManagement as it is ,if the returned value is greater than 0,or it  should p

December 23 java coding question PRA solution

23 dec pra java coding question solution. Question: Create the class Student with below attributes. id-int name-String marks-int age-int write getters and setters and parametrized constructor in Student class. Create class Solution with main method. implement 2 static methods-findStudentWithMaximumAge and searchStudentById in Solution class. findStudentWithMaximumAge method:     This method will take the Array of the Students objects as input and  returns the Student object having maximum Age.   For this method,the main method should print the student object details with maximum age as it is.    searchStudentById method:     This method will take 2 input parameters.Array of the Students objects and an int value  id.and returns the Student object having the mentioned id  if found, else return null if not found.   For this method ,main method should print the details of Student objects  as it is,if the returned value is not null. or it should print  "No Student found with mentioned

tcs ira 29November 2021 java coding question solution.

 Question: Create the class Bank with below Attributes. bankId-int bankName-String numberOfCustomers-int city-String  write parametrized constructor as well in Bank Class. Create class Solution  with main method. Implement 2 Static methods-findAvgNumberOfCustomersByCity and  getSecondLowestNumberOfCustomersBank in Solution class. findAvgNumberOfCustomersByCity method-This method will take two input parameters.Array of Bank Objects and String Parameter city and will return the average number of customers of bank from array of Bank Objects for the  given city.    If no banks with given city present inside the array of the Bank Objects, then the method should return 0. The main method should print the average of the number of Customers if the  returned value is greater than 0.Else main method will print "Bank not Found". getSecondLowestNumberOfCustomersBank method- This method will take 1 input  Parameter that is Array of Bank Objects and return Bank Object having the  second lo

28 june 2021 2 pm java question solution.

import java.util.Scanner; public class main { public static void main(String[] args) { Scanner sc= new Scanner(System. in ); System. out .println( "Enter Member Id" ); int a=sc.nextInt(); sc.nextLine(); System. out .println( "Enter Name" ); String b=sc.nextLine(); System. out .println( "Enter Member Type" ); String c=sc.nextLine(); ClubMember clubMember= new ClubMember(a,b,c); calculateMembershipFees (clubMember); } public static void calculateMembershipFees(ClubMember clubMember) { if (clubMember.getMemberType().equalsIgnoreCase( "Gold" )) { clubMember.setMembershipFees( 50000 ); } else if (clubMember.getMemberType().equalsIgnoreCase( "Premium" )) { clubMember.setMembershipFees( 75000 ); } System. out .println( "Member Id is