
In this post, we will try to give a solution to an important problem of Capgemini ADAPT 2022. The problem is Online Shopping A – JOLS-S3-L1-2-Products By Category.
However, the solutions are provided for learning purposes only. Candidates must submit their own code during attending the Sprints.
Table of Contents
- Online Shopping A – JOLS-S3-L1-2-Products By Category Solution:
- Top Companies + Batchwise Hiring Drive:
- To Stay Up-to-date, Follow us on Social Media:
- ADAPT Different Coding Solutions:
- Capgemini ADAPT Sprint 1 (Bus Reservation Solutions):
- Capgemini ADAPT Sprint 2 (Bus Reservation System):
- ADAPT Sprint 3 Solutions – Capgemini (Toy Rental A):
- Online Shopping A Solutions Using Java:
Online Shopping A – JOLS-S3-L1-2-Products By Category Solution:
import java.util.*;
public class Source {
static String[] mobile={“Samsung S8″,”One Plus 8″,”Sony Experia”};
static String[] tv={“VU 55 Inches”,”Sony TV”,”Samsung Tv”};
static String[] electronics={“Speakers”,”DSLR
Cameras”,”Security Cameras”};
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String input=sc.next();
switch (input.toLowerCase()) {
case “mobile”: getMobile();
break;
case “tv”: getTv();
break;
case “electronics”: getElectronics();
break;
default: System.out.println(“No Products
Available”);
}
sc.close();
}
private static void getMobile() {
for(String mobileName: mobile)
System.out.println(mobileName);
}
private static void getTv() {
for(String tvName: tv)
System.out.println(tvName);
}
private static void getElectronics() {
for(String electronicsName: electronics)
System.out.println(electronicsName);
}
}
Note: We could not get the problem statement yet. If you have the problem statement you can send us at – [email protected]. We will try to update the answers according to the problem statement.
Top Companies + Batchwise Hiring Drive:
TOP COMPANIES HIRING DRIVE | BATCHWISE HIRING DRIVES |
1. TCS OFF-CAMPUS DRIVES | 1. 2018 BATCH |
2. INFOSYS OFF-CAMPUS DRIVES | 2. 2019 BATCH |
3. COGNIZANT OFF-CAMPUS DRIVES | 3. 2020 BATCH |
4. WIPRO OFF-CAMPUS DRIVES | 4. 2021 BATCH |
5. CAPGEMINI OFF-CAMPUS DRIVES | 5. 2022 BATCH |
To Stay Up-to-date, Follow us on Social Media:
1. Join our Telegram Channel: | Click Here |
2. Like us on Facebook: | Click Here |
3. Follow us on Instagram: | Click Here |
4. Follow us on LinkedIn: | Click Here |
5. Follow us on Google News: | Click Here |
ADAPT Different Coding Solutions:
- Largest Array Solution – Click Here
- Batsman & Bowler Solution – Click Here
- Instruments Problem Solution – Click Here
- Check Two Person Are Same – Click Here
- Medicine App ADAPT Solution – Click Here
- String Combination Capgemini ADAPT Solution – Click Here
- Remove”X”inString Problem Solution – Click Here
- Customer and Invoice ADAPT Problem Solution – Click Here
- Book and Author Problem Solution – Click Here
- Highest Feedback Problem Solution – Click Here
- Registered Customer Problem Solution in Java – Click Here
- Product of Digits Problem Solution – Click Here
- Change Using Minimal Coins/Notes Solution in Java – Click Here
Capgemini ADAPT Sprint 1 (Bus Reservation Solutions):
- 1. Capgemini ADAPT Sprint 1 Bus Reservation System – DisplayCustomerInAscendingOrder Problem Solution
- 2. Capgemini ADAPT Sprint 1 Bus Reservation System – DisplayCustomerByFirstName Problem Solution
- 3. Capgemini ADAPT Sprint 1 Bus Reservation System – SortByCustomerId Problem Solution
- 4. Capgemini ADAPT Sprint 1 Solution Java | LSAByCustomerName Problem Solution
- 5. Capgemini ADAPT Sprint 1 Case Study Solution Java | BSAByCustomerId Problem Solution
Capgemini ADAPT Sprint 2 (Bus Reservation System):
- 1. Capgemini ADAPT Sprint 2 Case Study (Bus Reservation System) Solution | HAS-A-Relationship Solution Java
- 2. Capgemini ADAPT Sprint 2 Case Study (Bus Reservation System) Solution OOPs-Para-Constructor Java
- 3. Capgemini ADAPT Sprint 2 Bus Reservation System (CRUDOperations) Problem Solution
ADAPT Sprint 3 Solutions – Capgemini (Toy Rental A):
- 1. Capgemini Adapt 2022 Toy Rental A Solutions for Sprint 3 Learning Outcome 1
- 2. Capgemini Adapt 2022 Toy Rental A Solutions for Sprint 3 Learning Outcome 2
- 3. Capgemini Adapt 2022 Toy Rental A Solutions for Sprint 3 Learning Outcome 3
- 4. Capgemini Adapt 2022 Toy Rental A Solutions for Sprint 3 Learning Outcome 4
Online Shopping A Solutions Using Java:
- Capgemini ADAPT 2022 Online Shopping A – Display Products Solution using JAVA – Click Here