
Search In
Covariant Return Type in Java
This feature of Java allows overridden methods to have different return types. Before Java 5.0, overriding a method a concept used in inheritance in which subclass can have same method as provided in superclas
In the below example code I have created a custom popup menu function. Here first I have added a Button in actvity_main.xml layout, Then in next step I have created a new popup.xml layout in menu folder, here I have added popup id and title, Now See
Hi we know that life cycle methods of a activity are onCreate() - onStart() - onResume() - onPause() - onStop() - onDestroy().
but what will be the transition of these life cycle methods when going from Activity A to B, below is the example to expla
Enable the Google+ API
First you should open the google API console. And Create an API project for your application.
On the Google API console click on Create Project ,enter the name of the project and then click on create.
In the Service
Problem-
Its not entering the If loop in the code snippet, couldn't get what's wrong in this logic.
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools |
#include<stdio.h>
#include<stdlib.h>
struct node
{
struct node *right;
int data;
struct node *left;
}*root=NULL,*new,*temp;
int num=0,num1;
void insert();
struct node *del(struct node *,int);
void displ
Many times when we manage SQL server databases we need to determine how much space each table is consuming on disk. In this blog we will learn two approaches for solving this frequently encountered common problem.
Approach 1:
We can use
Hello Readers ,
Below are the simple steps to follow to show the google map.
Add the Goggle API
<!DOCTYPE html>
<html>
<script src="https://maps.googleapis.com/maps/api/js"></script>
<body>
<h1>My First Google
Hi Readers,
If you are new to Laravel you will definitely come across two properties in the model one is Fillable and another one is Guarded. I myself did not get the use of these properties but once I get along I understood the actual use of thes
Bitcode refers to an intermediate representation of a compiled program. The installation of iOS, tvOS, and watchOS apps by tailoring app delivery to the capabilities of the user’s particular device. Apple called this optimization,"app thinning".
Note
