Write a pseudo code to evaluate a number to any base given
(2...16) based on the input. Number greater than 9 should be
given as A-F for 10-15.
No Answer is Posted For this Question
Be the First to Post Answer
How to display questions one by one in jsp and I wants to store the answers in my database?
One boy has to climb steps. He can climb 1 or 2 steps at a time. Write a function that will returns number of way a boy can climb the steps. Int WaytoSteps(int n) (eg:- suppose number of steps is n=4 ,the function will return 5 (one-one-one-one ,one-one-two, one-two-one-,two-one-one, two-two)
how do we provide security for web services
What Is The Difeerence Between C & C++
What are the Advantages of HashMap over Vector?
what is the diffrence between software and hardware language?
is try block possible without catch block?
Is CTS company do serious backgroung check?
what is different betweet class and interface in java?
2 Answers Microsoft, Sun Microsystems,
class A{ void me(){s.o.p("");} class B extends A{ void me() {s.o.p(" ");} class M{ A a=new B(); B b=new A(); a.me(); b.mne();} what is the output of this, how?
2 Answers Cosmos, HyTech Pro, WinSoft,
Given an array of size n+1 which contains all the numbers from 1 to n.Find the number which is repeated in O(n) time.How do you proceed with the same with floating numbers from 0 to 1 instead of 1 to n?
In loading programs into memory, what is the difference between load-time dynamic linking and run-time dynamic linking?