Interface In JAVA & Multiple InheritanceMULTIPLE INHERITANCE Lets Understand what multiple inheritance is Multiple inheritance is a feature of some object-oriented computer programming languages in which an object or class can inherit features from more than one parent object or parent cl...Dec 12, 2021·2 min read
Hello World In React NativeSteps To Create App in React Native Setup environment for react native. Open Terminal/command prompt in the folder you want to create app in . Enter npx react-native init app_name Once the app is created , Open app folder in your ide or editor (I...Nov 2, 2021·1 min read
Implementation Of Stacks Using Array In JAVAStatement I created an Stack using array and created its Three Basic operations i.e. PUSH , POP and Top. where PUSH is insertion operation POP is deletion operation Top just returns variable at top of stack. I also added Logic of "Overflow" and "...Nov 2, 2021·1 min read
Palindrome And String ReversalStatement Create a program to Reverse a String / Number(The input can be "12121" or "hello") check if given input is palindrome or not and also return Reversed input. Example 1: INPUT 12121 OUTPUT 12121 is reverse of 12121 12121 String is Palindrom...Nov 1, 2021·1 min read
Operation On Strings In JAVAWe are going to perform 3 basic operation on String: 1.Calculating Length of String. Its very easy in java using length() function. It will return int value of the string including spaces. Check below code for better understanding 2.Concatenation ...Oct 27, 2021·1 min read