Question: Please help me code the following in: JAVA Full points will be awarded, thanks in advance! Part 4 (More Single Loop Exercises) (a) Write a

Please help me code the following in: JAVA

Full points will be awarded, thanks in advance!

Please help me code the following in: JAVA Full points will be

Part 4 (More Single Loop Exercises) (a) Write a method powerOfTwo that takes an integer argument and prints to the console what power of 2 the given number is. If the number is not a power of 2, then simply print a message that says so. For example, powerOfTwo (64): //should print: "64 is 2 to the power of 6" powerofTwo (73);1/should print: "73 is not a power of 2" Note: you are not allowed to use any library functions! (b) Write a method numBackward that reverses the digits of a given integer (that is, an integer passed in as an argument). Use a single loop and modular arithmetic to accomplish this goal. Play around with ideas on paper first. After you reverse the digits, compare the number you got with the original argument and determine if the original argument is a palindrome. Your method should print a message to the screen that states the reversed number and whether or not it is a palindrome. For example, numBackward (123456789) //should print: "backward: 987654321, not palindrome!" numBackward (123454321) //should print: "backward: 123454321, palindrome

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!