Top 10 Web architect interview questions and answers

  1. What is frame level testing and how do we test it?
  2. Write test case for a search engine?
  3. How do you test the URL of a Web-based application?
  4. What is Web architecture that are followed while doing online project and tell the samples of architecture?
  5. I how to test Web application in which the value is changing dynamic every time and anyone can modify it?
  6. Write a test case scenario for Web-based address book?
  7. How to test iBackup and storage products?
  8. How can you test the security of a Web site,both manually and by using a tool.
  9. What happens in a Web application when you enter all the data and click on submit button?
  10. How to kill cookies from Web page?
Posted in: Interview Questions asp.net | Tags: interview web web architect interview questions top 10 frame search engine cookie

Top 10 Apache interview questions and answers

  1. On a fresh install, why does Apache have three config files - srm.conf, access.conf and httpd.conf? - The first two are remnants from the NCSA times, and generally you should be ok if you delete the first two, and stick with httpd.conf.
  2. What’s the command to stop Apache? - kill the specific process that httpd is running under, or killall httpd. If you have apachectl installed, use apachectl stop.
  3. What does apachectl graceful do? - It sends a SIGUSR1 for a restart, and starts the apache server if it’s not running.
  4. How do you check for the httpd.conf consistency and any errors in it? - apachectl configtest
  5. When I do ps -aux, why do I have one copy of httpd running as root and the rest as nouser? - You need to be a root to attach yourself to any Unix port below 1024, and we need 80.
  6. But I thought that running apache as a root is a security risk? - That one root process opens port 80, but never listens to it, so no user will actually enter the site with root rights. If you kill the root process, you will see the other kids disappear as well.
  7. Why do I get the message "… no listening sockets available, shutting down"? - In Apache 2 you need to have a listen directive. Just put Listen 80 in httpd.conf.
  8. What is ServerType directive? - It defines whether Apache should spawn itself as a child process (standalone) or keep everything in a single process (inetd). Keeping it inetd conserves resources. This is deprecated, however.
  9. What is mod_vhost_alias? - It allows hosting multiple sites on the same server via simpler configurations.
  10. What does htpasswd do? - It creates a new user in a specified group, and asks to specify a password for that user.
Posted in: Interview Questions | Tags: interview questions and answers interview php website apache interview questions apachectl graceful mod_vhost_alias htpasswd