Aaisi Hi Kala Nahi hai Tumhari aankho Ka Kajal Kai Aashiq jale Honge Kai Aashiq jale Honge Jaruri nahi ki Sab jale Honge Kuch Honge Badnaseeb Jo Bache honge. Kar dena choti moti galtiyon ko Maaf itna bs ehsaan Kr de, Tu jo hai naraz meri saanse Na Chale Maan jaa tu jeena ye Assan kr de
Becoming like Iron Man, a fictional superhero from the Marvel Universe, involves a combination of various skills, traits, and technologies that are not currently available in the real world. However, you can draw inspiration from Iron Man's character to enhance different aspects of your life. Here are some aspects you might consider: 1. **Intellectual Pursuits:** - Like Tony Stark (Iron Man's alter ego), invest in your education and continuously seek to expand your knowledge. Stay curious and engaged in various fields, including science, engineering, business, and technology. 2. **Entrepreneurial Spirit:** - Tony Stark is a successful entrepreneur. If you have a passion or a business idea, explore entrepreneurship. Develop your skills in business management, innovation, and leadership. 3. **Physical Fitness:** - Train your body to achieve peak physical fitness. Regular exercise, strength training, and maintaining a healthy lifestyle can contr...
abstract.php <?php abstract class A{ abstract function abc(); // function abc(); // cotain 1 abstract meethod : must implement this method. // either class -> abstract class // or declare the function // function abc(); // non-abstract method: must contain body. function xyz(){ echo "this is xyz"; } } class B extends A{ function mno(){ echo "This is child calss: mno()"; } function abc(){ echo "This is child calss: mno()"; } } $obj= new B(); $obj->abc(); echo "<br>"; $obj->mno(); echo "<br>"; $obj->xyz(); ?> Access specifier.php <?php class Student{ public ...
Comments
Post a Comment