Thursday, November 19, 2020

PREMIUM Quotes App With Android Studio And Admob Ads

 


Quotes App Is An Android Application.Quotes App Has User-Friendly Interface With Easy To Manage. The Quote App Or Sayari App Are Stored In Firebase For Easy Editing And Better Performance.

Best Quotes App Is An Android Application. Quotes App Has User-Friendly Interface With Easy To Manage. The Quotes App Are Stored In Firebase For Easy Editing And Better Performance. Sayari App In Android Studio With Admob Ads And Firebase Realtime Database.



Premium Quotes APP

Only Rs. 499/-

Features


Android Side

  • Quotes With Category Wise
  • Latest Quotes
  • Copy or Share Quote with your friends and on Social Networks
  • Share Image with Quotes
  • Add to Favorite Mode
  • Latest UI with Material Design
  • Admob with Banner and Interstitial ads Integrated
  • App comply with GDPR
  • You can also change frequency on interstitial ad to show after number of click
  • Firebase Analytics
  • Easy Admin Panel – Firebase Backend
  • All Device Combability
  • Check Network Availability
  • MultiLanguage Supported (if your phone supports particular language)
  • Android Code Migrated to AndroidX
  • Android Studio Code (Recommended Android Studio Version – 3.3)


Admin Side

  1. Simple Admin Panel
  2. Easily Add Category
  3. Easily Add Quotes
  4. Quote of the day
  5. Edit and Delete Quotes, Author and Category
  6. Upload Unlimited Category and Quote
  7. Firebase Backend

What You Get:


  1. Full Android Source Code
  2. Full PHP Code of Server Side
  3. Document with Screen Shot
  • App Features
  • Amazing Swiping Cards View
  • Share As Screenshots With Branding
  • Swipe Right Save To Read Offline
  • Supports Video Embeds
  • Supports HTML tags & Links
  • Latest Admob Integrated
  • App Tour With How To Use App
  • Multi language Support
  • Post By Language And Categories
  • OneSignal Push Notifications
  • Easy To Make App In Minutes



Saturday, October 7, 2017

Facts About ISRO | Creating A World Record | Indian Space Research Organisation | gkmaza |

 Hey Guys, in this video I have told you some facts on ISRO. ISRO is well known for its economical and successful missions. ISRO (Indian Space Research Organization) is one of the top space organization which runs on a very little budget. But the work done and the success achieved by ISRO in limited resources is remarkable. In this video I tried to explain the basic main facts about ISRO but there is more about ISRO as it growing everyday with very new concept of technology which will be beneficial for INDIA and world. It is hard work of scientist at ISRO which led it to the this position in the world ranking. Also it received criticism for the launching of Mars Orbiter Mission, I always wonder why these critics space technology ignore the fact that how space technology has made huge difference in human lives. Just take a example of your Electronic chips in the phone,scratch resistance screen.and many more, if space technology wasn't there god knows when these things would have invented Hope you enjoy the video and if you enjoyed make sure to LIKE, SHARE And SUBSCRIBE !!!!!!

-know about genrel knowledge to visit www.gkmaza.com

Thursday, September 28, 2017

Which of the following cricket teams are not directly qualified for the ICC Cricket World Cup 2019?




     answer : West Indies

Explanation:
Recently Sri Lanka has qualified for the ICC Cricket World Cup 2019 after West Indies lost the first ODI against England at Old Trafford on September 19, 2017. With this, Sri Lanka has become the eighth and last team to qualify directly, joining Australia, Bangladesh, England, India, New Zealand, Pakistan and South Africa. Now, West Indies will progress to the 10-team ICC Cricket World Cup Qualifier 2018, where they will be joined by the bottom three sides on the ICC ODI team rankings – Afghanistan, Zimbabwe and Ireland as well as the top four sides from the ICC World Cricket League Championship and the top two sides from the ICC World Cricket League Division 2. The top two sides from the World Cup Qualifier will complete the 10-team line-up for the ICC Cricket World Cup 2019, which will be played in United Kingdom (UK) from 30 May to 15 July.

Tuesday, September 19, 2017

How to Download all e-paper any Language (कोई भी न्यूज़ पेपर किसी भी भा...



  • Learn how to download any news paper(e-paper) in PDF
  • You can download news paper in any language, any state and any city in the PDF.
  • You can also download any supplement that comes with the news paper.
  •  Read and download any book and magazine
    -Learn how to help with this video






Monday, September 18, 2017

17)WAP to enter any number and check it is armstrong No or not. in CPP



Program




#include

#include

class armstrong

{

int n,no,r,c;

public:

palindrom()

{ r=0;

}

void getdata()

{
cout<<"\n\t\t Enter Number:";

cin>>no;

}

void putdata()

{ c=no;

for( ;no>=1; )

{

n=no%10;

r=r+(n*n*n);

no=no/10;

}

if(c==r)

{

cout<<"\n\t\t A Number Is Armstrong !!";


}

else

{

cout<<"\n\t\t A Number Not Armstrong !!";

}

}

};

void main()

{

clrscr();

armstrong p1;

p1.getdata();

p1.putdata();

getch();

}


-------------------------------Output---------------------------



Enter Number:153

A Number Is Armstrong !!



Thursday, March 2, 2017

(20)Write a Program to display prime no between 1 to N number in CPP

#include<iostream.h>
#include<conio.h>
class primen
{
 int a,n,no,c,m;
 public:
  void insert();
  void display();
  };
  void primen::insert()
  {
   cout<<"\n\t\tEnter Number:";
   cin>>m;

  }
  void primen::display()
  {
  a=1;
   while(a<=m)
   {
    c=0;
    no=a;
    n=1;
    while(n<=no)
    {
     if(no%n==0)
     {

       c=c++;
      }
      n++;
    }
    if(c==2)
    {
     cout<<a;
    }
    a++;
    }

}

void main()
{
 clrscr();
 primen pp;
 pp.insert();
 pp.display();
 getch();
 }

(19) Wap to display Armstrong No between 1 To N Number in Cpp


#include<iostream.h>
#include<conio.h>
class armstrongn
{
       long int m;
       int a,n,r,c,no;
       public:
              void getdata();
              void putdata();
};
void armstrongn :: getdata()
{
       cout<<"\n\t\t Enter Number : ";
       cin>>m;
}
void armstrongn :: putdata()
{
       a=1;
       while(a<=m)
       {
              no=a;
              c=no;
              r=0;
              while(no>=1)
              {
                     n=no%10;
                     r=r+(n*n*n);
                     no=no/10;
              }
              if(c==r)
                     cout<<r<<"  ";
              a++;
       }
}
void main()
{
       clrscr();
       armstrongn r1;
       r1.getdata();
       r1.putdata();
       getch();
}
v  Output
Enter Number : 1000
1 153 370 371 407