Tuesday, 30 September 2014

Cover Latter for Odesk And Elance Profile

Hi..

I have 6+ years of experience in Web development

My goal is making website landing page  attractive, responsive, by using HTML5,CSS, and JavaScript and using Wordpress CMS.
I also have some experience in the following areas:
*PHP,
*MySQL,
*CodeIgniter,CakePhp
*Wordpress,
*Opencart,
*Ecommerce
*Ajax,
*html5,
*Photoshop,Dreamweave,Psd,  etc,
*CSS and many other PHP –based technologies.

I am available to chat by IM, email or Skype, and would be happy to set up a convenient time to discuss the application.
 I will be available 40 hours per week for this position.


It will be my pleasure if you have a look at my portfolio to assess my skills.

Note:
Final time and cost estimate will be given after project discussion.

Thank you for visiting my profile.



Thank You

Most Popular Interview Questions IT Company

Interview Questions
HR ROUND - Fresher
Experienced
1.      Tell me about yourself.  Why should I hire you?
2.      What are your strengths and weaknesses?
3.      Why do you want to work at our company?
4.      What is the difference between confidence and over confidence?
5.      What is the difference between hard work and smart work?
6.      How do you feel about working nights and weekends?
7.      Can you work under pressure?
8.      Are you willing to relocate or travel?
9.      What are your goals?
10.  What motivates you to do good job?
11.  What makes you angry?
12.  Give me an example of your creativity.
13.  How long would you expect to work for us if hired?
14.  Are not you overqualified for this position?
15.  Describe your ideal company, location and job.
16.  What are your career options right now?
17.  Explain how would be an asset to this organization?
18.  What are your outside interests?
19.  Would you lie for the company?
20.  Who has inspired you in your life and why?
21.  What was the toughest decision you ever had to make?
22.  Have you considered starting your own business?
23.  How do you define success and how do you measure up to your own definition?
24.  If you won $10 million lottery, would you still work?
25.  Tell me something about our company.
26.  How much salary do you expect?
27.  Where do you see yourself five years from now?
28.  On a scale of one to ten, rate me as an interviewer.
29.  Do you have any questions for me?
30.  Did you face any difficulty in finding this place?
31.  Tell me something about your self.
32.  Why does this role interest you? Or why have you applied for this job?
33.  Why do you think should we take you for this job?
34.  Are you an Introvert or Extrovert?
35.  What is your greatest strength?
36.  What do you want to achieve in the next 5 years?
37.  Are you willing to change your project/profile when required?
38.  What skills do you want to develop to succeed in this role?
39.  Are you planning to go for further studies?
40.  What newspaper/magazine/book do you read?
41.  Introduce yourself
42.  Tell me something about yourself that is no written in your resume.
43.  Do you know anyone who works with this company?
44.  Do you have any other offer at hand?
45.  Do you have any questions for us?
1.      Why did you resign from your previous job?
2.      Why have you been out of work so long?
3.      Why have you had so many jobs?
4.      Tell me about a situation when your work was criticized.
5.      Could you have done better in your last job?
6.      Tell me about the most boring job you have ever had.
7.      May I contact your present employer for a reference?
8.      How many hours a week do you normally work?
9.      What was the toughest challenge you have ever faced?
10.  Have you been absent from work more than a few days in any previous position?
11.  What changes would you make if you came on board?
12.  What would you say to your boss if he is crazy about an idea, but you think it stinks?
13.  How could you have improved your career progress?
14.  Tell me honestly about the strong points and weak points of your boss (company, management team, etc.)
15.  Looking back on your last position, have you done your best work?
16.  Why should I hire you from the outside when I could promote someone from within?
17.  How do you feel about reporting to a younger person?
18.  Looking back, what would you do differently in your life?
19.  Why are not you earning more money at this stage of your career?











1. In mail($param2, $param2, $param3, $param4), the $param2 contains:
a.       The message
b.      The recipient
c.       The header (Ans)
d.      The subject
 2. mysql_connect( ) does not take following parameter
a.       database host(Ans )
b.      user ID
c.       password
d.      database name
 3. Study following steps and determine the correct order
