Washing Machine : Fuzzy System
TCS Coding Question Day 1 Slot 2
A washing machine works on the principle of Fuzzy System, the weight of clothes put inside it for washing is uncertain But based on weight measured by sensors, it decides time and water level which can be changed by menus given on the machine control area.
For low level water, the time estimate is 25 minutes, where approximately weight is between 2000 grams or any nonzero positive number below that.
For medium level water, the time estimate is 35 minutes, where approximately weight is between 2001 grams and 4000 grams.
For high level water, the time estimate is 45 minutes, where approximately weight is above 4000 grams.
Assume the capacity of machine is maximum 7000 grams
Where approximately weight is zero, time estimate is 0 minutes.
Write a function which takes a numeric weight in the range [0,7000] as input and produces estimated time as output is: “OVERLOADED”, and for all other inputs, the output statement is
“INVALID INPUT”.
Input should be in the form of integer value –
<Integer>
Output must have the following format –
Time Estimated:<Integer> Minutes
Example:
- Input value
2000
- Output value
Time Estimated: 25 minutes
Solution
#include<stdio.h> void calculateTime(int n) { if(n==0) printf("Time Estimated : 0 Minutes"); else if(n>0 && n<=2000) printf("Time Estimated : 25 Minutes"); else if(n>2000 && n<=4000) printf("Time Estimated : 35 Minutes"); else if(n>4000 && n<=7000) printf("Time Estimated : 45 Minutes"); else printf("INVALID INPUT"); } int main() { int machineWeight; scanf("%d",&machineWeight); calculateTime(machineWeight); return 0; }
n = int(input()) if n==0: print("Time Estimated : 0 Minutes") elif n in range(1,2001): print("Time Estimated : 25 Minutes") elif n in range(2001,4001): print("Time Estimated : 35 Minutes") elif n in range(4001,7001): print("Time Estimated : 45 Minutes") else: print("INVALID INPUT")
Slot 2 Coding Question 2
To find the question 2 asked in slot 2 with its solution in various programming languages click below –
TCS Coding Questions
To find all coding questions asked in TCS NQT 2020 with there solution in multiple languages click below –
import java.util.*;
class PrepInsta {
public static void TimeEstimate(int n){
if (n==0){
System.out.println(“Time Estimate is: 0 min”);
}
else if (n>0 && n2000 && n4000 && n<=7000){
System.out.println("Time Estimate is : 45min");
}
else {
System.out.println("INVALID INPUT");
}
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
TimeEstimate(n);
}
}
Kindly join our Discord channel for technical queries.
import java.util.*;
public class Machine{
static void fun(int weight){
if(weight==0)
System.out.println(“Time Estimated: 0 minutes”);
if(weight>0&&weight=2001&&weight4000&&weight7000)
System.out.println(“OVERLOADED”);
else
System.out.println(“INVALID INPUT”);
}
public static void main(String []args)
{ Scanner sc=new Scanner(System.in);
int weight=sc.nextInt();
fun(weight);
}
}
//will this be accepted
#include
using namespace std;
void washingmachine(int w){
if(w<1){
cout<=1 && w<=2000){
cout<=2001 && w<=4000){
cout<4000 && w<=7000){
cout<<"Time Estimate:45 Minutes";
}
else{
cout<>w;
washingmachine(w);
return 0;
}
# Code Here
def Washing_Machine(w):
if w in range(0, 7001):
if w == 0:
print(“Time estimated : 0 minutes”)
elif w in range(1, 2001):
print(“Time estimated : 25 minutes”)
elif w in range(2001, 4001):
print(“Time estimated : 35 minutes”)
elif w > 4000:
print(“Time estimated : 45 minutes”)
else:
print(“OVERLOADED”)
# Driver Code
weight = int(input())
Washing_Machine(weight)