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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T15:07:40+00:00 2026-05-25T15:07:40+00:00

Recently I came across a code snippet in a book which sets a Boolean

  • 0

Recently I came across a code snippet in a book which sets a Boolean value to a field like this

the input identifier is a List of Strings

if (identifier.size() >= 2) {
    int c = Integer.parseInt(identifier.get(1));
    bulk = (c & 4) == 4;
    hazardous = (c & 2) == 2;
    toxic = (c & 1) == 1;
}

what is the need for unary & operators here?Can’t this be done using a simple
c==4 etc instead of (c & 4)== 4 ?

  • 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-25T15:07:40+00:00Added an answer on May 25, 2026 at 3:07 pm

    No, this is a bitwise operation.

    Imagine c=7. In that case all conditions would be true.

    c = 7;
    bulk = (c & 4) == 4; // true
    hazardous = (c & 2) == 2; //true
    toxic = (c & 1) == 1; //true
    

    In binary, you’d have this:

    c = 0111; //4-bit to simplify output
    bulk = (c & 0100) == 0100; //
    hazardous = (c & 0010) == 0010; //true
    toxic = (c & 0001) == 0001; //true
    

    Due to bitwise AND (&) you get 0111 & 0010 = 0010 etc.

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

Sidebar

Related Questions

I recently came across this in some code - basically someone trying to create
Came across code recently in Wicket like so: Form<?> form = new Form<Void>(form) Can
I recently came across this code example in Mercury: append(X,Y,Z) :- X == [],
I recently came across some code that looked like: if(sizeof(var,2) == 4) { ...
I recently came across this line in a code - fprintf(logfile, |-IP Version :
I recently came across code written by a fellow programmer in which he had
I am pretty new to C. I recently came across this piece of code
I recently came across the pandas library for python, which according to this benchmark
An interesting issue came up recently. We came across some code that is using
I was working on some code recently and came across a method that had

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.