-
PUBG Mobile UNBAN, Approved by Government of India
PUBG players now your wait is over. Now PUBG mobile has been approved by Indian government. Very soon PUBG is going to unban. Ministry of Corporate affairs, Government of India have allowed and accepted the registration of PUBG India Pvt.Ltd. PUbG mobile is now “PUBG India Private Limited”, as earlier affirmed by Krafton/PUBG Corporation. The…
-
Android Basics
R. Java It is an autogenerated file generated by AAPT (Android Asset packaging Tool) that contains resources ID in the form of integer ID for all the resources in res folder. View It is the basic building block by which interface is made up of or we can say View is the control by which…
-
Sorting Code (Ascending order and Descending order)
Ascending order sort code in java import java.util.*;public class AscendingOrder{public static void main(String abcd[]){int n, comp; //declaration of length of array(n) and temporary variable for swappingScanner s = new Scanner(System.in); //creating object for scanner classSystem.out.print(“Enter no. of elements in array:”);n = s.nextInt(); //storing input from the userint a[] = new int[n]; //declaration of arraySystem.out.println(“Enter the…
-
Difference among Class, Interface and Abstract class
CLASS Supports only concrete methods (Method with heading and body). Do not support abstract methods. We can declare class as a final type. It supports variable. It supports constants which should be declare as final. By default, access modifier of class is default. It supports constructors. Instance methods are allowed. It supports static method since…
