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 3987328
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T06:07:14+00:00 2026-05-20T06:07:14+00:00

I have a bunch of code to find the primitive operations for. The thing

  • 0

I have a bunch of code to find the primitive operations for. The thing is that there aren’t really many detailed resources out on the web on the subject. In this loop:

for i:=0 to n do
  print test
end

How many steps do we really have? In my first guess I would say n+1 considering n for the times looping and 1 for the print. Then I thought that maybe I am not precise enough. Isn’t there an operation even to add 1 to i in every loop?
In that matter we have n+n+1=2n+1. Is that correct?

  • 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-20T06:07:15+00:00Added an answer on May 20, 2026 at 6:07 am

    The loop can be broken down into its “primitive operations” by re-casting it as a while:

    int i = 0;
    while (i < n)
    {
        print test;
        i = i + 1;
    }
    

    Or, more explicitly:

    loop:
        if (i < n) goto done
        print test
        i = i + 1
        goto loop
    done:
    

    You can then see that for each iteration, there is a comparison, an increment, and a goto. That’s just the loop overhead. You’d have to add to that whatever work is done in the loop. If the print is considered a “primitive operation,” then you have:

    • n+1 comparisons
    • n calls to print
    • n increments
    • n+1 goto instructions (one to branch out of the loop when done)

    Now, how that all gets converted to machine code is highly dependent on the compiler, the runtime library, the operating system, and the target hardware. And perhaps other things.

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

Sidebar

Related Questions

I have a bunch of generic code that is used a lot, which i'd
I have a bunch of PHP code that is auto-generated and it puts all
I have a bunch of Workflow foundation 4.0 RC code activities that consume web
I have a bunch of code of the form: someVector.push_back(Foo(some name, 1.0, 3.1415926); someVector.push_back(Foo(different
I am fairly new to C++ and I have seen a bunch of code
I have a bunch of old C code, which I compiled using MinGW, and
I have a bunch of these little bits of HTML code repeated over and
I have a bunch of occurrences of this kind of boilerplate code in my
I have an application with some bunch of code like this: errCode = callMainSystem();
I have a code like this: $myvar=$_GET['var']; // a bunch of code without any

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.