NEWS & UPDATES >> BCA BCSP064 Synopsis & Project Work Started for DEC 2017, IGNOU MCA MCSP060 Synopsis Work Started for DEC 2017, CONTACT 4 IGNOU Mini Project
Showing posts with label PHP. Show all posts
Showing posts with label PHP. Show all posts

IGNOU Best Coaching Institute in delhi NiPS Provide PHP Question Answer

PHP Question Answer By IGNOU Best Coaching Institute in Delhi NiPS Institute 


For IGNOUFriend & IGNOU BCA MCA Students


  What is PHP?
PHP is a server side scripting language commonly used for web applications. PHP has many frameworks and cms for creating websites.Even a non technical person can cretae sites using its CMS.WordPress,osCommerce are the famus CMS of php.It is also an object oriented programming language like java,C-sharp etc.It is very eazy for learning

  What is the use of "echo" in php?
It is used to print a data in the webpage, Example: <?php echo 'Car insurance'; ?> , The following code print the text in the webpage

  How to include a file to a php page?
We can include a file using "include() " or "require()" function with file path as its parameter.

  What's the difference between include and require?
If the file is not found by require(), it will cause a fatal error and halt the execution of the script. If the file is not found by include(), a warning will be issued, but execution will continue.

  require_once(), require(), include().What is difference between them?
require() includes and evaluates a specific file, while require_once() does that only if it has not been included before (on the same page). So, require_once() is recommended to use when you want to include a file where you have a lot of functions for example. This way you make sure you don't include the file more times and you will not get the "function re-declared" error.

  Differences between GET and POST methods ?
With a GET method, you are sending your data via the URL. While, with A POST method, data is embedded in the form object and sent directly from your browser to the server. POST is a bit more safe than GET because GET could be stored in the history.

  How to declare an array in php?
Eg : var $arr = array('apple', 'grape', 'lemon');

  What is the use of 'print' in php?
This is not actually a real function, It is a language construct. So you can use with out parentheses with its argument list.
Example print('PHP Interview questions');
print 'Job Interview ');

  What is use of in_array() function in php ?
in_array used to checks if a value exists in an array

  What is use of count() function in php ?
count() is used to count all elements in an array, or something in an object


Source : Other Website Collected for IGNOU Students Support : www.nipsedu.co.in | www.ignoufriend.co.in 

IGNOU BCA MCA Students - VIVA Question Answer for PHP Part II

IGNOU BCA MCA Students - VIVA Question Answer for PHP

PHP Selected Question Answer - PART II

1.  Differences between GET and POST methods ?
We can send 1024 bytes using GET method but POST method can transfer large amount of data and POST is the secure method than GET method .

2.  How to declare an array in php?
Eg : var $arr = array('apple', 'grape', 'lemon');

3.  What is the use of 'print' in php?
This is not actually a real function, It is a language construct. So you can use with out parentheses with its argument list.
Example
 print('PHP Interview questions'); 
print 'Job Interview ');

4.  What is use of in_array() function in php ?
in_array used to checks if a value exists in an array

5.  What is use of count() function in php ?
count() is used to count all elements in an array, or something in an object

6.  What’s the difference between include and require?
It’s how they handle failures. If the file is not found by require(), it will cause a fatal error and halt the execution of the script. If the file is not found by include(), a warning will be issued, but execution will continue.

7.  What is the difference between Session and Cookie?
The main difference between sessions and cookies is that sessions are stored on the server, and cookies are stored on the user’s computers in the text file format. Cookies can not hold multiple variables,But Session can hold multiple variables.We can set expiry for a cookie,The session only remains active as long as the browser is open.Users do not have access to the data you stored in Session,Since it is stored in the server.Session is mainly used for login/logout purpose while cookies using for user activity tracking

8.  How to set cookies in PHP?
Setcookie("sample", "ram", time()+3600);

9.  How to Retrieve a Cookie Value?
eg : echo $_COOKIE["user"];

IGNOU BCA MCA Students - VIVA Question Answer for PHP Language Part - I

IGNOU BCA MCA Students - VIVA Question Answer for PHP

PHP Selected Question Answer - PART I

1.  What is PHP?
PHP is a server side scripting language commonly used for web applications. PHP has many frameworks and cms for creating websites.Even a non technical person can cretae sites using its CMS.WordPress,osCommerce are the famus CMS of php.It is also an object oriented programming language like java,C-sharp etc.It is very eazy for learning

2.  What is the use of "echo" in php?
It is used to print a data in the webpage, Example: <?php echo 'Car insurance'; ?> , The following code print the text in the webpage

3.  How to include a file to a php page?
We can include a file using "include() " or "require()" function with file path as its parameter.

4.  What's the difference between include and require?
If the file is not found by require(), it will cause a fatal error and halt the execution of the script. If the file is not found by include(), a warning will be issued, but execution will continue.

5.  require_once(), require(), include().What is difference between them?
require() includes and evaluates a specific file, while require_once() does that only if it has not been included before (on the same page). So, require_once() is recommended to use when you want to include a file where you have a lot of functions for example. This way you make sure you don't include the file more times and you will not get the "function re-declared" error.