Please give the solution of Java assessment 2 #problem name - Laptops...
@thetechyguy18 Жыл бұрын
Check code in telegram
@khanfuzail55 Жыл бұрын
import java.util.*; import java.lang.*; public class IPA_35_Laptop { public static void main(String []args)throws java.lang.Exception { Laptop []arr=new Laptop[4]; Scanner sc=new Scanner(System.in); for (int i = 0; i < arr.length; i++) { int a=sc.nextInt();sc.nextLine(); String b=sc.nextLine(); String c=sc.nextLine(); double d=sc.nextDouble();sc.nextLine(); int e=sc.nextInt();sc.nextLine(); arr[i]=new Laptop(a, b, c, d, e); } String i1=sc.nextLine(); String i2=sc.nextLine(); int ans1 =countOfLaptopsByBrand(arr,i1); if (ans1!=0) { System.out.println(ans1); } else { System.out.println("The given brand is not available"); } Laptop[] ans2=searchLaptopByOsType(arr,i2); if (ans2!=null) { for (int i = 0; i < ans2.length; i++) { System.out.println(ans2[i].id); System.out.println(ans2[i].rating); } } else { System.out.println("The given os is not available"); } } public static int countOfLaptopsByBrand(Laptop[]arr,String i1){ int count=0; for (int i = 0; i < arr.length; i++) { if (arr[i].brand.equalsIgnoreCase(i1) && arr[i].rating>3 ) { count=count+1; } } if (count>0) { return count; } return 0; } public static Laptop[] searchLaptopByOsType(Laptop[]arr,String i2) { Laptop[]help=new Laptop[0]; for (int i = 0; i < arr.length; i++) { if (arr[i].os.equalsIgnoreCase(i2)) { help=Arrays.copyOf(help, help.length+1); help[help.length-1]=arr[i]; } } for (int i = 0; i < help.length-1; i++) { for (int j = 0; j < help.length-i-1; j++) { if (help[j].id
@MeghanaPatnaik-pe1jc Жыл бұрын
@@khanfuzail55 sir don't we need to mention the attributes in laptop class as private
@thetechyguy18 Жыл бұрын
Technically do private, but I tried personally without getter and setter and get full marks
@lakshmansai4172 Жыл бұрын
how did you get the symbol of arrow in arrays.sort method
@thetechyguy18 Жыл бұрын
It's a deep concept
@thetechyguy18 Жыл бұрын
Okay - minus > sign
@amansaini1321 Жыл бұрын
how to creatr arrow symbol in descending order line45
@amansaini1321 Жыл бұрын
Again same problem, hidden test cases failed😢in java assessment
@thetechyguy18 Жыл бұрын
Write b first then a
@amansaini1321 Жыл бұрын
Arrow kese banate
@khushyt2811 Жыл бұрын
@@amansaini1321minus less than
@khanfuzail55 Жыл бұрын
1) The key right to the zero key (Also underscore key) 2)And then the full stop (.) key holding shift.
@shivankmishra2234 Жыл бұрын
I didn't understand the concept of sort line , why two parameter , then , arrow and all,
@thetechyguy18 Жыл бұрын
Watch sort in one line video
@kavyatamrakar1207Ай бұрын
hidden test cases failed, what should I do?
@thetechyguy18Ай бұрын
Improve ur logic
@kavyatamrakar1207Ай бұрын
@@thetechyguy18i was expecting help, thanks wow.
@thetechyguy18Ай бұрын
You can share ur code in WhatsApp community I will take a look Link to join chat.whatsapp.com/CIQx82A8Qti9Qu83C5CCpQ
@shivankmishra2234 Жыл бұрын
not running in tcs compiler
@thetechyguy18 Жыл бұрын
It is running
@beyoushivani Жыл бұрын
hey a friend of mine uses arraylist and collections and writes very less code can you teach that one
@thetechyguy18 Жыл бұрын
We have done that also check sort in one line solution or provide ur friend's solution
@laughterdose6399 Жыл бұрын
Can I get Complete working code please
@thetechyguy18 Жыл бұрын
Check in telegram
@sora-kun99286 ай бұрын
provide the source code please cant find it in your telegram