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

  • Home
  • SEARCH
  • 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 900851
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T15:27:32+00:00 2026-05-15T15:27:32+00:00

I was asked this question in an interview Plz tell me the answer :-

  • 0

I was asked this question in an interview Plz tell me the answer :-

You have no documentation of the kernel. You only knows that you kernel supports paging.
How will you find that page size ? There is no flag or macro you have that can tell you about page size.

I was given the hint as you can use Time to get the answer. I still have no clue for it.

  • 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-15T15:27:34+00:00Added an answer on May 15, 2026 at 3:27 pm

    Run code like the following:

    for (int stride = 1; stride < maxpossiblepagesize; stride += searchgranularity) {
        char* somemem = (char*)malloc(veryverybigsize*stride);
        starttime = getcurrentveryaccuratetime();
        for (pos = somemem; pos < somemem+veryverybigsize*stride; pos += stride) {
            // iterate over "veryverybigsize" chunks of size "stride"
            *pos = 'Q'; // Just write something to force the page back into physical memory
        }
        endtime = getcurrentveryaccuratetime();
        printf("stride %u, runtime %u", stride, endtime-starttime);
    }
    

    Graph the results with stride on the X axis and runtime on the Y axis. There should be a point at stride=pagesize, where the performance no longer drops.

    This works by incurring a number of page faults. Once stride surpasses pagesize, the number of faults ceases to increase, so the program’s performance no longer degrades noticeably.

    If you want to be cleverer, you could exploit the fact that the mprotect system call must work on whole pages. Try it with something smaller, and you’ll get an error. I’m sure there are other “holes” like that, too – but the code above will work on any system which supports paging and where disk access is much more expensive than RAM access. That would be every seminormal modern system.

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

Sidebar

Related Questions

I originally asked this question , but in finding an answer, discovered that my
One of my friend was asked this question in an interview - You have
I have been asked this question in interview how does XML and Soap work
i was asked this question in my interview that how to make a class
I went to an interview today and was asked this question: Suppose you have
I was asked this question during an interview. They're both O(nlogn) and yet most
I was asked this question in a job interview. The interviewer and I disagreed
I was asked this question in an interview for an internship, and the first
I was asked this question in some interview. I was required to write code
I was asked this question in an interview would appreciate your answers. Regards; Mohammad

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.