COURSES
MBAData Science & AnalyticsDoctorate Software & Tech AI | ML MarketingManagement
Professional Certificate Programme in HR Management and AnalyticsPost Graduate Certificate in Product ManagementExecutive Post Graduate Program in Healthcare ManagementExecutive PG Programme in Human Resource ManagementMBA in International Finance (integrated with ACCA, UK)Global Master Certificate in Integrated Supply Chain ManagementAdvanced General Management ProgramManagement EssentialsLeadership and Management in New Age BusinessProduct Management Online Certificate ProgramStrategic Human Resources Leadership Cornell Certificate ProgramHuman Resources Management Certificate Program for Indian ExecutivesGlobal Professional Certificate in Effective Leadership and ManagementCSM® Certification TrainingCSPO® Certification TrainingLeading SAFe® 5.1 Training (SAFe® Agilist Certification)SAFe® 5.1 POPM CertificationSAFe® 5.1 Scrum Master Certification (SSM)Implementing SAFe® 5.1 with SPC CertificationSAFe® 5 Release Train Engineer (RTE) CertificationPMP® Certification TrainingPRINCE2® Foundation and Practitioner Certification
Law
Job Linked
Bootcamps
Study Abroad
MS in Data AnalyticsMS in Project ManagementMS in Information TechnologyMasters Degree in Data Analytics and VisualizationMasters Degree in Artificial IntelligenceMBS in Entrepreneurship and MarketingMSc in Data AnalyticsMS in Data AnalyticsMS in Computer ScienceMaster of Science in Business AnalyticsMaster of Business Administration MS in Data ScienceMS in Information TechnologyMaster of Business AdministrationMS in Applied Data ScienceMaster of Business AdministrationMS in Information Technology and Administrative Management MS in Computer Science Master of Business Administration Master of Business Administration-90 ECTSMSc International Business ManagementMS Data Science Master of Business Administration MSc Business Intelligence and Data ScienceMS Data Analytics MS in Management Information SystemsMSc International Business and ManagementMS Engineering ManagementMS in Machine Learning EngineeringMS in Engineering ManagementMSc Data EngineeringMSc Artificial Intelligence EngineeringMPS in InformaticsMPS in Applied Machine IntelligenceMS in Project ManagementMPS in AnalyticsMS in Project ManagementMS in Organizational LeadershipMPS in Analytics - NEU CanadaMBA with specializationMPS in Informatics - NEU Canada Master in Business AdministrationMS in Digital Marketing and MediaMSc Sustainable Tourism and Event ManagementMSc in Circular Economy and Sustainable InnovationMSc in Impact Finance and Fintech ManagementMS Computer ScienceMBA in Technology, Innovation and EntrepreneurshipMSc Data Science with Work PlacementMSc Global Business Management with Work Placement MBA with Work PlacementMS in Robotics and Autonomous SystemsMS in Civil EngineeringMS in Internet of ThingsMSc International Logistics and Supply Chain ManagementMBA- Business InformaticsMSc International ManagementMBA in Strategic Data Driven ManagementMSc Digital MarketingMBA Business and MarketingMSc in Sustainable Global Supply Chain ManagementMSc Digital Business Analytics MSc in International HospitalityMSc Luxury and Innovation ManagementMaster of Business Administration-International Business ManagementMS in Computer EngineeringMS in Industrial and Systems EngineeringMSc MarketingMSc Global Supply Chain ManagementMS in Information Systems and Technology with Business Intelligence and Analytics ConcentrationMSc Corporate FinanceMSc Data Analytics for BusinessMaster of Business AdministrationMaster of Business AdministrationMaster of Business AdministrationMSc in International FinanceMaster of Business AdministrationBachelor of BusinessBachelor of Business AnalyticsBachelor of Information TechnologyMaster of Business AdministrationMBA Business AnalyticsMSc in Marketing Analytics and Data IntelligenceMS Biotechnology Management and EntrepreneurshipMSc in Luxury and Fashion ManagementMaster of Business Administration (90 ECTS)Bachelor of Business Administration (180 ECTS)B.Sc. Computer Science (180 ECTS) MSc in International Corporate Finance MSc in Sustainable Luxury and Creative IndustriesMSc Digital MarketingMSc Global Supply Chain Management (PGMP)MSc Marketing (PGMP)MSc Corporate Finance (PGMP)MSc Data Analytics for Business (PGMP)MS Business AnalyticsMaster of Business AdministrationMS Quantitative FinanceMS Fintech ManagementMS Business Analytics PGMPState University of New York Bachelors Program - STEM MSc Business Intelligence and Data Science (PGMP)MSc International Logistics and Supply Chain Management ( PGMP)MSc International Management (PGMP)MSc Psychology & Management (PGMP)State University of New York Bachelor's Year 1 ProgramMaster of Health Services AdministrationM.A Digital Marketing (PGMP)MS in Technology Leadership and Project ManagementMaster of Health Services Administration and Master of Business Administration (Dual Degree)MSc in Supply Chain ManagementMSc in Hospitality ManagementMaster of Business Administration 60 ECTS UAMMaster of Business Administration 90 ECTSMaster of Computer Science 90 ECTSM.Engg Industrial Engineering 90 ECTSM.A in Management 90 ECTSMS in Data AnalyticsMS in Artificial IntelligenceMaster of Business AdministrationMA International Business & LeadershipMaster of Business Administration 90 ECTS
For College Students

$$/$$

You now know how to implement your logic using a while loop. Just like the while loop, there is another loop called the do-while loop. The loop logic, a starting point, a continuation condition, and a stopping point are similar to what you learnt in the previous lectures.

$$/$$

So you now know how to use while and do-while loops. The basic logic for these loops remains the same, the only difference being that the loop continuation condition is evaluated before the first iteration in case of “while” loop and after the first iteration in case of “do while”.

 

Let us now take a look at Java code to implement do-while loops.

 

Please download the file below used in the following video.

$$/$$

Video Transcript

 

One last kind of loop which we'll be talking about is known as the do while loop. So basically the do while loop is much similar to the while loop and the only difference is that the do while loop executes at least once irrespective of whether the condition is true or no. So while the general template of the while loop used to be something like this, that while condition holds true, then do some action, there is some statement which needs to be executed. So this was the general rule for the while loop. In case of the do while loop, we can write that do statement that is take some action while some condition holds true. So basically, if you observe carefully, the only essential difference between a while loop and a do while loop is that irrespective of the while condition which is written here, this statement gets executed once and then we check the while condition. So basically here in the while loop we had that we first check the condition and then execute the statement. Whereas in case of the do while loop, it is equivalent to this at first the statement is executed, then the while loop comes here.

 

So this is the equivalent of the do while loop here do statement that is take some action and after that keep on checking whether the condition holds true or no. So what can be an example for this? A simple example would be that you take out your car from your garage and you say that keep on driving the car till the destination is reached. So basically you say that do keep driving while destination is not reached. So this basically means that you start the car when you take out the car from your garage and you keep on driving. And after that you keep on checking whether destination is arrived or no. As soon as the destination is arrived, you can stop driving because then this condition would be false. So this is an example of where you can use the do while loop.

 

Video Recap

 

  • Do-while loop is similar to while loop but executes at least once regardless of the condition being true or false.

  • In a while loop, the statement is executed only if the condition holds true.

  • In a do-while loop, the statement is executed first and then the condition is checked.

  • A simple example of a do-while loop is driving a car to a destination until it is reached.

  • The loop continues until the condition is false.