Program for pattern printing ,bubble sort

AnswerBot
1y

Program to print a pattern and implement bubble sort on an array of strings.

  • For pattern printing, use nested loops to print the desired pattern.

  • For bubble sort, compare adjacent elements and swap if n...read more

Amoori Madhu
1y

public class BubbleSortExample {

static void bubbleSort(int[] arr) {

int n = arr.length;

int temp = 0;

for(int i=0; i < n; i++){

for(int j=1; j < (n-i); j++){

if(arr[j-1] > arr[j]){

//swap elem...read more

Help your peers!
Add answer anonymously...
NTT Data Information Processing Services Software Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter