Posts

How to Run Assembly Language Programming Code In Visual Studio 2019

Image
Assembly Language Programming: If you want to learn Assembly Language while using Visual Studio (Any Version) then you are on the right platform. We will teach you how to do assembly coding in masm as a beginner. You can also watch our videos of Assembly Tutorials here on this post. If you want to follow us on YouTube then click on this link  Bhinder World YouTube Channel . Our aim is to provide you basic knowledge and we will assume you Assembly Language Learner, on this website you will find some basic tutorials that will help you in learning. I suggest you to bookmark this website for a total series of assembly Programming Codes. Tutorial of Machine Language Startup (Assembly Language) in Visual Studio: To get your complete interaction to this course we uploaded Assembly Language Videos on our blog. You can also follow our YouTube channel for upcoming videos. If still you have any queries related to this video you can contact us on our Facebook page. Click o...

Object of Chair Containing Attributes and Behaviors

Image
Object of Chair Containing Attributes and Behaviors: A simple object in C++ Programming using classes containing attributes and behaviors. Attributes are declared in private variables and behaviors are declared in user defined functions in public inside the class of chair Code of the object of Chair: #include<iostream> #include<string> using namespace std; class chair{ //attributes string c_name; string colour; //behaviour public: void inputdetail(){ cin>>c_name; cin>>colour; } void displaydetail(){ cout<<c_name<<" "<<colour<<" "<<endl; } }; .................................................To get the full code see at the end of the article. Download: To download this code click on the given link below: Download

Object of Simple Person

Image
Object of Simple Person: An object of a simple person with some attributes and behaviors are defined here in this post. You can also Download the code of this program easily at the end of the article. Object of Simple Person(Code) #include<iostream> #include<string> using namespace std; class person{ //attributes string name; float age; string reg; //behaviour public: void inputdetail(){ cin>>name>>age>>reg; } void displaydetail(){ cout<<name<<" "<<age<<" "<<reg<<" "<<endl; } }; Go to below to get full code _________________________________________________________________________________ _________________________________________________________________________________ Download: To download this program click on the given link below: Download

Employee Object using classes

Image
Employee Object using classes: In this post we will tell you how to make an object in C++ using classes. In this post we have created an object of an employee with some attributes name, employee no., salary and also with behaviors display and update info (setter and getter) functions.  Employee Object using classes code: #include<iostream> #include<string> using namespace std; class employee{ string name; int employee_no; float salary; public: employee(){ name="AbuZar"; employee_no=105; salary=150000; }; void display_info(); void update_info(); }; To get the complete code click on the given download link in the download segment. Download: To download this code click on the given link below: Download Now

GPA Calculator

Image
GPA Calculator in C#: GPA Calculator is mostly used to calculate the GPA of a person in education or outside the educational institutes. However today I will tell you about how to add buttons, labels and Drop Down Menu in C#. Basically C# is used to do programming by using graphical user interface. This presentation that is presented below is created by the students of University Of Central Punjab,Pakistan. GPA Calculator Presentation: Download: To download this presentation click on the given link below: Download

Boss Home Appliances

Image
Boss Home Appliances: Boss Home Appliances is a leading company that makes Home Appliances and export it to other countries like Afghanistan, Iran etc. Boss company makes its appliances with a variety of ranges covering Water Heaters, Washing Machines, Air Coolers and Kitchen Appliances also. Boss company provide their appliances with an effective price withing Pakistan and in other countries Boss company imports different parts of appliances from different countries and assemble in in Pakistan. Boss Home Appliances main office is located in Gujranwala, Punjab Pakistan.Boss company has many competitors in this field. Boss company also have molded furniture known as BOSS Moulded Furniture. The data of the slides is collected by the students of University Of Central Punjab,Gujranwala Punjab Pakistan. Presentation on Boss Home Appliances: Download: To download this presentation click on the given link below: Download Now

Programming Fundamentals using C++

Image
Programming Fundamentals: Programming Fundamentals of C++ Programming Language are being shared here for those who started learning C++ Programming Language. In this article shared programs are also available individually on the website with Download Link.On this website you can also found a lot of Presentations and Tips & Tricks and many more. Don't forget to Bookmark this website for more updates and Programming Languages. Today in this post I will share all of my C++ Programming codes here with download links that I recently published on my web. So please read the article till the last. 1- Next Character printing using Static_cast and goto statement: This programming code is used to print a next character by entering any character by using static cast and goto statement in C++ Programming language.You can also get the code by clicking on this Get the Code . You will find the download link at the end of the next page when you will open the link. 2- Find...