Tip 1 : practice 2-3 coding questions
Tip 2 : read about design architecture and system design principles
Tip 3 : practice at least once daily in front of a mirror
Tip 1 : Must have at least 2 projects
Tip 2 : Should Ideally have internship experience of 3 months
The amount obtained by Sumit by investing a sum of Rs 10,920 for 3 years at the rate of 10% simple
interest is equal to the amount obtained by Raghav by investing a certain sum in Rs for 5 years at the rate
of 8% per annum SI. What is 85% of the sum invested by Raghav?
A bag contains z+2 black balls, z+5 red balls and z+8 white balls . The probability of getting a black
ball is ÂĽ, what is the probability of getting three red balls of different colour, when three balls are drawn?
For hiring a car, a travel agency charges R1 rupees per hour for the first N hours and then R2 rupees per hour. Given the total time of travel in minutes is X. The task is to find the total traveling cost in rupees. Note: While converting minutes into hours, ceiling value should be considered as the total number of hours. For example: If the total travelling time is 90 minutes i.e. 1.5 hours, it must be considered as 2 hours.
import java.util;
class Main
{
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
int r1=sc.nextInt();
int n=sc.nextInt();
int r2=sc.nextInt();
int k=sc.nextInt();
int focus,hr;
(k+59)/60;
if(hr > n)
focus = n*r1+(hr-n)*r2;
else
hr
focus = n*r1;
System.out.println(focus);
}
Basic questions about java were asked along with a some questions about my stream of study
Properties of Strings in Java.
Explain any one of your projects.
.
What if a company offers you more money, will you choose that instead of TCS?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: