Tag: web technology

Questions Related to web technology

  1. if(stringValue == null)

  2. if(string.IsNullOrEmpty(stringValue))

  3. if(stringValue == DbNull.value)

  4. None of the above


Correct Option: C

Why would you not use System.Web.Mail instead of System.Net.Mail

  1. It does not cover all the functions as covered by System.Net.Mail

  2. It is obsolete as compared to System.Net.Mail

  3. It is not secure way of sending mails.

  4. None of the above


Correct Option: B
  1. Personal Home Page

  2. Personal Hypertext Processor

  3. PHP: Hypertext Preprocessor

  4. Private Home Page


Correct Option: C

PHP server scripts are surrounded by delimiters, which?

  1. ...&>

  2. ...?>

  3. ...


Correct Option: C
  1. printf("Hello World")

  2. echo "Hello World";

  3. "Hello World";

  4. Document.write("Hello World");


Correct Option: B
  1. Request.Form;

  2. Request.QueryString;

  3. Request_Get("");

  4. $GET[]

  5. $_GET[];


Correct Option: E