Posts

OBJECT ORIENTED PROGRAMMING PROBLEM

 OBJECT ORIENTED PROGRAMMING PROBLEM # include < iostream > using namespace std ; class student {     private :         char name [ 20 ];         int roll , mark1 , mark2 , mark3 , total , percentage ;     public :         void getdata (){             cout << " Enter name of student :   " ;             cin >> name ;             cout << endl ;             cout << " Enter roll no  of student :   " ;             cin >> roll ;             cout << endl ;             cout << " Enter Marks of subject 1 of student :   " ;             cin >> mark1 ;             cou...

INTRODUCTION TO BLOGGING

Image
    INTRODUCTION TO BLOGGING  First Blog   Introduction Hello guys, Welcome to my first blog. This Blog show you how, what, why, I am going to write upcoming blogs. So, this blog is only an introductory part for my upcoming blogs.  First of all, Introduce myself ... Who am I?     I, Gaurav Kumar Chaurasiya , am currently a student of B. Tech in Artificial Intelligence and Data Science at GGSIPU East Delhi or USAR (University School Of Automation and Robotics ).       What do I know till now?            I    have completed my 12 with PCM with Computer Science in Python  Python Programming Language  HTML and CSS       and also a brief about  JAVA ,C++ Tkinter Pygame  My Editorial Plan What is the purpose of blog writing? The main purpose of the blog is to share information and resources simply so that you too can learn from them. What are my go...

MY FIRST LAPTOP EVER

Image
MY FIRST LAPTOP EVER Hello Everyone! I have unboxing my first laptop that I get at 19.  I am very happy to share my experience with you all .  All the details related to laptop .  My first laptop is HP 15s ryzen 3 it has 8 GB ram and 256 GB SSD and 1 TB HHD and it has ryzen 3 proccessor with AMD integrated graphics.  Screen size is 15.6 inches and weight is 1.82 kg ~ 2kg with lifetime access of Microsoft office 2019 and pre-installed window 11 and 1 year warranty of all software license (pre-installed)....  Youtube Unboxing Video: https://lnkd.in/dEByZ6H5  LINK of HP15s : https://amzn.to/3INrMJP

Checking Code Snippet

Checking Code Snippet Java Code package JavaByMe; public class Variables { public static void main(String[] args) { // Variables byte a=100; int b=383833; float c= 99.9f; long d= 474847383; double e=7484.48484; char f='G'; boolean g=true; System.out.println(a+"\n"+b+c+d+e+f+g); } } package JavaByMe; public class Variables { public static void main(String[] args) { // Variables byte a=100; int b=383833; float c= 99.9f; long d= 474847383; double e=7484.48484; char f='G'; boolean g=true; System.out.println(a+"\n"+b+c+d+e+f+g); } } Footer https://ideone.com/fvOmUG