Showing posts from January, 2017

How to swap two numbers without using third variable in php?

This is a very general question of any interview in any programming language. But most of the developers not aware about the logic of this question.  Below is the solution of it see - $first = 10; $second = 20; echo "Before swapping the nu…

Write a program to print fabonacci series in php.

This is a very general interview question of any interview in programming  $first = 0; $second = 1; for($i=0;$i<=10;$i++){ $third = $first+$second; echo $third.'&nbsp;'; $first = $second; $second = $third; } Output …

AngularJS Interview Questions And Answers For Freshers

Answers of all these questions must be in your mind before going to attend an interview in angular js. These are a basics questions but we ignore its to think that these are a basic question : Question: What is Angular.js? Answer: AngularJS is a…

Load More
That is All