Which one of the following function is used to send a e-mail using PHP script? mailrr() mail() mail_send() send_mail() TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following function is used to return an array consisting of various DNS resource records pertinent to a specific domain? dnsrr_get_record() dnsrr_record() dns_record() dns_get_record() TRUE ANSWER : ? YOUR ANSWER : ?
How many configuration directives pertinent to PHP’s mail function are available? 4 5 7 6 TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following are valid PHP stream transports?<br/>1. http<br/>2. STDIO<br/>3. ftp<br/>4. STDOUT<br/>5. stream Option 2 and 5 Option 4 and 5 Option 1 and 4 Option 3 and 5 TRUE ANSWER : ? YOUR ANSWER : ?
The FTP functions are used to ....... files from file servers. Close All of above Open Download Upload TRUE ANSWER : ? YOUR ANSWER : ?
What will the following script do?<br/>echo getservbyname ('ftp', 'tcp'); A list of the FTP servers on the local network The port associated with the TCP service called “FTP” The address of the FTP server called “tcp” A list of the ports associated with all services except FTP TRUE ANSWER : ? YOUR ANSWER : ?
The ftp_mkdir() function creates a directory on the FTP server. Both A & B ftp_mkdir() ftp_mkdirectory() ftp_makekdir() TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following statements can be used to establish port 80 connection with www.examians.com? fsockopen(“www.examians.com”, 80); sockopen(“www.examians.com”, 80); sockopen(80,”www.examians.com”); fsockopen(80,”www.examians.com”); TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following operations cannot be performed using the standard ftp:// stream wrapper?<br/>1. Reading a file<br/>2. Writing a file<br/>3. Establishing a stateful connection and changing directories interactively<br/>4. Creating a new directory Option 3 and 4 Option 1 and 3 Option 2 and 4 Option 1 and 4 TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following statements is used to add an attachment to the mail? $mimemail->addAttachment(‘attachment.pdf’); $mimemail=>attachment(‘attachment.pdf’); $mimemail=>addAttachment(‘attachment.pdf’); $mimemail->attachment(‘attachment.pdf’); TRUE ANSWER : ? YOUR ANSWER : ?