- Tell me about yourself.
- Why should I hire you?
- What are your strengths and weaknesses?
- Why do you want to work at our company?
- What is the difference between confidence and over confidence?
- What is the difference between hard work and smart work?
- How do you feel about working nights and weekends?
- Can you work under pressure?
- Are you willing to relocate or travel?
- What are your goals?
- What motivates you to do good job?
- What makes you angry?
- Give me an example of your creativity.
- How long would you expect to work for us if hired?
- Are not you overqualified for this position?
- Describe your ideal company, location and job.
- What are your career options right now?
- Explain how would be an asset to this organization?
- What are your outside interests?
- Would you lie for the company?
- Who has inspired you in your life and why?
- What was the toughest decision you ever had to make?
- Have you considered starting your own business?
- How do you define success and how do you measure up to your own definition?
- If you won $10 million lottery, would you still work?
- Tell me something about our company.
- How much salary do you expect?
- Where do you see yourself five years from now?
- On a scale of one to ten, rate me as an interviewer.
- Do you have any questions for me?
We are Web Technology Experts Team who provide you Important information on Web Development, Interview Questions and Answers, live project problem and their solution and online free tutorials.
Sunday, 18 May 2014
HR Interview Questions and Answers
Friday, 16 May 2014
Zend Framework - Free Google Analytics API
After making a successful website, we add an google analytics code to track the activities on our website. It gives all tracking information from all geo regions on all the pages.
It help us to know daily, monthly, yearly visiter in different countries and list of pages which searched most.
But creating a report on the behalf of analytics data, is difficult stuff because it take a lot of lot of time.
Following are simplest way to get the google analytics data.
It help us to know daily, monthly, yearly visiter in different countries and list of pages which searched most.
But creating a report on the behalf of analytics data, is difficult stuff because it take a lot of lot of time.
Following are simplest way to get the google analytics data.
$email = 'ADSENSE_GMAIL_USERNAME'; $password = 'ADSENSE_GMAIL_PASSWORD'; /** Get Connection with Analytics Account * */ $client = Zend_Gdata_ClientLogin::getHttpClient($email, $password, Zend_Gdata_Analytics::AUTH_SERVICE_NAME); $service = new Zend_Gdata_Analytics($client); /** Get Connection with Analytics Account * */ /** Get Analytics Account Information * */ $profileResults = $service->getDataFeed($service->newAccountQuery()->profiles())->current()->getExtensionElements(); foreach($profileResults as $profileResult){ $attributes = $profileResult->getExtensionAttributes(); $name = $attributes['name']['value']; $value = $attributes['value']['value']; if($name=='ga:profileId'){ $profileId = $value; } echo "$name : $value\n"; } /** Get Analytics Account Information * */ /** Get Analytics Data */ $dimensions = array( Zend_Gdata_Analytics_DataQuery::DIMENSION_MEDIUM, Zend_Gdata_Analytics_DataQuery::DIMENSION_SOURCE, Zend_Gdata_Analytics_DataQuery::DIMENSION_BROWSER_VERSION, Zend_Gdata_Analytics_DataQuery::DIMENSION_MONTH, ); $query = $service->newDataQuery()->setProfileId($profileId) ->addMetric(Zend_Gdata_Analytics_DataQuery::METRIC_BOUNCES) ->addMetric(Zend_Gdata_Analytics_DataQuery::METRIC_VISITS) ->addFilter("ga:browser==Firefox") ->setStartDate('2013-05-01') ->setEndDate('2014-05-31') ->addSort(Zend_Gdata_Analytics_DataQuery::METRIC_VISITS, true) ->addSort(Zend_Gdata_Analytics_DataQuery::METRIC_BOUNCES, false) ->setMaxResults(1000); echo "\nVisits : Bounce \n\n"; foreach ($dimensions as $dim) { $query->addDimension($dim); } try{ $result = $service->getDataFeed($query); }catch(Exception $e){ echo $e->getMessage();die; } foreach ($result as $row) { echo $row->getMetric('ga:visits') . "\t"; echo $row->getValue('ga:bounces') . "\n"; } /** Get Analytics Data */
As an above example, you can extract all information from the Google Analytics API and stored in array or Object then can download into csv OR Excel format.
Best Related Posts are Following:
- Youtube v3 API Sample API Requests and Response - Search Videos - Get Video Details.
- Web Services interview questions and answers for fresher.
- Share count and Share URL of Facebook, Twitter, LinkedIn and Pinterest.
- Get Youtube video-details and comments using PHP.
- How to create webservice in php with SOAP Technology.
- Facebook comments Integration in website.
- Implementing sign in with twitter php - how to setup your twitter account- integrate twitter in website.
- Current time zone for a city- Free API.
- Zend Gdata Youtube API - Search Video - View Video Detail.
- How do I get a YouTube video thumbnail from the YouTube.
- XML Interview Questions And Answers.
- Goole Map - Track your moving Position on google map- html5.
- Difference between WebService and API.
- Google Dynamic Charts - Bar Pie and Line Chart - code snippets.
- Facebook User Profile Get Custom Picture of Facebook User.
- Facebook Login with JavaScript.
- Soap Interview Questions and Answers.
- Binary Search Tree.
- Soap Interview Questions and Answers for Experienced.
- What is OpenInviter.
- Facebook Social Plugins Integration in Website.
Subscribe to:
Posts
(
Atom
)