a.                  Open a connection to MySql server
b.                  Execute the SQL query
c.                   Fetch the data from query
d.                  Select database
e.                  Close Connection
a. 1, 4, 2, 3, 5
b. 4, 1, 2, 3, 5    (Ans)
c. 1, 5, 4, 2, 1
d. 4, 1, 3, 2, 5
 4. Which of the following is not a session function?
a.       sssion_decode     (Ans)
b.      session_destroy
c.       session_id
d.      session_pw

5. When uploading a file if the UPLOAD_ERR-OK contains value 0 it means
a.       Uplaod is not successful, error occurred    (Ans)
b.      The file uploaded with success
c.       Uploaded file size is 0
d.      File upload progress is 0% completed

6.      Which of the following delimiter syntax is PHP's default delimiter syntax
a.      <? php ?>  (Ans)
b.      <%   %>
c.       <?     ?>
d.      <script language="php"> </script>

7.      Which of the following statement produce different output
a.      <?echo "This is php example"; ?>
b.      <P="This is php example"; ?>
c.       <?PHP echo "This is php example"; php?>    (Ans)
d.      <script language="php"> print "This is php example";</script>
8.      What are the method available in form submitting?
a.GET & POST   (Ans)
b.Request & GET
c.POST & Request
d.none  of these

9.    What is the output of:
#include<stdio.h>
int main()
{
    int x=40;
    {
        int x=20;
        printf("%d",x);
    }
    printf("%d",x);
    return 0;
}
a.      40 40
b.      20 40  (Ans)
c.       40 20
d.      Compilation Error
10.      What is the output of the following program?
#include<stdio.h>
void main()
{
    int i=1,j=1;
    while (++i < 10)
        printf("%d ",i);
        printf("\n");
    while (j++ < 10)
        printf("%d ",j);
}
a.      1 2 3 4 5 6 7 8 9 10
                          1 2 3 4 5 6 7 8 9 10
b.      1 2 3 4 5 6 7 8 9
             1 2 3 4 5 6 7 8 9 10
c.       2 3 4 5 6 7 8 9       (Ans)
                          2 3 4 5 6 7 8 9 10
d.      2 3 4 5 6 7 8 9
       1 2 3 4 5 6 7 8 9 10

