jQuery Core – All Version List || jQuery Version

jQuery version list image

Here I am sharing jQuery version list. jQuery Core & Migrate – Git Builds UNSTABLE, NOT FOR PRODUCTION jQuery git build – uncompressed, minified jQuery 2.x git build – uncompressed, minified jQuery 1.x git build – uncompressed, minified jQuery Migrate git build – uncompressed, minified jQuery Core – All 3.x Versions jQuery Core 3.3.1 – uncompressed, minified, slim, slim minified jQuery Core 3.3.0 – uncompressed, minified, slim, slim minified jQuery Core 3.2.1 – uncompressed, minified, slim, slim minified jQuery Core 3.2.0 – uncompressed, minified, slim, slim minified jQuery Core 3.1.1 – uncompressed, minified, slim, slim minified jQuery Core 3.1.0 – uncompressed, minified, slim, slim minified jQuery Core 3.0.0 – uncompressed, minified, slim, slim minified jQuery Core – All 2.x Versions jQuery Core 2.2.4 – uncompressed, minified jQuery Core…

Basic PHP Interview Questions and Answers for Freshers

PHP interview questions image

Here I am sharing top most asked basic PHP interview questions and answers for freshers that will helpful for freshers to get a job. All questions are related to PHP programming language so do prepare before the interview. Question #1 – What is PHP? PHP is an open source server side scripting language mostly used for web applications. Its easy to learn compare to other programming language. PHP also a object oriented programming language like java, .net and c++. Question #2 – Who is the father of PHP and when…

Top 35 Essential JavaScript Interview Questions and Answers

JavaScript interview questions image

Here I am sharing top 35 essential javascript interview questions and answers for freshers and experienced. This list of javascript interview questions and answers will be helpful for javaScript beginner who just started their career as javascript developer, and surely help you during interview session. Question #1 – What is JavaScript? JavaScript is a client side scripting language with an inbuilt object-oriented capability that allows developers to build up client side validations with HTML pages. It is object-based, lightweight and cross platform. Question #2 – How to use external JavaScript file in a HTML page? Lets…

Top 35 Frequently Asked PHP Interview Questions And Answers for 1 year experience

PHP interview questions image

According to my experience here I am sharing top 35 frequently asked PHP interview questions and answers for 1 year experiences PHP developer, This list of PHP interview questions and answers will be helpful for PHP experience developer. Question #1 – What is the difference between $message and $$message? They are both variables But $message is a variable with a fixed name. $$message is a variable whose name is stored in $message. For example, if $message contains “var”, $$message is the same as $var. Question #2 – How to include a file…

Top UI Developer Interview Questions and Answers For Experienced

UI developer interview image

Here I am sharing top frequently asked UI Developer interview questions and answers for experienced. Read these questions carefully before the interview. Question #1 – What is the difference between html, xhtml, html 4 and html 5? Which one do you use typically? HTML5 is an upgraded version of html 4 and presented some new features like Audio, Video, Canvas, Drag & Drop, Storage, Geo Location, Web Socket etc and furthermore presented some new html labels, for example, article, area, header, aside and nav and so on which help to make the…

Top UI Developer Interview Questions and Answers

UI developer interview questions image

Here I am sharing top frequently asked UI Developer interview questions and answers for freshers and experienced. This list of UI developer interview questions and answers will be helpful for UI beginner who just started their career as UI developer, and surely help you during interview session. Question #1 – What is the difference between html, xhtml, html 4 and html 5? Which one do you use typically? HTML5 is an upgraded version of html 4 and presented some new features like Audio, Video, Canvas, Drag & Drop, Storage, Geo Location,…

Adding Two Numbers in PHP

PHP add two numbers program image

We can add two numbers in PHP as like other programming language. “Two Numbers Addition” is the initial program from where most of the beginner developers will start to learn and write code in any language. Here is an example of add two numbers in PHP. Adding Two Numbers Program :- We use $ symbol to declare variable and add two variables. we take third number to store result in third variable. Below is the simple PHP program to add two numbers. <?php $first=30; $second=20; $third=$first + $second; echo “Two Numbers Sum:…

35 Common WordPress Interview Questions And Answers for Freshers

WordPress interview questions image

Here I am sharing top 35 frequently asked WordPress interview questions and their answers for freshers. This list of WordPress interview questions and answers will be helpful for WordPress beginner who just started their career as WordPress developer, and surely help you during interview session. Question #1 – What is WordPress? WordPress is a free and open source popular blogging tool and a content management system (CMS) based on PHP and MySQL. It is completely free of cost and you can utilize it to make any kind of individual and business…

Prime Number Program in PHP

PHP prime number program image

Prime Number :-  A prime number is a natural number greater than 1 that has no positive divisors other than 1 and itself. For example, 3 is a prime number because it has no positive divisors other than 1 and 3. Prime numbers are below:- 2, 3, 5, 7, 11, 13, 17, 19 …. Here I am writing the PHP program to check whether a number is Prime or not. <?php function CheckPrime($number){ for($x=2;$x<$number;$x++){ if($number%$x == 0){ return 0; } } return 1; } $a = CheckPrime(17); if ($a==0) echo ‘This is not…

Palindrome Number Program in PHP

PHP palindrome number program image

Palindrome Number :- A palindromic number or numeral palindrome is a number that remains the same when its digits are reversed. Like 53235,  Below are the example palindrome number:- 121 , 212 , 12321 , 16461 #Steps to Check a Palindrome Number :- Take a Number Now reverse its digit Now compare both the numbers if both are equals to each other then return “Number is Palindrome“. else return “Number is not Palindrome“ Here I am writing the PHP program to check whether a number is palindrome or not. Palindrome Number Program Without of Using PHP…