User Posts: royal52
0
Why Learn Java?
3

If there’s one skill you won’t regret learning now, that would be Java programming. Java is everywhere – and it is here to stay! It is used in the simplest ...

0
A Guide to Bitcoin Cryptocurrency: Your Questions Answered
1

Global financial services are powered by fiat currency, meaning paper currency and metallic coins that are backed by Governments and stamped by law as legal ...

0
Blockchain Technology: Managing Risks and Unlocking Opportunities
1

There is not even the shred of a doubt that blockchain, the digitally distributed ledger technology, has the potential to change civilization the way the ...

0
On-premise Microsoft Dynamics CRM vs Dynamics 365 online
0

Many organizations are now considering moving their business solutions to the cloud so they won’t get left out. Migrating to the cloud offers advantages to ...

0
Reasons Facebook Likes Still Count for Businesses
1

Facebook is one of the social media platforms that multiple businesses use to market their products and services. It continues to prove beneficial for various ...

0
8 Essential Plugins For Your WordPress Blog
2

WordPress is commonly used blogging sites, and it is as simple to use. If you are about to start your first WordPress blog, then all you have to do is make ...

0
IaaS vs PaaS for Developers
0

Traditionally, businesses have been offered two options: PaaS (Platform as service) and IaaS (Infrastructure as a service). They vary significantly in what ...

0
Top Ways to Reach new Customers Effectively
0

Do you have an aggressive online and/or offline marketing campaign that just isn’t bringing in the goods? Maybe you’re effective at reaching your existing ...

0
IT Technologies and the Way We Shop in 2018
0

Consumer technology in the retail sector has come a long way in a short amount of time. While mechanical cash registers and manual inventory systems were the ...

0
America History Knowledge test
0

  If you think you have too much American History Knowledge then think again, this app is developed for the sole purpose of measuring your America ...

0
4 Essential Animation Trends in Mobile UX Design
1

UX designers have recognized the value of animated videos ever since they became light and accessible to use in mobile environments.   Animations ...

0
General Science Knowledge Test
1

  If you think you have too much General Science knowledge then think again, this quiz is developed for the sole purpose of measuring your General ...

Browsing All Comments By: royal52
  1. just write if(array[j] lesser then array[j+1]) instead of if(array[j] greater then array[j+1]) and it will sort the array in descending order.

  2. I have updated my comment with a code block containing while loop, cheers.

  3. Okay, that’s the code of Bubble sort by using While Loop written in C++.

    while(i < 4) { int j = 0; while(j < 4) { if(array[j]>array[j+1])
    {
    hold=array[j];
    array[j]=array[j+1];
    array[j+1]=hold;
    }
    j++;
    }
    i++;
    }

    If you have any other questions then let me know, thanks.

  4. yes we can use a while loop.

  5. thanks for pointing out.

  6. thanks for pointing out !!!