Q:- What do you mean by bitwise operators?
Ans: The bitwise operators act on the binary representation on their operands. Each operand is first turned into a binary representation of the value before operation.
Q:- Do these operators work only on numbers?
Ans: No, they work for numbers as well as strings but they vary in their treatment [...]
Archive for June, 2006
Questions on Bitwise Operators in PHP
Posted in PHP on June 26, 2006 | 2 Comments »
Interview Questions on PHP
Posted in PHP on June 22, 2006 | 12 Comments »
Hey, I am back with some more questions on PHP. Enjoy!!
Q:- What is the difference between “GET” and “POST” methods?
Ans. Get and Post are methods used to send data to the server with the submission of the form. The default method is GET.
* The browser appends the data onto the url when GET method is [...]
Who would like to be the first!!
Posted in PHP on June 14, 2006 | 1 Comment »
Just wondering!! While writing for the new post, suddenly clicked that after every post, the bottom line says “Smart suggestions are always welcome”, how the blog sites provide this facility. Means how anyone can add comments, can’t edit the posts, rate the post etc. I want to know at coding level. I am digging for [...]
Basic Questions on PHP
Posted in PHP on June 10, 2006 | 8 Comments »
Hey all! glad to see the comment posted on my previous blog i.e. Templates With PHP by Mayank. As he demanded to say about some basics about PHP, here I am going to post some basic questions on PHP which will facilitate the beginners and also those preparing for interviews. Enjoy!!
Q:- What is the full [...]
Templates with PHP
Posted in PHP on June 3, 2006 | 4 Comments »
PHP programmers several times find themselves in very irritating situation when the code gets mixed up with HTML code. It is very complex to handle the mixed up code, specially at the time of customization of web applications. The smart way of getting out of these situations is the use of Templates. By the use [...]