Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4260616
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T05:56:39+00:00 2026-05-21T05:56:39+00:00

I have just entered the world of coding and am learning all about loops.

  • 0

I have just entered the world of coding and am learning all about loops. I just learnt about for and while loops but don’t understand why the return different results. Can someone please explain the logic in a lay person’s terms.

/* for loop code */

$counter = 0;
$start = 1;
$end = 11;

for($start;$start<$end;start++) {
$counter=$counter+1;
print $counter;
}

The result I get is 1, 2, 3, 4, 5, 6, 7 , 8, 9 , 10

/* while loop code */

$start=0;
$end=11;

while($start<end) {
$start=$start+1;
print $start;
}

The result I get is 1,2,3,4,5,6,7,8,9,10,11

Why is that the while loop returns a result of 1 through to 11 whilst the for loop returns a result of 1 through to 10

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T05:56:40+00:00Added an answer on May 21, 2026 at 5:56 am

    In for case $start starts from 1 but in while case $start starts from 0.

    Working on for –

     iteration    $start      $start<$end     counter   print   start++        
        1           1            1<11           1         1        2
        2           2            2<11           2         2        3
        3           3            3<11           3         3        4
        4           4            4<11           4         4        5
        5           5            5<11           5         5        6
        6           6            6<11           6         6        7
        7           7            7<11           7         7        8
        8           8            8<11           8         8        9
        9           9            9<11           9         9        10
       10           10          10<11          10         10       11
       11           11          11<11 
                              // (false) break
    

    Similarly work on the while loop. It’s a paper-pencil exercise.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have just entered the world of jquery and am pretty new to javascript
I have just entered in the world of OpenX, and as figured out that
I have just started learning python version 3 and trying to create a file
We have just migrated from solr3.5 to solr3.6, for all this time we have
I have just entered into the Blackberry Arena. Now I am ready for the
I have just entered into the Grails arena. I have a requirement where I
I have just created this table: create table dbo.OrderTypes ( ID smallint primary key
we have just started using a git account of our Django website project so
I have just installed composer in my /usr/bin folder, so when from that folder
I have just started using RSpec and I copied the very simple test on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.