Top 50 Php And Jquery Interview Questions You Must Prepare 27.Jul.2024

Q1. What Are Features Of Jquery Or What Can Be Done Using Jquery?

Features of Jquery:

  1. One can easily provide effects and can do animations.
  2. Applying / Changing CSS.
  3. Cool plugins.
  4. Ajax support
  5. DOM selection events
  6. Event Handling.

Q2. What Is Cdn And How Jquery Is Related To It?

CDN - It stands for Content Distribution Network or Content Delivery Network.
Generally, a group of systems at various places connected to trfer data files between them to increase its bandwidth while accessing data. The typical architecture is designed in such a way that a client access a file copy from its nearest client rather than accessing it from a centralized server.
So we can load this jQuery file from that CDN so that the efficiency of all the clients working under that network will be increased.
Example :
We can load jQuery from Google libraries API
<script type="text/javascript" language="Javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>

Q3. How Can We Apply Css In Last Child Of Parent Using Jquery Library?

$(”tr:last”).css({backgroundColor: ‘yellow’, fontWeight: ‘bolder’});

Q4. What Difference Between Require() And Require_once()?

Require()
The Require() is used to include a file, It create fatal error if file not found and terminate script.

require_once()
The require_once() to require() except PHP will check if the file has already been included, and if so, tricor online not include (require) it again.

Q5. Check/uncheck An Input In Jquery?

Using two function, we can perform the operation.

  // Check #x  $(“#checkboxid”).attr(“checked”, “checked”);  // Uncheck #x  $(“#checkboxid”).removeAttr(“checked”);

Q6. What Are Selectors In Jquery Mean ?

Generally in HTML, if we need to work with any control on a web page we need to find the control. For that we use document.getElementByID or document.getElementByName. But in jquery we do it using Selectors.
Using this selectors we can select all the controls as well using a symbol (* )
A sample code snippet can be of this form

  <script language="javascript" type="text/javascript">  $("*").css("border", "10px red");  </script>  

Q7. Can We Select A Element Having A Specific Class In Jquery ?

Yes, we can select an element with a specific class, we use the class selector.The class name must contain the prefix as "." (dot).

  <script language="javascript" type="text/javascript">  $(".class1").css("border", "2px solid red");  </script>

Q8. Mac, Windows Or Linux? Why Do You Love This Platform While Using Jquery?

I switched to Mac hardware around a year ago and I’m totally in love with it. All components work together nicely, and so far, I never had to return my Mac book Pro to the Apple Store because of an issue. However, I’m still using Windows through Parallels because OSX, while visually nice and stable, has fundamental usability flaws.
One of these flaws is the Finder. I recently worked on the jQuery UI Selectables in the labs version, and once again saw that the Finder had great flaws when it comes down to selection. For instance, if you select multiple items and click on one of them, the multiple selection isn’t cleared. Also, my tools that I love for windows simply don’t have an alternative yet .

Q9. What Does Dollar Sign ($) Me In Jquery?

Dollar Sign is nothing but it's an alias for JQuery. Take a look at below jQuery code

  $(document).ready(function(){  });

Over here $ sign can be replaced with "jQuery " keyword.

  jQuery(document).ready(function(){  });

Q10. How To Use Jquery.connect?

  • download jquery.connect.js file.
  • include this file in your html file.
  • and use $.connect function to connect a function to another function.

Q11. Why Jquery?

jQuery is very compact and well written JavaScript code that increases the productivity of the developer by enabling them to achieve critical UI functionality by writing very less amount of code.
It helps to

  • Improve the performance of the application
  • Develop most browser compatible web page
  • Implement UI related critical functionality without writing hundreds of lines of codes
  • Fast
  • Extensible – jQuery can be extended to implement customized behavior.

Other advantages of jQuery are

  • No need to learn fresh new syntax's to use jQuery, knowing simple JavaScript syntax is enough.
  • Simple and Cleaner code, no need to write several lines of codes to achieve complex functionality.

