~ is the unary bitwise complement operator. It flips the bits represented by a number. Its usage is ~operand, the operand should be of primitive integral type. For example if a binary number 110 is ...
As per the dictionary, abstract means not concrete. In object oriented languages also, when a class is marked with abstract keyword, it indicates that the class is not concrete. It cannot be ...