Skip to main content

TCS IPA previous year problems solved [input + output ] in JAVA - (35 marks )

 Problem Statement : 




Video Link :  Click Here

Create a class AutonomousCar with the below attributes:
carld – int
brand – String  

noOfTestsConducted – int

noOfTestsPassed- int

environment – String
grade – String

Write getters, setters for the above attributes . Create constructor which takes parameter in the above sequence except grade.

Create class Solution with main method. Implement two static methods – findTestPassedByEnv and updateCarGrade in Solution class.

findTestPassedByEnv method:

This method will take two input parameters -array of AutonomousCar objects and string parameter environment. The method will return the sum of the noOfTestsPassed attribute from autonomousCar objects for the environment passed as parameter. If no autonomousCar with the given environment is present in the array of AutonomousCar objects, then the method should return 0.

updateCarGrade method:

This method will take a String parameter brand, along with the array of AutonomousCar objects. The method will return the autonomousCar object, if the input String parameter matches with the brand attribute of the autonomousCar object. Before returning the object, the grade should be derived based on the rating calculation mentioned below. This grade value should be assigned to the object. If any of the above conditions are not met, then the method should return null. The grade attribute should be calculated as follows: rating .(noOfTestsPassed * 100)/noOfTestsConducted If the rating > = 80 then grade should be ‘A1’, otherwise the grade should be ‘B2’.

The above mentioned static methods should be called from the main method. For findTestPassedByEnv method – The main method should print the totalTestPassed as it is, if the returned value is greater than 0, or it should print “There are no tests passed in this particular environment”.

For updateCarGrade method – The main method should print the brand and grade of the returned autonomousCar object. The brand and grade should be concatinated with :: while printing. eg:- Tesla::A1, where Tesla is the brand and Al is the grade.

If the returned value is null then it should print “No Car is available with the specified brand”. Before calling these static methods in main, use Scanner object to read the values of four autonomousCar objects referring attributes in the above mentioned attribute sequence (except grade attribute). Next, read the value for environment and brand.


Input : 


100

Tesla

1000

500

Hills

200

Ford

2000

1500

Desert

300

Royce

3000

1700

Hills

400

Mercedez

1000

400

Desert

Desert

Mercedez


Outout : 

1900 

Mercedez::1900


Code :


import java.util.Scanner;

class AutonomousCar{

    // Attributes Declare 


    int carId;

    String brand ;

    int noOfTestConducted;

    int noOfTestsPassed;

    String enviroment;

    String grade;


    //Construtor


    public AutonomousCar(int carId,String brand,int noOfTestConducted,int noOfTestsPassed,String enviroment ){


        this.carId=carId;

        this.brand=brand;

        this.noOfTestConducted=noOfTestConducted;

        this.noOfTestsPassed=noOfTestsPassed;

        this.enviroment=enviroment;


    }


    //getter & setter 


public class Solution {

    //main method 

    public static void main(String[] args) {

        Scanner sc=new Scanner(System.in);


        AutonomousCar arr[]=new AutonomousCar[4];


        //user input


        for(int i=0;i<arr.length;i++){


            int a =sc.nextInt();

            sc.nextLine();

            String b=sc.nextLine();

            int c=sc.nextInt();

            int d=sc.nextInt();

            sc.nextLine();

            String e=sc.nextLine();


            arr[i]=new AutonomousCar(a, b, c, d, e);

        }


        String input=sc.nextLine();

        String inputBrand=sc.nextLine();


        //method call 


        int result=findTestPassedByEnv(arr,input);

        if(result==0){

            System.out.println("No");

        }

        else{

            System.out.println(result);

        }

        AutonomousCar obj=updateCarGrade(arr,inputBrand);

        if(obj==null){

            System.out.println("No car is available");

        }

        else{

            System.out.println(obj.brand+"::"+obj.grade);

        }


    }


     //method declare

      

    public static int findTestPassedByEnv(AutonomousCar arr[],String input){

        int sum=0;

        for(int i=0;i<arr.length;i++){

            if(arr[i].enviroment.equalsIgnoreCase(input)){

                sum+=arr[i].noOfTestsPassed;

            }

            

        }


        return sum;

    }

    public static AutonomousCar updateCarGrade(AutonomousCar arr[],String inputBrand){

        int rating;

        for(int i=0;i<arr.length;i++){

            if(arr[i].brand.equalsIgnoreCase(inputBrand)){

                rating=((arr[i].noOfTestsPassed*100)/arr[i].noOfTestConducted);

                if(rating>=80){

                    arr[i].grade="A1";

                }

                else{

                    arr[i].grade="B2";

                }

                return arr[i];

            }

            

        }

        return null;

    }



    


    

    



   



}




Comments

Popular posts from this blog

Complete Strategy to clear TCS Xplore IPA in One Attempt Now ( 80+ Score )

  So hello Everyone , Here are the all Links from where you can Practice !  All the resources are searched from my best !  1. For KYT and Bizzskill  Link :- tcs Xplore course  2. Unix Operating system Link :-    a.  click here Link 1 b.  click here Link 2 c.  Click here Link 3   3. UI  Link :-  click here 4. SQL and Pl SQL Link : -  Click here Click here click here 5. Java MCQ  Link :-  click here click here click here 6. Java coding :-  Access the playlist on YouTube :-  click here to watch Access the blogs :-  click here All in one link :-   click here

TCS IPA previous year quistion ( 35 marks ) , Quistion , Input , output

 Problem Statement Video Link :    https://youtu.be/XCBvfJAo908 Create a class TravelAgencies with below attributes: regNo – int agencyName – String pakageType – String price – int flightFacility – boolean Write getters, setters for the above attributes . Create constructor which takes parameter in the above sequence. Create class Solution with main method. Implement two static methods – findAgencyWithHighestPackagePrice and agencyDetailsforGivenIdAndType in Solution class. findAgencyWithHighestPackagePrice method: This method will take array of TravelAgencies objects as an input parameter and return the highest package price from the given array of objects. agencyDetailsForGivenldAndType method: This method will take three input parameters -array of TravelAgencies objects, int parameter regNo and String parameter packageType. The method will return the TravelAgencies object based on below conditions. FlightFacility should be available. The input parameters(regNo and packageType) shoul