Q12. Explain The Features Of Jquery?

Features of jQuery are :

  • Effects and animations
  • Ajax
  • Extensibility
  • DOM element selections functions
  • Events
  • CSS manipulation
  • Utilities – such as browser version and the each function.
  • JavaScript Plugins
  • DOM traversal and modification.

Q13. Explain The Concepts Of "$ Function" In Jquery With An Example?

The type of a function is "function".
There are a lot of anonymous functions is jquery.

  $(document).ready(function() {});  $("a").click(function() {});    $.ajax({  url: "someurl.php",  success: function() {}  }); 

Q14. Do We Need To Add The Jquery File Both At The Master Page And Content Page As Well?

No, if the Jquery file has been added to the master page then we can access the content page directly without adding any reference to it.
This can be done using this simple example
<script type="text/javascript" src="jQuery-1.4.1-min.js"></script>

Q15. Disable/enable An Element In Jquery?

  // Disable #x  $(“#x”).attr(“disabled”,”disabled”);  // Enable #x  $(“#x”).removeAttr(“disabled”);  

Q16. When Can You Use Jquery?

  • jQuery can be used to for developing ajax based applications.
  • It can be used to keep the code simple, concise and reusable.
  • It simplifies the process of traversal of HTML DOM tree.
  • It can also handle events, perform animation, and add the ajax support in web applications.

Q17. What Is J-query?

JQuery is a light weight JavaScript library which provides fast and easy way of HTML DOM traversing and manipulation, its event handling, its client side animations, etc. One of the greatest features of jQuery is that jQuery supports an efficient way to implement AJAX applications because of its light weight nature and make normalize and efficient web programs.

Q18. What Is Jquery Ui?

JQuery UI is a library which is built on top of JQuery library. JQuery UI comes with cool widgets, effects and interaction mechanism.

Q19. Name Some Of The Methods Of Jquery Used To Provide Effects?

Some of the common methods are :

  1. Show()
  2. Hide()
  3. Toggle()
  4. FadeIn()
  5. FadeOut().

Q20. What Is A Jquery ?

It’s very simple but most valuable Question on jQuery me jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, animating, event handling, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript. jQuery is build library for javascript no need to write your own functions or script jQuery all ready done for you.

Q21. How We Can Apply Css In Multiple Selectors In Jquery?

Here to take effect is example to demonstrate
$(“div,span,p.myClass”).css(“border”,”1px solid green”);
the border will be apply in all div,span ,p.myClass class element.

Q22. How Is Body Onload() Function Is Different From Document.ready() Function Used In Jquery?

Document.ready() function is different from body onload() function because off 2 reasons.

  1. We can have more than one document.ready() function in a page where we can have only one onload function.
  2. Document.ready() function is called as soon as DOM is loaded where body.onload() function is called when everything gets loaded on the page that includes DOM, images and all associated resources of the page.

Q23. How Can You Select All Elements In A Page Using Jquery?

To select all elements in a page, we can use all selectors, for that we need to use *(asterisk symbol).

      <script  language="javascript" type="text/javascript">      $("*").css("border",  "2px dotted red");     </script> 

Q24. Change The Url For A Hyperlink Using Jquery?

There are three way to change the URL for a Hyperlink using jQuery.

  1. $("a").attr("href", "http://www.wisdomjobs.com/");
  2. $("a[href='http://www.wisdomjobs.com/']") .attr('href', 'http://wisdomjobs.com/');
  3. $("a[href^='http://wisdomjobs.com']").each(function(){ this.href = this.href.replace(/^http: / /  beta.wisdomjobs.com/, "http://wisdomjobs.com"); });

Q25. What Is The Advantage Of Using The Minified Version Of Jquery Rather Than Using The Conventional One?

  • The advantage of using a minified version of JQuery file is Efficiency of the web page increases.
  • The normal version jQuery-x.x.x.js has a file size of 178KB but the minified version jQuery.x.x.x-min.js has 76.7 KB.
  • The reduction in size makes the page to load more faster than you use a conventional jQuery file with 178KB.

