hi everyone, i am currently studying in university and i am studying object orientated programming. i am struggling quiet a bit and would really appreciate any help whatsoever withe following questions or maybe relevant web links...
( i am not cheating these are genuinely revision questions)
1.. Write a method called multiConcat that takes a String and an integer as
parameters. Return a String that consists of the string parameter concatenated with
itself count times, where count is the integer parameter. For example, if the
parameter values are "hi" and 4, the return value is " h i h i h i h i " . Return the
original string if the integer parameter is less than 2.
2. Create an interface called VCR that has methods that represent the standard operations
on a video cassette recorder (play, stop, etc.). Define the method signatures any way
you desire. Describe how a class might implement this interface.
3
. Write a Java applet that reads in two floating-point numbers and determines if the first
number is smaller than the second. Make use of the input dialogs to read the values
of two floating-point numbers. Display the output in the form:
"<Smallestinput_value> is the Smallest of the two numbers".


