Capgemini ADAPT 2022 Online Shopping A – Search Customers by City Solution using JAVA

Capgemini ADAPT 2022 Online Shopping A - Search Customers by City Solution using JAVA
Capgemini ADAPT 2022 Online Shopping A - Search Customers by City Solution using JAVA

In this post, we will try to give a solution to an important problem of Capgemini ADAPT 2022. The problem is Online Shopping A – JOSL-S3-L2-3-Search Customers By City.

However, the solutions are provided for learning purposes only. Candidates must submit their own code during attending the Sprints.

Online Shopping A – JOSL-S3-L2-3-Search Customers By City Solution:


public class Source {
String customerDetails[][]=new String[5][3];
Source()
{
customerDetails[0][0]=”1001″;
customerDetails[0][1]=”Raj”;
customerDetails[0][2]=”Chennai”;
customerDetails[1][0]=”1008″;
customerDetails[1][1]=”Akshay”;
customerDetails[1][2]=”Pune”;
customerDetails[2][0]=”1002″;
customerDetails[2][1]=”Simrath”;
customerDetails[2][2]=”Amristar”;
customerDetails[3][0]=”1204″;
customerDetails[3][1]=”Gaurav”;
customerDetails[3][2]=”Delhi”;
customerDetails[4][0]=”1005″;
customerDetails[4][1]=”Ganesh”;
customerDetails[4][2]=”Chennai”;
}
void binarySearch(String arr[][],int f,int l,String x){
int mid=(f+l)/2;
while(f<=l){
if(arr[mid][2].compareTo(x)<0){
f=mid+1;

}else if(arr[mid][2].equals(x)){
int temp=mid;
int temps=mid;
if((temps-1>=f) && arr[temps-1][2].equals(x)){
temps=temps-1;
while(arr[temps][2].equals(x)){
System.out.println(arr[temps][0]+”\n”+arr[temps][1]+”\n”+a
rr[temps][2]);
if(temps-1>=f)
temps=temps-1;
}
}
System.out.println(arr[temp][0]+”\n”+arr[temp][1]+”\n”+arr
[temp][2]);
if(temps+1<=l && arr[temp+1].equals(x)){
temp=temp+1;
while(arr[temp][2].equals(x)){
System.out.println(arr[temp][0]+”\n”+arr[temp][1]+”\n”+arr
[temp][2]);
temp=temp+1;
}
}
break;
}
else{
l=mid-1;
}
mid=(f+l)/2;
}
if(f>l){
System.out.println(“No Record Found”);
}
}
public static void main(String args[] ) throws Exception {
/* Enter your code here. Read input from STDIN. Print output to
STDOUT */
Source ob=new Source();
Scanner sc=new Scanner(System.in);
String c=sc.nextLine();
Arrays.sort(ob.customerDetails,Comparator.comparing(arr->arr[2]));
ob.binarySearch(ob.customerDetails,0,4,c);
sc.close();
}

}


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:


  1. Largest Array Solution – Click Here
  2. Batsman & Bowler Solution – Click Here
  3. Instruments Problem Solution – Click Here
  4. Check Two Person Are Same – Click Here
  5. Medicine App ADAPT Solution – Click Here
  6. String Combination Capgemini ADAPT Solution – Click Here
  7. Remove”X”inString Problem Solution – Click Here
  8. Customer and Invoice ADAPT Problem Solution – Click Here
  9. Book and Author Problem Solution – Click Here
  10. Highest Feedback Problem Solution – Click Here
  11. Registered Customer Problem Solution in Java – Click Here
  12. Product of Digits Problem Solution – Click Here
  13. 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):


Online Shopping A Solutions Using Java:


  • 1. Capgemini ADAPT 2022 Online Shopping A – Display Products Solution using JAVA – Click Here
  • 2. Capgemini ADAPT 2022 Online Shopping A – Products by Category Solution using JAVA – Click Here
  • 3. Capgemini ADAPT 2022 Online Shopping A – Customer Array Solution using JAVA – Click Here
  • 4. Capgemini ADAPT 2022 Online Shopping A – Search Customers by Name Solution using JAVA – Click Here