User Input
User interface contains two types of user input controls: TextInput, which accepts all characters and NumericInput, which accepts only digits.
Implement the class TextInput that contains:
- Public sub Add(c As Char) - adds the given character to the current value
- Public function GetValue() As String - returns the current value
Implement the class NumericInput that:
- Inherits TextInput
- Overrides the Add method so that each non-numeric character is ignored
For example, the following code should output "10":
Dim input As TextInput = New NumericInput()
input.Add(CChar("1"))
input.Add(CChar("a"))
input.Add(CChar("0"))
Console.WriteLine(input.GetValue())
VB.NET 16.9, .NET Framework 4.8
Loading...
Loading...
Tags
- VB.NET
- Inheritance
- OOP
- Public
- Easy
Information
Score Distribution
% of candidates
Score
Would you like to see our other questions?
We have 1000+ premium hand-crafted questions for 160+ job skills and 20+ coding languages. We prefer questions with small samples of actual work over academic problems or brain teasers.
On the blog
Since we're all biased and we use incorrect proxies, why not just outsource hiring to experts or recruitment agencies? After all, they've been screening people for many years, so they must know how to do it right?
Not really. I was surprised to discover that many experts...