11.      To produce the output6 I love the summer time, Which of the ofllowing statement should be used?
a.      <? Php print ("<P> I love the summer time</p>"Wink;?>
b.      <? Php $ season="summer time"; print"<p> I love the $ season</p>"; ?>
c.       <?Php $ message="<p> I love the summer time </p>; ecdho $ message; ?>
d.      All of above      (Ans)
12.      Which of following function return 1 when output is successful?
a.      echo ( )
b.      print ( )      (Ans)
c.       both
d.      None  

13.      Which of followng statement is more suitable if you want to output a blend of static text and dynamic information stored within one or several variables?
a.      echo ( )
b.      print ( )
c.       Print f ( )      (Ans)
d.      None of above

14.      Which of the following type specifier is invalid in print f ( ) functions
a.      % a     (Ans)
b.      % b
c.       % c
d.      % d

15. Which of the following function can assign the output to a string variable
a.      echo ( )
b.      print ( )
c.       print f ( )
d.      s print f ( )    (Ans)

16. Which of the following data type is not seal or datetype supported by PHP
a.      Array     (Ans)
b.      String
c.       Float
d.      Boolean

17. Which of the following data type is compound datatype supported by PHP
a.      Array   (Ans)
b.      String
c.       Float
d.      Boolean

18. If a boolean variable $ alive= 5;
a.      $ alive is false
b.      $ alive is true      (Ans)
c.       $ alive is overflow
d.      the statement is snot valid

19. For integer data type PHP 6 introduced
a.      8 bit integer value
b.      16 bit integer value
c.       32 bit integer value
d.      64 bit integer value      (Ans)

20. For integer data type PHP 5 and earlier supported
a.      8 bit integer value
b.      16 bit integer value
c.       32 bit integer value      (Ans)
d.      64 bit integer value
21. What is Full form of PHP ?
a .Pre Hypertext processor
b. Hypertext Pre-processor
c. Hypertext Preprocessor       (Ans)
d. Preprocessor Hypertext
22. What will be the output of the following PHP code?
1.     <?php
2.     $total = "25 students";
3.     $more = 10;
4.     $total = $total + $more;
5.     echo "$total";
6.     ?>

a.  Error
 b. 35 students
 c. 35       (Ans)
 d. 25 students
23. How can we create a database using PHP and MySQL?
a. mysql_select_db("Database Name")
b.mysqle_create_db(“Database Name”)     (Ans)
c. mysql_create_db("Database Name")
d.mysql_db_create(“Database Name”)


24 Which data type will the $a variable have at the end of the following script?

<?php
$a = “1”;
echo $x;
?>

a. (int) 1
b. (string) “1”     (Ans)
c. (bool) True
d. (float) 1.0
e. (float) 1

25What will the following script output?
<?php
$a = 1;
$a = $a— + 1;
echo $a;
?>

a. 2    (Ans)
b. 1
c. 3
d. 0
e. Null
26. What will the following script output?

<?php
$x = 3 - 5 % 3;
echo $x;
?>

a. 2
b. 1    (Ans)
c. Null
d. True
e. 3
27. How to create a mysql connection?
a. mysql_connect_db(servername,username,password);
b. mysqle_connect(servername,username,password);
c. mysql_connect(servername,username,password);    (Ans)
d.mysql_connect(username,servername ,password);
28. How to redirect a page in php?
a. header("redirect:index.php");
b. header(‘Location:index.php’);
c. header("Location:index.php");    (Ans)
d. redirect("Location:index.php");
29. In how  many  ways we can retrieve the  data in the  result   set of msql using PHP ?
a. mysql_fetch_row
b mysql_fetch_array
c. mysql_fetch_object
d. mysql_fetch_assoc
e. All of these   (Ans)

30. How do we start PHP session ?

a. session_start()   (Ans)

b. session_register()

c. the variable $_SESSION

d. session_set()

31. Who is making the Web standards?

  a. Mozilla

  b. Microsoft

  c. The World Wide Web Consortium  (Ans)

 

32. What is the difference between XML and HTML?

a.  HTML is used for exchanging data, XML is not.

b XML is used for exchanging data, HTML is not.    (Ans)

c.  HTML can have user defined tags, XML cannot

 

33. What does vlink mean ?

    a. visited link   (Ans)

    b. vlink

    c. active link

 

 

 

34. What is the correct HTML for inserting an image?

 

  a.   <image src="image.gif" alt="MyImage" />

 b.  <img href="image.gif" alt="MyImage" />

c.  <img src="image.gif" alt="MyImage" />  (Ans)

d.  <img alt="MyImage">image.gif</img>

35. Who is known as the father of WWW (World Wide Web) ?

            a. Charles Darwin

            b. Tim Thompson

            c. Tim Berners-Lee   (Ans)

            d. Robert Cailliau

 

 

 

36. What is the correct HTML for inserting a background image?

   a.<img src="background.gif" background />

    b.<body background="background.gif">      (Ans)

    c.<background img="background.gif">

37. SGML Stands for--------?

a. Standard Game Markup Language

b. Standard general Markup Language

c.  Standard Generalized Markup Language        (Ans)

d. Standard Markup Language

 

37. which is the correct  CSS syntax?

 


a.backround: color:black;
b.{body:color:black}
c. body{color:Black}     (Ans)
d.body:color:black

38. How  do you  insert a comment in a CSS file?
a. //this is comment//
b. /*this  is  comment*/        (Ans)
c.*/this  is  comment/*
d.//this  is  comment

39. What is the correct HTML for referring to an external style sheet?
a. <stylesheet>mystyle.css</stylesheet />
b. <style src="mystyle.css" />
c. <link rel="stylesheet" type="text/css" href="mystyle.css">        (Ans)
d. <link href="stylesheet" type="text/css" rel="mystyle.css">

40. JavaScript is widely used for?
a. server-side web development
b. client-side web development        (Ans)
c. both client-side and server-side web development
d.None  of  these



ramsr29.blogspot.in