Is it true that you simply are noticing ‘Sorry, this file type is not permitted for security reasons’ error in WordPress?   

The “sorry, this document type isn’t allowed for security reasons” blunder seems once you plan to transfer a taboo record type. The reason for these limitations is to forestall your site for undesirable issues or security issues due to document transferring weaknesses.  As the message implies, WordPress limits the kinds of files you can upload …

Is it true that you simply are noticing ‘Sorry, this file type is not permitted for security reasons’ error in WordPress?    Read More »

Have you settled on the selection to move from WordPress.com to a self-facilitated WordPress.org site?

It’s a brilliant move.  Numerous fledglings regularly start with WordPress.com; however, they soon understand its constraints and wish to vary to oneself facilitated WordPress.org stage.  In any case, since you’re growing a touch, you’ve begun to know that utilizing WordPress.com to possess your blog might not be the most straightforward, though, just in case you …

Have you settled on the selection to move from WordPress.com to a self-facilitated WordPress.org site? Read More »

How to alter HTML in WordPress?

So how about we initially comprehend what’s WordPress and HTML  What is WordPress?  WordPress is more adaptable, and which is best for web-based business and better contributing to a blog likewise and a genuinely intriguing component of layout determination and this has to know a touch about the site before utilizing WordPress  It isn’t just …

How to alter HTML in WordPress? Read More »

The overwhelming majority of the WordPress clients may have experienced this “Briefly unavailable for scheduled maintenance. Check back in a minute.”

So what is “Briefly unavailable for scheduled maintenance. Check back in a minute.” You need not worry about this because this can be fixed. For this first, we’d like to grasp what’s upkeep mode in WordPress  The CMS downloads vital records to your worker and concentrates them at that time, and introduces them on your …

The overwhelming majority of the WordPress clients may have experienced this “Briefly unavailable for scheduled maintenance. Check back in a minute.” Read More »

What’s a queue?

A queue-based database application is an application (or a part of one) where multiple users get to work on a pool of records during a queue to process them. The records within the queue are “unprocessed”. After the user works on any record, that record is in a “completed” state and is far away from …

What’s a queue? Read More »

WRITE A PROGRAM TO PRINT A BINARY RIGHT ANGLED TRIANGLE UPTO N TERMS IN JAVA

class Btri { public static void main(String args[])         {             int i, j,n;           n=Integer.parseInt(args[0]);                          for (i = 1; i <= n; i++)             {                 for (j = 1; j <= i; j++)                 {                     if (j % 2 == 0)                     {                         System.out.print(“0 “);                     }                     else                     {                         System.out.print(“1 “);                     }                 }                     System.out.println(“”);             }          }       } OUTPUT:

WRITE A PROGRAM TO CHECK WHETHER A NUMBER IS ARMSTRONG NUMBER OR NOT IN JAVA

class ArmstrongNumber  {     public static void main(String args[])      {         int n, temp , r, s=0 ;         n=Integer.parseInt(args[0]);         temp = n;         while (temp != 0)        {             r = temp % 10;             s = s + (r * r * r);             temp = temp / 10;         }         if (n== s)        {             System.out.println(” It is an Armstrong Number”); …

WRITE A PROGRAM TO CHECK WHETHER A NUMBER IS ARMSTRONG NUMBER OR NOT IN JAVA Read More »