Accenture Coding Assessment Questions and Answers 2024

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ม.ค. 2025

ความคิดเห็น • 177

  • @onoonoonoO
    @onoonoonoO 5 หลายเดือนก่อน +240

    everyone who is confident to crack Accenture placement like this ❤

  • @ridhamsharma7778
    @ridhamsharma7778 6 หลายเดือนก่อน +52

    *Well Explained JAVA Code*
    import java.util.Scanner;
    public class Vehicles {
    public static void main(String[] args) {
    // Creating Scanner object for taking input from user.
    Scanner sc = new Scanner(System.in);
    // Input no. of vehicles
    int v = sc.nextInt();
    // Input no. of wheels
    int w = sc.nextInt();
    // Checking given constraints
    if(v>w || w%2!=0 || w < 2) System.out.println("INVALID INPUT");
    int tw = ((v*4)-w)/2;
    // v*4 gives us the no. of wheels reqd to create v no. of 4 wheelers.
    // (v*4)-w gives us the no. of wheels that we are short of.
    // Finally we use these remaining wheels to create Two Wheelers so ,((v*4)-w)/2.

    int fw = v-tw;
    System.out.println("TW = "+tw);
    System.out.println("FW = "+fw);
    }
    }

    • @Techno_lengend
      @Techno_lengend 5 หลายเดือนก่อน

      Bro help me for code Accenture exam

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

  • @vaibhavihambire4828
    @vaibhavihambire4828 6 หลายเดือนก่อน +14

    Bring more videos related to ACCENTURE..!
    Much Needed.
    Good to understand

  • @dakshjain273
    @dakshjain273 6 หลายเดือนก่อน +16

    Bring more videos related to ACCENTURE..!
    Much Needed..❤

  • @pallavigupta4408
    @pallavigupta4408 5 หลายเดือนก่อน +26

    First we will take input for 'v' and 'w'. And initializing tw=0 and fw=0
    If (w>=2 && w%2==0 && v

    • @ShrutiBansode-cd4pl
      @ShrutiBansode-cd4pl 5 หลายเดือนก่อน

      @@pallavigupta4408 Why you copied my answer....😑

    • @CodeWithMeInJava-1
      @CodeWithMeInJava-1 5 หลายเดือนก่อน

      It's solving two equations

  • @bindulayam-hv1op
    @bindulayam-hv1op 6 หลายเดือนก่อน +46

    Accenture is upcoming to our campus placement soon
    Need more videos to to Crack all the 3 rounds

    • @Ritikakhaire
      @Ritikakhaire 6 หลายเดือนก่อน +1

      How are you preparing for coding rounds?

    • @nobikiduniya
      @nobikiduniya 6 หลายเดือนก่อน +1

      Same here

    • @thecodingrookie
      @thecodingrookie 5 หลายเดือนก่อน

      Which College ?

    • @mdsarfraz-2132
      @mdsarfraz-2132 5 หลายเดือนก่อน +1

      ​@@thecodingrookieFor us also Accenture is coming soon for recruitment and the clg name: Avanthi Institute of engineering and technology

  • @yashjoshi-j6c
    @yashjoshi-j6c 6 หลายเดือนก่อน +4

    Accenture will be in my college soon these videos are must needed

  • @priyanshumandal733
    @priyanshumandal733 6 หลายเดือนก่อน +8

    In the first question greedy approach should have been followed.

  • @Pubgmobilein-i1e
    @Pubgmobilein-i1e 6 หลายเดือนก่อน +43

    Nice to clear my accenture test in my campus placement

    • @swagboltey102
      @swagboltey102 6 หลายเดือนก่อน +3

      Kise Kiya apne muje bhi kuch tips do next month hai

    • @unknownseries8011
      @unknownseries8011 6 หลายเดือนก่อน

      bhai kitane ka ctc diya h aap ke collage m

    • @swagboltey102
      @swagboltey102 6 หลายเดือนก่อน +1

      @@unknownseries8011 abhi ni bola

    • @swagboltey102
      @swagboltey102 6 หลายเดือนก่อน

      ​@@unknownseries8011tips do na

    • @siddharthsid1540
      @siddharthsid1540 6 หลายเดือนก่อน

      hey did you also clear the interview? And did they ask anything about project in the interview round?

  • @ajaykadi1140
    @ajaykadi1140 6 หลายเดือนก่อน +2

    import numpy as np
    # Coefficients of the equations
    A = np.array([[1, 1], [2, 4]])
    B = np.array([200, 540])
    # Solving the system of equations
    solution = np.linalg.solve(A, B)
    # Extracting the number of two-wheelers and four-wheelers
    two_wheelers = int(solution[0])
    four_wheelers = int(solution[1])
    print(f"Two wheelers = {two_wheelers}")
    print(f"Four wheelers = {four_wheelers}")

  • @mrmohan7246
    @mrmohan7246 5 หลายเดือนก่อน +10

    v=int(input("vehicle:"))
    w=int(input("wheels:"))
    if w%2==0 and 2

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Question?

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      What is the output

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

  • @Asdfdyutgfd
    @Asdfdyutgfd 5 หลายเดือนก่อน +8

    in the first question, they have asked minimum, so should we not sort the array first?

    • @soothingminds8866
      @soothingminds8866 5 หลายเดือนก่อน +1

      Sorting the array is not necessary in this case because the problem asks for the minimum number of houses required in the order they are given to provide enough food for the rats. The idea is to accumulate food house by house and stop as soon as you reach or exceed the required amount. This approach respects the original order of the houses, which is important because the question implies sequential distribution rather than an optimal selection from unordered data.

    • @underrated0806
      @underrated0806 4 หลายเดือนก่อน

      I think this can be understood based on sample cases

    • @tausifislam9664
      @tausifislam9664 4 หลายเดือนก่อน

      @@soothingminds8866 But that isn't mentioned

  • @jaanvirathore1850
    @jaanvirathore1850 5 หลายเดือนก่อน +1

    waah bhai aaj array input lene ka ek naya tareeka sikha mene.

  • @binduk3669
    @binduk3669 5 หลายเดือนก่อน +10

    vehicles=int(input("enter no of vehicles: "))
    wheels=int(input("enter no of wheels: "))
    if wheels % 2 ==1 or wheels < 2 or wheels

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

  • @saimanikantakaja3607
    @saimanikantakaja3607 6 หลายเดือนก่อน +10

    V = int(input("Enter the total number of vehicles: "))
    W = int(input("Enter total wheels: "))
    if V >= W or W < 2 or W % 2 != 0:
    print("INVALID INPUT")
    TW = (4*V - W) // 2
    FW = V - TW
    print("TW =",TW)
    print("FW =",FW)

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Question number?

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

  • @akashreddy7860
    @akashreddy7860 4 หลายเดือนก่อน +2

    let x denote 2 wheelers and y denote 4 wheelers vehicles
    x+y=v
    2x+4y=w
    y=v-x
    2x+4(v-x)=w
    4v-w=2x
    x=(4v-w)/2
    y=v-x=v-(4v-w)/2=(w-2v)/2
    Now once we get v and w inputs , we can easily calculate x and y using above problems in program.

  • @sathyaa4447
    @sathyaa4447 6 หลายเดือนก่อน +8

    In my clg next month Accenture will come for on campus placement....i need prepinsta prime

  • @GKFactsAdda
    @GKFactsAdda 6 หลายเดือนก่อน +7

    13:04
    v = int(input("Enter the total number of vehicles: "))
    w = int(input("enter total wheels: "))
    tw=(4*v-w)//2
    fw=v-tw
    print(tw)
    print(fw)
    '''
    Time Complexity: O(1)
    Space Complexity: O(1)
    "'

    • @GKFactsAdda
      @GKFactsAdda 6 หลายเดือนก่อน +1

      Keep uploading more videos on Accenture coding questions so that it will be helpful for students like me a lot.......

    • @AkkiYadav-u6d
      @AkkiYadav-u6d 5 หลายเดือนก่อน

      This code showing error

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

  • @-Rajashekar-ot6sw
    @-Rajashekar-ot6sw 6 หลายเดือนก่อน +1

    Your people are doing a great thing

  • @sourabhvishwakarma6274
    @sourabhvishwakarma6274 4 หลายเดือนก่อน +1

    Hello sir @PrepInsta
    this question is saying to minimum number of house to feed all the rats so the ans should be 2 (8,7)
    because in this, there is no any classification that the no. of house should be in a sequence.
    or ager sequence me bhi rakhna hota to bhi and 3 hi data (8,3,5)
    then
    why 4?

  • @yashjoshi-j6c
    @yashjoshi-j6c 6 หลายเดือนก่อน +4

    pls explain in java or c++

  • @vishalmonitor1
    @vishalmonitor1 5 หลายเดือนก่อน +1

    Such a great Full video for us 💗 thank you sir 🙏

  • @kunjmaheshwari9819
    @kunjmaheshwari9819 5 หลายเดือนก่อน +2

    in this question we can use Kadans Algorithm.

  • @infinitecodes
    @infinitecodes 4 หลายเดือนก่อน +1

    In Accenture coding round which type of editor we get, like leetcode wherevjust have to complete the function or codechef like we have to write code from scratch?

  • @MANNEMROHITHKUMAR
    @MANNEMROHITHKUMAR 6 หลายเดือนก่อน +1

    complect video on accenture sylabus and test pattern

  • @DEEPAKRANJAN-k5x
    @DEEPAKRANJAN-k5x 3 หลายเดือนก่อน +2

    In 1st qn since it was asked minimum number of houses then why in the example we took 4 houses, houses with food 8 and 7 will also make 8+7 > 14 and num of houses will be 2?

    • @hackingwithkiran-andriodga1166
      @hackingwithkiran-andriodga1166 2 หลายเดือนก่อน +1

      yes we need to first sort the array and apply the food required then we get minimum houses

  • @shivanpatil1761
    @shivanpatil1761 5 หลายเดือนก่อน

    It is more easily exaplained in prepinsta about the test

  • @shas495
    @shas495 4 หลายเดือนก่อน +1

    Can i use and inbuilt fuctions of STL in C++?

  • @soumyakantisadhu4676
    @soumyakantisadhu4676 6 หลายเดือนก่อน +1

    when is accenture conducting their online assessments

  • @indiansologamedeveloper
    @indiansologamedeveloper 6 หลายเดือนก่อน +1

    for better performance do leetcode easy and mid lvl questions

  • @trinadh4019
    @trinadh4019 3 หลายเดือนก่อน

    def calculation(V, W):
    if (W < 2 or W % 2 != 0 or V > W):
    print("Invalid inputs")
    else:
    Y = (W - 2 * V) / 2
    X = V - Y
    print(X, Y)
    calculation(200, 540)

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

  • @shrutimore23
    @shrutimore23 6 หลายเดือนก่อน +9

    Java program to calculate vehicle manufacture :
    import java.util.Scanner;
    public class Main {
    public static void main(String[] args) {
    Scanner x = new Scanner(System.in);
    System.out.print("enter total number of vehicles : ");
    int v = x.nextInt();
    System.out.print("enter total number of wheels : ");
    int w = x.nextInt();
    if(2 0) {
    System.out.println("total four wheeler needed : "+fw);
    System.out.println("total two wheeler needed : "+tw);
    } else {
    System.out.println("INVALID INPUT");
    }
    }
    }

    • @RajniLamkane
      @RajniLamkane 6 หลายเดือนก่อน

      Excellent 👍

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

  • @manojkumarchandora9800
    @manojkumarchandora9800 5 หลายเดือนก่อน +1

    In first question (8+7) > 14 minimum number is 2

  • @Anuusshaahhhh
    @Anuusshaahhhh 6 หลายเดือนก่อน +5

    v = 200
    w = 540
    if w

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

  • @ayushrathore887
    @ayushrathore887 5 หลายเดือนก่อน +2

    this question demand the min no of house then why its output is 4. the correct ans would be 8,3,5 (3)....using greeedy or dp something...how you can solve this by starting at index 0.??can someone please correct me if im wrong with it ...

  • @challengemania4447
    @challengemania4447 6 หลายเดือนก่อน +2

    I have a doubt..
    Only 2nd house (8 unit of food) and 5the house (7 unit of food) is more than enough for all rats...
    Then why output is 4 houses ?

    • @rohanchawla9955
      @rohanchawla9955 6 หลายเดือนก่อน

      exactly i was thinking the same

    • @rohanchawla9955
      @rohanchawla9955 6 หลายเดือนก่อน

      why are we not applying greedy approach here

    • @vineetgoswami9954
      @vineetgoswami9954 6 หลายเดือนก่อน

      Exactly, first I saw the question I though it should be done with sorting ​@@rohanchawla9955

    • @vineetgoswami9954
      @vineetgoswami9954 6 หลายเดือนก่อน

      ​@@rohanchawla9955i think we don't have to change the order of houses. If you found out this question reply

  • @nitheeshk9923
    @nitheeshk9923 6 หลายเดือนก่อน +1

    The answer for last question
    V=int(input("Enter the no of vehicle"))
    W=int(input("Enter the no of Wheels"))
    if 2

    • @shairamayalvarez7753
      @shairamayalvarez7753 5 หลายเดือนก่อน

      Help.can someone explain to me about the constraints? 🥺 And how to conclude in that equation? 🙏🏻 Thanks in advance 💖

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

  • @nikunjmaheshwari4237
    @nikunjmaheshwari4237 3 หลายเดือนก่อน

    thanks for this series

  • @creativeminds9329
    @creativeminds9329 4 หลายเดือนก่อน +3

    To solve the problem of finding the number of two-wheelers and four-wheelers given the total number of vehicles and wheels, you can use a system of linear equations.
    Let's denote:
    x as the number of two-wheelers (each having 2 wheels).
    y as the number of four-wheelers (each having 4 wheels).
    Given:
    v as the total number of vehicles.
    w as the total number of wheels.
    The equations are:
    𝑥
    +
    𝑦
    =
    𝑣
    x+y=v (Total number of vehicles)
    2
    𝑥
    +
    4
    𝑦
    =
    𝑤
    2x+4y=w (Total number of wheels)
    From equation 1, you can express y as:
    𝑦
    =
    𝑣

    𝑥
    y=v−x
    Substitute this into equation 2:
    2
    𝑥
    +
    4
    (
    𝑣

    𝑥
    )
    =
    𝑤
    2x+4(v−x)=w
    This simplifies to:
    2
    𝑥
    +
    4
    𝑣

    4
    𝑥
    =
    𝑤
    2x+4v−4x=w
    2
    𝑣

    2
    𝑥
    =
    𝑤

    4
    𝑣
    2v−2x=w−4v
    𝑥
    =
    4
    𝑣

    𝑤
    2
    x=
    2
    4v−w

    After calculating x, you can find y using:
    𝑦
    =
    𝑣

    𝑥
    y=v−x

  • @djdholan
    @djdholan 5 หลายเดือนก่อน

    Total Wheels = 540
    Total Vehicle = 200 (2 wheels + 4 wheels )
    so
    x+y = 200 ----- total vehicle
    2x + 4y = 540 -------- total Wheels
    from equation
    y = 200-x ------(put in equation )
    2x + 4*(200-x) = 540
    2x + 800 - 4x = 540
    800 - 2x = 540
    -2x = -260
    x = 130 --------(put in equation 1);
    130 + y = 200
    y = 70;
    so
    x =130
    y = 70
    now you get the solution
    code :
    public class sol{
    main{
    findNoOfVehical(200,540)
    }
    public static void findNoOfVehical(int v , int w){
    int x; // 2 wheeler
    int y; // 4 wheeler
    x = (4 * totalVehicles - totalWheels) / 2;
    y = 200 - x
    sout(x);
    sout(y)
    }
    }

  • @Shivambagade
    @Shivambagade 6 หลายเดือนก่อน +1

    Java Code
    import java.util.Scanner;
    public class TwoWhellerFourWhellerProduction {
    public static void isValidProduction(){
    Scanner s = new Scanner(System.in);
    System.out.print("Accept value of V.");
    int V = s.nextInt();
    System.out.print("Accept value of W.");
    int W = s.nextInt();
    if(W % 2 != 0 || V>W || 2>W){
    System.out.println("INVALID INPUT");
    }
    int TW, FW;
    TW = (4*V - W)/2;
    FW = V-TW;
    System.out.println("TW:"+TW+ " and FW:"+FW);
    }
    public static void main(String[] args) {
    isValidProduction();
    }
    }

  • @sakshijain2813
    @sakshijain2813 6 หลายเดือนก่อน +2

    import java.util.*;
    public class MyClass
    {
    public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int v= sc.nextInt();
    int w= sc.nextInt();
    int x=0;
    if(w w){
    System.out.println("INVALID INPUT");
    }
    else
    {
    x = (4*v -w)/2;
    System.out.println("TW =" + x +" FW = "+ (v-x) );
    }
    }
    }

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

  • @Hackthic
    @Hackthic 4 หลายเดือนก่อน

    for this type of question develop the formula , it take hardly 10 min. and all the test cases will easily passed

  • @Wonderfuleditz123
    @Wonderfuleditz123 6 หลายเดือนก่อน +1

    Can I get prime please??

  • @sayanbhattacherjee9829
    @sayanbhattacherjee9829 4 หลายเดือนก่อน

    we are told to define a function which accpets 3 parameters. you have taken a function which accept 4 parameters?

  • @meghanagarre
    @meghanagarre 6 หลายเดือนก่อน

    How many of you Got the mail that test will be between 5-16 of july...But didnt get the mail update

  • @ShrutiBansode-cd4pl
    @ShrutiBansode-cd4pl 6 หลายเดือนก่อน +2

    First we will take input for 'v' and 'w'. And initializing tw=0 and fw=0
    If (w>=2 && w%2==0 && v

    • @ShrutiBansode-cd4pl
      @ShrutiBansode-cd4pl 6 หลายเดือนก่อน

      One more thing in else part we will print('INVALID STATEMENT ')

  • @ChandanKumar-uy5fv
    @ChandanKumar-uy5fv 6 หลายเดือนก่อน

    V = int(input("Number of vehicles: "))
    W = int(input("Total number of wheels: "))
    if V >= W or W < 2 or W % 2 == 1:
    print("INVALID INPUT")
    else:
    TW = 2*V - W // 2
    FW = V - TW
    print("TW =",TW)
    print("FW =",FW)

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

  • @SatharlaDineshKumar
    @SatharlaDineshKumar 6 หลายเดือนก่อน

    import java.util.*;
    public class MyClass
    {
    public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int a= sc.nextInt();
    int b= sc.nextInt();
    int c=0;
    if(c c){
    System.out.println("INVALID INPUT");
    }
    else
    {
    c = (4*b -c)/2;
    System.out.println("two wheeler =" + c +" four wheeler = "+ (b-c) );
    }
    }
    }
    Time complexity is O(1) for calculating number of tyres

  • @sayanbhattacherjee9829
    @sayanbhattacherjee9829 4 หลายเดือนก่อน +1

    #include
    #include
    int main()
    {
    int i, vehicle, wheel, twCount=0, fwCount=0;
    printf("Enter vehicle that should be manufactured : ");
    scanf("%d",&vehicle);
    printf("
    Enter wheel number : ");
    scanf("%d",&wheel);
    if(wheel>2 && wheel%2==0 && vehicle*2

  • @Kumar954-s9d
    @Kumar954-s9d 6 หลายเดือนก่อน

    v=int(input("no of vehicles:"));
    w=int(input("no of wheels:"));
    if(2

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

  • @VenkateswarluJettiboina
    @VenkateswarluJettiboina 5 หลายเดือนก่อน

    v=int(input("Enter number of vechiles : "))
    w=int(input("Enter number of wheels : "))
    if(w

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

  • @aashu0904
    @aashu0904 5 หลายเดือนก่อน

    Thank you sir

  • @hm-lq1ls
    @hm-lq1ls 6 หลายเดือนก่อน

    class No_of_Vehicles {
    public static void main(String[] args) {
    int v=200;
    int w=540;
    no_of_vehicles(v,w);
    }
    public static void no_of_vehicles(int v,int w){
    int two_wheel,four_wheel;
    four_wheel=(w-2*v)/2;
    two_wheel=v-four_wheel;
    System.out.println("Number of 2 wheel vehicles:"+two_wheel);
    System.out.println("Number of 4 wheel vehicles:"+four_wheel);
    }
    }

  • @ankushbokade6085
    @ankushbokade6085 5 หลายเดือนก่อน

    def wheels(Tw,Fw):
    Sum=(Tw*2)+(Fw*4)
    print(Sum)
    Tw=int(input("enter the no. of TW = "))
    Fw=int(input("enter the no. of FW = "))
    wheels(Tw,Fw)

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

  • @RathnaRathna-b1j
    @RathnaRathna-b1j หลายเดือนก่อน

    In coding can i choose any one programme

  • @kiranpawar8798
    @kiranpawar8798 5 หลายเดือนก่อน

    //java code
    static void count(int v, int w) {
    int temp =(w-(2*v));
    if(temp==0){
    System.out.println("only twoWheeler are there : "+ v);
    }else if(temp

  • @user-ly9bk4ou6s
    @user-ly9bk4ou6s 3 หลายเดือนก่อน

    rat=int(input())
    unit=int(input())
    n=int(input())
    a=[]
    sum=0
    for i in range(n):
    a.append(int(input()))
    rqfood=rat*unit
    for j,m in enumerate(a,1):
    sum+=m
    if sum>rqfood:
    print(j)
    break

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

  • @surajvarma5504
    @surajvarma5504 5 หลายเดือนก่อน

    public class No_of_vehiciles {
    public static void main(String[] args) {
    Scanner obj = new Scanner(System.in);
    numOfVh(obj.nextInt(),obj.nextInt());
    }
    public static void numOfVh(int v, int w){
    int x=0; // two wheelers
    int y =0; // four wheelers
    int r = w-(2*v);
    y=r/2;
    x=v-y;
    System.out.println("Number of Two wheelers is " + x);
    System.out.println("Number of four wheelers is " + y);
    }
    }

  • @SathishSathish-qn3ol
    @SathishSathish-qn3ol 6 หลายเดือนก่อน

    v = int(input("Enter the total number of vehicles: "))
    w = int(input("enter total wheels: "))
    tw=(4*v-w)//2
    fw=v-tw
    print(tw)
    print(fw)

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

  • @ayushthaku.r
    @ayushthaku.r 6 หลายเดือนก่อน

    Accenture is coming next month in my college please provide me subscription 🙏

  • @lleviuchiha5565
    @lleviuchiha5565 5 หลายเดือนก่อน

    Sir can I solve Accenture coding assessment exam in javascript..... ?because in their company page they only mentioned c,c++,java, python languages....

  • @coddingbaba7654
    @coddingbaba7654 3 หลายเดือนก่อน

    question no 1 answer is wrong because we have to get the houses which has maximum unit food so the requirement fulfill in minimum houses

  • @SeeIt03
    @SeeIt03 6 หลายเดือนก่อน

    I joined in today's live in insta but there is no possibility of getting prime. For my career

  • @srivathsanr7167
    @srivathsanr7167 4 หลายเดือนก่อน

    class HelloWorld {
    public static void main(String[] args) {
    int w=540;
    int TW,FW;
    int n=200;
    TW=((4*n)-w)/2;
    FW=n-TW;
    System.out.println(TW);
    System.out.println(FW);

    }
    } please do a like

  • @sandy24_sunshine09
    @sandy24_sunshine09 6 หลายเดือนก่อน

    v=int(input("Enter v:"))
    w=int(input("Enter w:"))
    if v>=w or w

  • @21M206BALAMURUGAN
    @21M206BALAMURUGAN 5 หลายเดือนก่อน

    v=int(input("vehicle:"))
    w=int(input("wheels:"))
    if w%2==0 and 2

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

  • @shairamayalvarez7753
    @shairamayalvarez7753 5 หลายเดือนก่อน

    Help.can someone explain to me about the constraints? 🥺 And how to conclude in that equation? 🙏🏻 Thanks in advance 💖

  • @biswajitdey2674
    @biswajitdey2674 5 หลายเดือนก่อน

    Sir group is full please make a another group please sir

  • @sahilkarnahake4517
    @sahilkarnahake4517 4 หลายเดือนก่อน

    I will complete my graduation in 2026..but i want to prep now kuch bhi ho jaye but job apne ko chahiye mtlab mtlab chahiye

    • @Abhig3q
      @Abhig3q 2 หลายเดือนก่อน

      By 2026 ,prefer for gate exam insted

  • @shivanpatil1761
    @shivanpatil1761 5 หลายเดือนก่อน

    Next month we have campus placement for Accenture plz provide prepinsta prime

  • @akshatkumar9879
    @akshatkumar9879 6 หลายเดือนก่อน

    last question is binary search

  • @conceptin15mins96
    @conceptin15mins96 5 หลายเดือนก่อน

    ur voice is very slow pleas use mic

  • @harish9479
    @harish9479 6 หลายเดือนก่อน +1

    24 hrs working aggreement in Accenture 😢

    • @pavithrar6358
      @pavithrar6358 6 หลายเดือนก่อน

      Really??

    • @harish9479
      @harish9479 6 หลายเดือนก่อน

      Yes, one of my friend rejected the offer letter to this agreement

  • @b.yerriswamy0098
    @b.yerriswamy0098 4 หลายเดือนก่อน

    V = int(input().strip())
    W = int(input().strip())
    if W < 2 or W % 2 != 0 or V >= W:
    print("INVALID INPUT")
    else:
    TW = 2 * V - (W // 2)
    FW = V - TW
    if TW < 0 or FW < 0:
    print("INVALID INPUT")
    else:
    print(f"TW={TW}")
    print(f"FW={FW}")

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Pls help me in my exam Instragraan I'dd bhavani_16_0

  • @vinayborate2006
    @vinayborate2006 5 หลายเดือนก่อน

    Sir please correct the question first , minimum number of houses visited we have to find !!😁😁😄😄

  • @manhakkhan8666
    @manhakkhan8666 5 หลายเดือนก่อน

    Is it online or offline?

  • @Ravi-tt6xw
    @Ravi-tt6xw 4 หลายเดือนก่อน

    Hi bro, i have one doubt that my graduation aggregate is 60% exactly, can i able to attend this role or not , please reply me if anyone knows about this, please !
    recently i got a mail from accenture regarding to the upcoming assessments, so if anyone knows about cutoff of a percentage please reply me !

  • @SandipanMajumder-b2r
    @SandipanMajumder-b2r 5 หลายเดือนก่อน

    done !

  • @Pubgmobilein-i1e
    @Pubgmobilein-i1e 6 หลายเดือนก่อน +3

    v = 200
    2 w = 540
    if ( w < 2 or W

    • @TagThatTeluguVlogs
      @TagThatTeluguVlogs 2 หลายเดือนก่อน

      Please help me in my exam Instragraan I'dd bhavani _16_0

  • @justforfun2043
    @justforfun2043 4 หลายเดือนก่อน

    v=int(input())
    w=int(input())
    x=0
    y=0
    if w>=2 and w%2==0 and w>v:
    y = int((w-2*v)/2)
    x = int(v-y)
    print("Two wheelers:"+str(x))
    print("Four wheelers:"+str(y))

  • @varun1017
    @varun1017 6 หลายเดือนก่อน

    OA dates?

  • @boopathi121
    @boopathi121 6 หลายเดือนก่อน

    It is python code?

  • @Vishal-o6h5j
    @Vishal-o6h5j 2 หลายเดือนก่อน

    void solve() {
    int v, w;
    cin >> v >> w;
    int to = 0;
    int fo = 0;
    bool ans = false;
    for (int i = 0; i

    • @Vishal-o6h5j
      @Vishal-o6h5j 2 หลายเดือนก่อน

      C++ code

  • @Techno_lengend
    @Techno_lengend 5 หลายเดือนก่อน

    Please any one help me ..for coding.round

  • @Quavo-goa
    @Quavo-goa 6 หลายเดือนก่อน

    Give c++ code too

  • @CodeWithMeInJava-1
    @CodeWithMeInJava-1 5 หลายเดือนก่อน

    Tw=(2*V)-(W/2)
    FW=V-TW

  • @Ruthvik_20
    @Ruthvik_20 6 หลายเดือนก่อน

    Prepinsta❤

  • @Вадим-к9я8о
    @Вадим-к9я8о 6 หลายเดือนก่อน

    Hello, I rent accounts on freelance exchanges

  • @darjiabdulmouize4302
    @darjiabdulmouize4302 5 หลายเดือนก่อน +1

    import java.util.*;
    public class Main
    {
    public static void main(String[] args) {
    System.out.println("Hello World");
    Scanner sc=new Scanner(System.in);
    int v=sc.nextInt();
    int w=sc.nextInt();
    int z=w/2;
    int cars=z-v;
    int bikes=v-cars;
    System.out.println(bikes+" "+cars);
    }
    }

  • @Aa-cm1eo
    @Aa-cm1eo 6 หลายเดือนก่อน +2

    SOLUTION FOR FREE PRIME

  • @vaddineni5182
    @vaddineni5182 6 หลายเดือนก่อน +1

    in java
    import java.util.*;
    public class sai
    {
    public static void main(String[] args)
    {
    Scanner s = new Scanner(System.in);
    int v =s.nextInt();
    int w =s.nextInt();
    int x=0,y=0;
    for(int i=1;i

  • @dipakpandey3071
    @dipakpandey3071 หลายเดือนก่อน

    let noOfTwoWheeler= ((v*4)-w)/2;
    let noOfFourWheeler=v-noOfTwoWheeler;///
    Other way
    let noOfFourWheeler= (w-(v*2))/2;
    let noOfTwoWheeler=v-noOfFourWheeler;///

  • @AnuBiju-y7e
    @AnuBiju-y7e 6 หลายเดือนก่อน

    v=int(input("enter vechiles number"))
    w=int(input("enteer the wheels no"))
    for i in range(0,200):
    for j in range(0,200):
    if(i+j==v):
    two=i
    four=j
    if(i*2+j*4==w):
    print("2wheell 4wheeler",i,j)
    break

  • @PrinceKumar-ig5oc
    @PrinceKumar-ig5oc 4 หลายเดือนก่อน

    jai javan jai kisan

  • @navaprasadgoud9530
    @navaprasadgoud9530 4 หลายเดือนก่อน +1

    fw=(w-2*v)/2;
    tw=v-w;
    print("%d %d", &tw, &fw);
    I hope this two equ can be enough to solve the problem

  • @rjshakti54
    @rjshakti54 6 หลายเดือนก่อน

    Bhai nahi hua😢😢

    • @anamtaxxxkhan
      @anamtaxxxkhan 6 หลายเดือนก่อน

      On-campus start hogaya?

  • @arghyadeepsarkar5759
    @arghyadeepsarkar5759 6 หลายเดือนก่อน

    Need prime badly 😢

  • @anilkumarvagicharala8258
    @anilkumarvagicharala8258 6 หลายเดือนก่อน

    import java.util.Scanner;

    public class Vehcile{
    public static void main(String[] args){
    Scanner sc = new Scanner(System.in);

    System.out.println("enter the no of vechiles");
    int v = sc.nextInt();

    System.out.println("enter the no of wheels");
    int w = sc.nextInt();

    int tw = (4*v - w)/2;
    int fw = v-tw;

    if( tw>=0 && fw>=0 && (2*tw + 4*fw == w)){
    System.out.println("no.of tw:" +tw);
    System.out.println("no.of.fw:" +fw);
    }else{
    System.out.println("no vaild");
    }
    }
    }

  • @149-cse-sumandhar3
    @149-cse-sumandhar3 6 หลายเดือนก่อน

    import java.util.Scanner;
    public class VehicleProduction {
    public static void main(String[] args) {
    Scanner scanner = new Scanner(System.in);
    System.out.print("Enter the total number of vehicles (V): ");
    int V = scanner.nextInt();
    System.out.print("Enter the total number of wheels (W): ");
    int W = scanner.nextInt();
    if (W >= 2 * V && W % 2 == 0 && V < W) {
    int FW = (W - 2 * V) / 2;
    int TW = V - FW;
    System.out.println("Number of two-wheelers (TW): " + TW);
    System.out.println("Number of four-wheelers (FW): " + FW);
    } else {
    System.out.println("INVALID INPUT");
    }
    scanner.close();
    }
    }