Ethernet is the traditional technology for connecting wired local area networks (LANs), enabling devices to communicate with each other via a protocol — a set of rules or common network language. Guided by Bipin Ajay , Founder of Tech Jitendra . Ethernet is the traditional technology for connecting wired local area networks(LANs), enabling devices to communicate …
Category Archives: Uncategorized
WHAT ARE THREADS IN JAVA ??
What are threads? Guided by Bipin Ajay , Founder of Tech Jitendra Nearly every operating system supports the concept of processes — independently running programs that are isolated from each other to some degree. Threading is a facility to allow multiple activities to coexist within a single process. Most modern operating systems support threads, and …
JAVA – POLYMORPHISM
Java – Polymorphism Guided by Bipin Ajay , Founder of Tech Jitendra . Polymorphism is the ability of an object to take on many forms. The most common use of polymorphism in OOP occurs when a parent class reference is used to refer to a child class object. Any Java object that can pass more …
METHOD OVER LOADING IN JAVA.
Method Overloading in Java with examples Provided by Bipin Ajay , Founder of Tech Jitendra | FILED UNDER: OOPS CONCEPT Method Overloading is a feature that allows a class to have more than one method having the same name, if their argument lists are different. It is similar to constructor overloading in Java, that allows a class to have …
Method Overloading in Java with examples.
Provided by Bipin Ajay , Founder of Tech Jitendra . | FILED UNDER: OOPS CONCEPT Method Overloading is a feature that allows a class to have more than one method having the same name, if their argument lists are different. It is similar to constructor overloading in Java, that allows a class to have more than one constructor having …
Continue reading “Method Overloading in Java with examples.”
C++ program to add two complex numbers
C++ program to add two complex numbers. C++ programming code #include <iostream> using namespace std; class complex { public : int real, img; }; int main() { complex a, b, c; cout << “Enter a and b where a + ib is the first complex number.”; cout << “\na = “; cin >> a.real; cout << “b …
A c++ program to display student information using class .
C++ program to display student information using class Provides By Tech Jitendra C++ program to display student information using classC++1234567891011121314151617181920212223242526272829303132333435363738 #include<iostream>using namespace std;class student{ private: char name[20],regd[10],branch[10]; int ; public: void input(); void display(); };void student::input(){ cout<<“Enter Name:”; cin>>name; cout<<“Enter Regdno.:”; cin>>regd; cout<<“Enter Branch:”; cin>>branch; cout<<“Enter Sem:”; cin>>sem;}void student::display(){ cout<<“\nName:”<<name; cout<<“\nRegdno.:”<<regd; cout<<“\nBranch:”<<branch; cout<<“\nSem:”<<sem;}int main(){ student …
Continue reading “A c++ program to display student information using class .”
WRITE A GUI PROGRAM TO ADD NUMBER USING AWT.
Java GUI Program to Add Two Numbers Using AWT Remember that program we did to add two numbers? We are going to simply uptrade! We will create a Java GUI program to add two numbers using AWT and it’s gonna be fun. Adding two numbers doesn’t have too much of a logic. But when you are …
Continue reading “WRITE A GUI PROGRAM TO ADD NUMBER USING AWT.”
A C++ PROGRAMME
Tech Jitendra Provides, C++ program to create student class, read and print N student’s details (Example of array of objects) This program will explain how to read and print multiple student details using Array of Objects. Array of objects program in C++ /*C++ program to create student class, read and print N student’s details (Example of …
WRITE A PROGRAM TO MAKE THE CLASS OF A STUDENT TO ENTER NAME,CLASS,ROLL NO AND FATHER NAME.
Tech Jitendra Provides , Discussion about this program. SIMPLE CLASSES Explanation of Question: Write a program to make the class of a student to enter name,class,roll no and father name using int get() to take input and int out function to display input. use dev c++ to run this program. #include<iostream> using namespace std; class …
