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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T20:21:04+00:00 2026-06-15T20:21:04+00:00

I just came home from a job interview, and the interviewer asked me to

  • 0

I just came home from a job interview, and the interviewer asked me to write a program:

It should, count from 1 to 100, and print…

If it was multiple of 3, “ping”
If it was multiple of 5, “pong”
Else, print the number.

If it was multiple of 3 AND 5 (like 15), it should print “ping” and “pong”.

I chose Javascript, and came up with this:

for (x=1; x <= 100; x++){
    if( x % 3 == 0 ){
        write("ping")
    }
    if( x % 5 == 0 ){
        write("pong")
    }
    if( ( x % 3 != 0 ) && ( x % 5 != 0 ) ){
        write(x)
    }
}

Actualy, I left very unhappy with my solution, but I can’t figure out a better one.

Does anyone knows a better way to do that?
It’s checking twice, I didn’t like it.
I ran some tests here at home, without success, this is the only one that returns the correct answer…

  • 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-06-15T20:21:05+00:00Added an answer on June 15, 2026 at 8:21 pm

    Your solution is quite satisfactory IMHO. Tough, as half numbers are not multiple of 3 nor 5, I’d start the other way around:

    for (var x=1; x <= 100; x++){
        if( x % 3 && x % 5 ) {
            document.write(x);
        } else {
            if( x % 3 == 0 ) {
                document.write("ping");
            }
            if( x % 5 == 0 ) {
                document.write("pong");
            }
        }
        document.write('<br>'); //line breaks to enhance output readability
    }​
    

    Fiddle

    Also, note that any number other than 0 and NaN are truthy values, so I’ve removed the unnecessary != 0 and some pairs of parenthesis.


    Here’s another version, it doesn’t make the same modulus operation twice but needs to store a variable:

    for (var x=1; x <= 100; x++) {
        var skip = 0;
        if (x % 3 == 0) {
            document.write('ping');
            skip = 1;
        }
        if (x % 5 == 0) {
            document.write('pong');
            skip = 1;
        }
        if (!skip) {
            document.write(x);
        }
        document.write('<br>'); //line breaks to enhance output readability
    }
    

    Fiddle

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

Sidebar

Related Questions

I just came from a presentation by the Manhattan Borough President who said that
For example the user came to the page from example.com/home.html to the page example.com/checkout.html
Just came across this by Chris Coyier - http://css-tricks.com/examples/CSSTabs/ Can anyone explain me, how
Just came across an issue with my Wordpress template that I can't figure out.
I just came to know that it's possible to record call voice (both incoming
I just came across jLinq , a JS library to query data (e.g. arrays)
I just came cross puppet inheritance lately. A few questions around it: is it
I just came across an interesting LogCat entry: 06-28 08:43:25.616 I Web Console 5075
I just came across a weird error: private bool GetBoolValue() { //Do some logic
I just came across an idea in The Structure And Interpretation of Computer Programs

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.