• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

shifting

 
Ranch Hand
Posts: 54
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
String s = "Hello";
long l = 99;
double d = 1.11;
int i = 1;
int j = 0;
1) j= i <<s;>
2) j= i<<j;>
3) j=i<<d;>
4)j=i<<l;>
Answer to Question 46)
and it has given the answer is 2,3 compile correctly.
how come shifting a number(i=1) 'o' times will give '0' value.
 
Ranch Hand
Posts: 32
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
rajani,
Please clarify your question!!!
Thanks.
 
Ranch Hand
Posts: 1070
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Question doesn't make sense, or maybe you wrote the answers down wrong. I don't see anything with shifting involved. There is not ">>", ">>>", or "<<" anywhere.
Bill
 
rajani adapa
Ranch Hand
Posts: 54
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
String s = "Hello";
long l = 99;
double d = 1.11;
int i = 1;
int j = 0;

It has given that
i<<j =j.<br /> how come it is true?
 
Ranch Hand
Posts: 144
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
what warbled stuff do you write, rajani?
pls reframe your question properly.
what am i to make of:
i<how come it is true?>
sorry for being rude but it's the second time you're doing it!
 
Greenhorn
Posts: 25
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
it's impossible to get a 0 value if you shift bits by a 0
00000001
event if you shift by zero you are not moving bits to the left they stay the same as they were. so the answer is incorrect the answer stays 1 as it was.
 
Skool. Stay in. Smartness. Tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic