Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      LiteBreeze

      Engaged employer

      About
      Reviews
      Pay and benefits
      Jobs
      Interviews
      Interviews
      Related searches: LiteBreeze reviews | LiteBreeze jobs | LiteBreeze salaries | LiteBreeze benefits
      LiteBreeze interviewsLiteBreeze PHP Developer interviewsLiteBreeze interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Centre
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy and Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent posts

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" and logo are proprietary trademarks of Glassdoor LLC.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalised job recommendations and updates by starting your searches.

      PHP Developer Interview

      3 Mar 2025
      Anonymous interview candidate
      No offer
      Positive experience
      Average interview

      Application

      I interviewed at LiteBreeze

      Interview

      Time-effective. Recruiters are good and kept me informed about the process and next steps. They all seem professional and have many years of experience. I will recommend this company to anyone looking to join a European company.

      Interview questions [1]

      Question 1

      Reason for leaving previous job
      Answer question

      Other PHP Developer interview reviews for LiteBreeze

      PHP Developer Interview

      6 Mar 2019
      Anonymous interview candidate
      Cochin
      No offer
      Positive experience
      Average interview

      Application

      I applied through other source. I interviewed at LiteBreeze (Cochin) in Mar 2019

      Interview

      Telephone conversation and after that 30 mins Online test we can attend this test from our home after that they evaluate the answer on next day and send a acknowledgement mail to candidate he or she select or not on next rounds according to online test.

      Interview questions [1]

      Question 1

      Consider generating a monthly mobile bill for data usage. A basic charge of Rs. 200 allows for 20GB of data per month, with a daily cap of 2GB. The user has to pay Rs. 200 per month irrespective of the amount of data used. For each additional MB used above 2GB per day, the user is to pay an additional Rs. 0.025. Also, for each additional MB above 20GB for the whole month, the user needs to pay an additional Rs. 0.05. Assumption: 1GB = 1024MB Write a function that does the following: - Accepts an array containing daily usages in MB for a month - Calculate the total monthly bill for the input, including the additional charge for exceeding daily and monthly limits, if any. Sample Input/Output Input Data usage: date of month => data used in MB Array ( [2] => 3000 [5] => 1250 [10] => 2000 [12] => 300 [14] => 900 [16] => 4250 [18] => 2560 [19] => 1500 [22] => 190 [26] => 2020 [28] => 5050 ) Output Array ( [baseCharge] => Rs. 200 [dailyAdditional] => Rs. 166.7 [monthlyAdditional] => Rs. 127 [totalBill] => Rs. 493.7 )
      2 Answers
      8