Home | Contact Us | Log In | Help
HOME NEW LISTING MOST POPULAR HIGHEST RATED SCRIPTS ADD SCRIPT DOWNLOADS FORUM
Tutorials
  ASP.Net & C#
  ASP
  Perl and PHP
  Java Scripts
  C and C++
  Ajax Tutorials
  J2ee, J2Me, Java
  Python & Ruby Rail
  Crystal Report
  Sap
  CGI
  XML
  Cold Fusion & CFML
  HTML, DHTML & CSS
  Dreamweaver
  FLASH
  Photoshop/Web Designing
  Tools & Utilities
  Oracle/D2K
  Sql Server
  MySql
  Domain Name Registration
  Remotely Hosting
  Web/Server Application
  Hotel Marketing
  Internet and Law
   Search Engine Optimization/SEO
E-Commerce
Interview Questions

Previous < 1 2 3 4 5 > Next

Perl and PHP (INTERVIEW QUESTIONS) 2
  What arguments do you frequently use for the Perl interpreter and what do they mean?

  perl [ -sTuU ] [ -hv ] [ -V[:configvar] ] [ -cw ] [ -d[:debugger] ] [ -D[number/list] ] [ -pna ] [ -Fpattern ] [ -l[octal] ] [ -0[octal] ] [ -Idir ] [ -m[-]module ] [ -M[-]'module.' ] [ -P ] [ -S ] [ -x[dir] ] [ -i[extension] ] [ -e 'command' ] [ - ] [ programfile ] [ argument ]

   
  What does the command 'use strict' do and why should you use it?

  A command like use strict is called a pragma. Pragmas are instructions to the Perl interpreter to do something special when it runs your program. use strict does two things that make it harder to write bad software: It makes you declare all your variables ("strict vars"), and it makes it harder for Perl to mistake your intentions when you are using subs ("strict subs").

 
  What elements of the Perl language could you use to structure your code to allow for maximum re-use and maximum readability?

  modules

 
  What are the characteristics of a project that is well suited to Perl?

  For writing exploits, testing products and apps, identifying new Web-based vulnerabilities, and creating complex regular-expression engines.

 
  What's your favorite module and why?

  IO::Socket

 
  What do the symbols $ @ and % mean when prefixing a variable?

  Answer
These are the variables begin with "$", "@" or "%" in Perl.

 
  What are the differences between GET and POST methods in form submitting, give the case where we can use get and we can use post methods?

  On the server side, the main difference between GET and POST is where the submitted is stored. The $_GET array stores data submitted by the GET method. The $_POST array stores data submitted by the POST method.
  On the browser side, the difference is that data submitted by the GET method will be displayed in the browser's address field. Data submitted by the POST method will not be displayed anywhere on the browser.
  GET method is mostly used for submitting a small amount and less sensitive data. POST method is mostly used for submitting a large amount or sensitive data.

 
  Who is the father of php and explain the changes in php versions?

  Rasmus Lerdorf for version changes go to http://php.net/ Marco Tabini is the founder and publisher of php|architect.

 
  How can we submit from without a submit button?

  We can use a simple JavaScript code linked to an event trigger of any form field. In the JavaScript code, we can call the document.form.submit() function to submit the form.

 

Previous < 1 2 3 4 5 > Next

  Copyright 2000-2006 © SoloScript.com, All rights reserved.