Q26. How Can We Calculate The Similarity Between Two Strings?

Using similar_text() get similarity between two strings.

Return Values

Returns the number of matching chars in both strings.
example

   <?php
$first =’php3′;
$first =’php4′;
echo  retail price similar_text ( $first, $second )  //3
?>

Q27. Check Or Uncheck All Checkboxes Using Jquery?

There are different methods to check and uncheck the check boxes.
suppose that you have checkboxes like that

<input type=”checkbox” value=”1″ name=”Items” id=”Items1″ />
<input type=”checkbox” value=”2″ name=”Items” id=”Items2″ />
<input type=”checkbox” value=”3″ name=”Items” id=”Items3″ />
<input type=”checkbox” value=”4″ name=”Items” id=”Items4″ />

  using attr() function.  $(‘#checkall’).click(function(){  $(“input[@name='Items']:checked”).attr(‘checked’,true);  });  $(‘#uncheckall’).click(function(){  $(“input[@name='Items']:checked”).attr(‘checked’,false);});  
  using attr() and removeAttr()funstions  $(‘#checkall’).click(function(){  $(“input[@name='Items']:checked”).attr(‘checked’,true);  })  $(‘#uncheckall’).click(function(){  $(“input[@name='Items']:checked”).removeAttr(‘checked’);})  

Q28. Different Ways Of Using $.connect Function In Jquery?

The syntax of connect function is
$.connect(sourceObj/*object*/, sourceFunc/*string*/, callObj/*object*/, callFunc/*string or Func*/)

  • sourceObj(optional) is the object of the source function to which we want to connect.
  • sourceFunc is the function name to which we want to connect.
  • callObj(optional) is the object which we want to use for the handler function.
  • callFunc is the function that we want to execute when sourceFunc is executed.

Here sourceObj, callObj are optional for the global functions.
suppose if your sourceFunc is global function then no need to pass the sourceObj or you can use null or self.
suppose if your callObj is global function then no need to pass the callObj or you can use null or self.

Q29. What Are The Advantages Of Jquery ?

There are many advantages with JQuery. Some of them are :

  • It is more like a JavaScript enhancement so there is no overhead in learning a new syntax.
  • It has the ability to keep the code simple, readable, clear and reusable.
  • It would eradicate the requirement for writing complex loops and DOM scripting library calls.

Q30. How To Use Jquery?

jQuery can be easily used with other libraries so it should work out of the box with simple and complex JavaScript and Ajax.

Q31. What Is Jquery Connect?

It is a jquery plugin which enables us to connect a function to another function. It is like assigning a handler for another function. This situation happens when you are using any javascript plugins and you want to execute some function when ever some function is executed from the plugin. This we can solve using jquery connect function.

Q32. In Php How Can You Jump In To And Out Of "php Mode"?

The Php code is enclosed in special Start < ? and end ? > tags that allow ingredients you to jump in to and out of “php mode”.

Q33. How Can We Apply Css In Div Using Jquery?

using css() method we can apply css in div element.
example:
$(“div”).css(“border”,”1px solid green”);

Q34. How Can We Apply Css In Odd Childs Of Parent Node Using Jquery Library?

$(”tr:odd”).css(”background-color”, “#bbbbff”);

Q35. How Can We Apply Css In Even Childs Of Parent Node Using Jquery Library?

$(”tr:even”).css(”background-color”, “#bbbbff”);

Q36. Explain How Jquery Works?

    <html>    <head>    <script type="text/javascript"  src="jquery.js"></script>    <script type="text/javascript">    // You can write the code here     </script>    </head>    <body>    <a  href="http://www.wisdomjobs.com/">WisdomJobs</a>    </body>    </html> 

Q37. How To Use Jquery Library In Our Asp.net Project?

Download the latest jQuery library from jQuery.com and include the reference to the jQuery library file in our ASPX page.

    <script  src="_scripts/jQuery-1.2.6.js" type="text/javascript"></script>
    <script language="javascript">      $(document).ready(function() {    alert('test');    });    </script> 

Q38. Fetch The Values Of Selected Checkbox Array Using Jquery?

Suppose that below is checkbox array
<input type=”checkbox” value=”1″ name=”Items[]“ id=”Items1″ />
<input type=”checkbox” value=”2″ name=”Items[]“ id=”Items2″ />
<input type=”checkbox” value=”3″ name=”Items[]“ id=”Items3″ />
<input type=”checkbox” value=”1″ name=”Items[]“ id=”Items4″ />
and we want the get the value of selected checkbox using jquery.
then simple use below code.
var selItems = new Array();
$(input[@name='Items[]‘]:checked”).each(function() {selItems .push($(this).val());});
Here selItems will take all selected value of checkbox.

Q39. Why Is Jquery Better Than Javascript?

  • jQuery is great library for developing ajax based application.
  • It helps the programmers to keep code simple and concise and reusable.
  • jQuery library simplifies the process of traversal of HTML DOM tree.
  • jQuery can also handle events, perform animation, and add the Ajax support in web applications.

Q40. How Can I Execute A Php Script Using Command Line?

Just run the PHP CLI (Command Line Interface) program and provide the PHP script file name as the command line argument. For example, “php myScript.php”, assuming “php” is the command to invoke the CLI program. Be aware that if your PHP script was written for the Web CGI interface, it may not execute properly in command line environment.

Q41. What Are The Advantages Of Jquery?

The advantages of using jQuery are:

  • JavaScript enhancement without the overhead of learning new syntax.
  • Ability to keep the code simple, clear, readable and reusable.
  • Eradication of the requirement of writing repetitious and complex loops and DOM scripting library calls.

Q42. Which Version Of Jquery File Should Be Used?

In most of the recent releases so far, the core functionality of jQuery remains same however some more cool and better features are added. Ideally you should use the latest jQuery files available. By doing this you ensure that your earlier functionality will still work and you can use new features available as part of the new release.

Q43. What Is The Name Of Jquery Method Used For An Asynchronous Http Request?

jQuery.ajax().

Q44. What Are The Different Type Of Selectors In Jquery?

There are 3 types of selectors in Jquery

  1. CSS Selector
  2. XPath Selector
  3. Custom Selector.

Q45. Return Ascii Value Of Character In Php?

using ord() method we can get ASCII value of character in php.

   <?php    $str = "n" style="color:  #007700;">;    if (ord style="color: #0000bb;">$str) == 10) {    echo "The first character of $str is a line feed.n";    }    ?> 

Q46. How We Can Modify The Css Class In Jquery?

Using css method we can modify class using jquery
example:$(“.CssClass1.CssClass2″).css(“border”,”1px solid green”);
CssClass1,CssClass2 will be modify to border 1px solid green.

Q47. What Does A Special Set Of Tags Do In Php?

The tags <?= and ?>  displayed  output directly to the web  browser.

Q48. What Is The Use Of Delegate() Method In Jquery?

The delegate() method can be used in two ways.
1) If you have a parent element, and you want to attach an event to each one of its child elements, this delegate() method is used.
Ex:Un-ordered
2) When an element is not available on the current page, this method is used.
.live() method is also used for the same purpose but, delegate() method is a bit faster.

Q49. Get The Value Of Selected Option In Jquery?

    <select id="sel">    <option value="1">Hi</option>    <option value="2">Hello</option>    <option value="3">Helloooooo</option>    <option value="4">ok</option>    <option value="5">Okey</option>    </select>

want to get  the  value of selected option, then use

     $("select#sel").val();

or text of selected box, then use

  $("#seloption:selected").text();

Q50. What Distinguishes Php From Something Like Client Side Java Script?

Java script applied on client side while in php code executed on server reviews side.