Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How to implement a class named dragonball. This class must have an attribute named ballcount (which starts from 0) and a method ifoundaball. When ifoundaball is called, ballcount is increased by one. If the value of ballcount is equal to seven, then the message you can ask your wish is printed, and ballcount is reset to 0. How would you implement this class?



How to implement a class named dragonball. This class must have an attribute named ballcount (which ..

Answer / testme

<?php
class Dragonball {
private $ballCount = 0; // starts from 0

public function iFoundaBall() {
$this->ballCount++;

if ($this->ballCount === 7) {
echo "You can ask your wish
";
$this->ballCount = 0; // reset to 0
}
}
}

// Example usage:
$goku = new Dragonball();

for ($i = 0; $i < 10; $i++) {
$goku->iFoundaBall();
}

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More PHP Interview Questions

Does wordpress run on php 7?

0 Answers  


Explain mail function in PHP with syntax?

0 Answers  


How long is csrf token?

0 Answers  


What are the different tables present in mysql, which type of table is generated when we are creating a table in the following syntax: create table employee(eno int(2),ename varchar(10)) ?

7 Answers   HCL,


Will a comparison of an integer 12 and a string "13" work in php?

0 Answers  


What is "echo" in php?

0 Answers  


Explain how to execute a php script using command line.

0 Answers  


How do I display php errors?

0 Answers  


What does $_cookie means?

0 Answers  


What is the salary for php developer(Fresher)?

1 Answers  


Tell me what is the definition of a session?

0 Answers  


What does csrf token mean?

0 Answers  


Categories