Shanawas
About myself || Personal information || My story || Profile || Who I am || Personal bio || Personal introduction || Self-reflection
<?php // Define a PHP class class Introduction { private $name; private $description; private $interests; private $hobbies; private $intern; // Constructor public function __construct($name, $description, $interests, $hobbies,$intern) { $this->name = $name; $this->description = $description; $this->interests = $interests; $this->hobbies = $hobbies; $this->intern = $intern; } // Method to introduce public function introduce() { return "Hey This is {$this->name}. {$this->description}. {$this->interests}. {$this->hobbies} ."Intern for" . {$this->intern}"; } } // Create an instance of Introduction class $myIntroduction = new Introduction( "Shanawas , B.E Pre Final year , Chennai", "I am a dynamic individual who wears multiple hats - a developer, a designer, and a brand enthusiast. My passion for coding knows no bounds, and I find immense joy in crafting elegant solutions to complex problems. ", "I'm particularly interested in natural language processing, artificial intelligence, and machine learning.", "In my free time, I enjoy reading about the latest advancements in AI, exploring new datasets, and learning new languages (programming and human languages alike!)." , "Centaur Interactive , Purple Soft" ); // Introduce myself echo $myIntroduction->introduce(); ?>
Console Window
Shanawas@essentials:~/$ php about.php
Hey This is Shanawas , B.E Pre Final year , Chennai
I am a dynamic individual who wears multiple hats - a developer, a designer,
and a brand enthusiast. My passion for coding knows no bounds,
and I find immense joy in crafting elegant solutions to complex problems.
With a keen eye for design and a knack for understanding brand identity,
I specialize in building websites and software that not only meet the
functional requirements but also reflect the essence of the brand.
I believe in the power of technology to transform businesses and
am dedicated to improving brands through innovative digital solutions.
Embarking on the journey of software development is akin to exploring an
endless realm of possibilities, where lines of code are the building blocks
of innovation and creation. As a developer, you are both an architect and an
artist, sculpting digital landscapes and breathing life into ideas through the
power of programming. Love to play Soccer , Table Tennis .
Intern for Centaur Interactive , Purple soft .