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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T13:16:56+00:00 2026-06-09T13:16:56+00:00

Why do these 2 pieces of code yield different outputs? $a = 3; ($a

  • 0

Why do these 2 pieces of code yield different outputs?

    $a = 3;
    ($a == 4) and print "But I wanted apple, cherry, or blueberry!\n" ;

gives No program output but

    $a = 3;
    print "But I wanted apple, cherry, or blueberry!\n" and ($a == 4);

gives: But I wanted apple, cherry, or blueberry!

  • 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-09T13:16:57+00:00Added an answer on June 9, 2026 at 1:16 pm

    Because and is a so-called “short circuit” operator. Meaning that if you have condition1 and condition2, then the first condition is evaluated, and only if the first condition returns true is the second condition evaluated.

    So, in

    $a = 3;
    ($a == 4) and print "But I wanted apple, cherry, or blueberry!\n" ;
    

    the condition $a==4 is false and so the print statement isn’t evaluated.

    However, in

    $a = 3;
    print "But I wanted apple, cherry, or blueberry!\n" and ($a == 4);
    

    The print statement does its thing and returns true. The second condition is evaluated (which is obviously false), but the printing is already done.

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

Sidebar

Related Questions

Consider these 2 pieces of code (you can assume execeptionObj is of type Object
How do these two pieces of code differ when accessing a REST API? $result
Is there any difference between these tow pieces of code & which approach is
I have these two pieces of code. The first one works perfectly: UIView *tmp
Regarding class public class declaration, please look at these two pieces of code: public
I'm not having any errors from these pieces of code, they're just empty everytime.
Can anyone provide some clues as to why these two pieces of code are
can someone please explain the difference between these 2 pieces of code: var temp
What is the difference between these two pieces of code? class something { static
Which of these pieces of code is faster? if (obj is ClassA) {} if

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.