Recent Developments in Android!!!

Here I am writing this article to bring the attention of all people towards recent development in Android. The app developed today are different than developed earlier! They are designed with material design in which each segment in each layout has a different color.All developer aims to have better user interface!

They are made attractive by using different UI features also animations are being used for making the app more interactive.

Now talking about usability these days developed app focus directly on stakeholders needs and work on providing a solution to the end user. In this two decades, one can easily see the change, the version is being updated with mo enhancing futures and utilities. Taking the example of Facebook only, the previous Facebook app was having a very worst kind of UI but now the UI of Facebook has enhanced and one find easier and more interactive features added to that. Thus we can predict that in the recent future the Android app would replace the system use and everyone would be solemnly dependent on an Android app for their work.  thank you

The ILLOGICAL hatred between HINDU and MUSLIMS!!!

I wish to write this article from long ago as I am the eyewitness to this incident in my neighborhood. 
Few questions always arise in my mind:- 
Why my country is still divided? Why even though having her second largest population in the world we had not developed? In my opinion, the answer lies in changing the psychology of the people who have lots of misunderstanding among the religions. One religion doesn't like other religion culture and other religion doesn't of other. India is a secular country every religion has equal value and equal opportunity in each and every field but in our country, some religion due to their majority thinks that they are superior to others.They assume that it is their country and others have no rights to live here.These thoughts arise mainly because of illiterate thus unemployed people who have nothing to do than to just move in conflicts.     The political parties take advantage of these people by casting election vote in their favor. They initiate social unrest in the society.
The people must be articulated with the right knowledge about the different religion.
 They should invest their mind towards development rather than the creating violence.
 
The reason of hatred is nothing it's all about their psychological thoughts which make them do so people must admire others religion.
 


At last, I would like to conclude that the need of the hour is to have a technological development in our country.
thank you

Role of education in family and society

Education is essentials for proper continual of a geneation!!

Role of education are:-

*enlightening young children of family then of society
* Maintaing balance in family protecting family from samll small quarrel
*standarising family
*one does not get deceive by miscreature


An educated person can educate one family but an educated women can educate two generation.The family real status lies in a number of educated member in the family.


Life is all about breaking our constraints!!!

Yes, life is all about breaking constraints. I do not say to break all of our belief but with our physical growth, we must overcome our unmatured thoughts.

There are instances, where we do not like to touch the dedicate part of our life but that pains more because that part if we do not overcome that part then we become enemy of our own. And their remains guilt in our heart which hurt!

The constraints of our life are:-
#Superstitious constraints
#Not talking to strangers
#keeping ourself closed under the umbrella of Religious belief, cultural practices, and unlogical rituals




So what one would like to focus is : - 
* always be open to your problems!
*try to solve your problem up to your own understanding
*take help from trusted persons only
* Once, if you make any mistake then don't bother with it that u committed a crime .. mistake  is apart of learning ...just make yourself more powerful from the lesson the mistake taught you
* try to interact with new persons daily and enhance your way of communication...
*The more constraints u break the more success(old-fashioned term) u will feel like in yourself
** Indeed, u will feel unusual while doing these ... but its effects are seen after some time ...





Thank you
.Be open to put your views in comment box!!


















Pattern of PYRAMID

public class PYRAMID {

   
    public static void main(String[] args) {
       
        int x=1,y=1,n=4;
       
        for (int i = 1; i <=n; i++) {
           
            for (int j = n; j >=i; j--)
            {
                System.out.print(" ");
               
            }
                for (int k = 1; k <=x; k++)
                {
                    System.out.print("*");   
                   
                } x=x+2;
               
                System.out.println("");
               
               
            }
           
           
           
           
        }
       
       
        }




/******************* OUT PUT******************************/

     *
   ***
  *****
 *******