Program of FUNCTION OVERLOADING

/*Program of FUNCTION OVERLOADING*/ #include #include int add(int,int,int); // function declaration float add(float,float); // function declaration int add(int q, int w, int e) // function definition { return (q+w+e); } float add(float a, float s) // function defintion { return (a*s); } int main() { int q,w,e; float a,s; coutq>>w>>e; int p=add(q,w,e); // function calling…

Program of BINARY OPERATOR OVERLOADING using member function

/*Program of  BINARY OPERATOR OVERLOADING using member  function*/ #include<conio.h> #include<iostream.h> class A { int a,b; public: void getdata(int p,int q) { a=p; b=q; } void display() { cout<<“\na=”<<a<<“\nb=”<<b; } A operator+(A a1) { a1.a=a1.a+a; a1.b=a1.b+b; return a1; } }; int main() { A a1,a2,a3; int f,g,h,i; cout<<“\nEnter 2 numbers\n”; cin>>f>>g; a1.getdata(f,g); a1.display(); cout<<“\nEnter 2 numbers\n”;…

Program for the addition of 3 complex numbers using FRIEND function

/*Program for the addition of 3 complex numbers using FRIEND function*/ #include<iostream.h> #include<conio.h> class complex { int real,imag; public: complex() { } complex(int f,int g) { real=f; imag=g; } void display() { cout<<real<<“+i”<<imag; } friend complex sum (complex,complex,complex); }; complex sum(complex q,complex w,complex e) { complex r; r.real=q.real+w.real+e.real; r.imag=q.imag+w.imag+e.imag; return r; } int main() {…

SAP BASIS Administrator Tasks and Job Responsibilities for Junior Job Role

In this blog i am going to cover what is SAP BASIS Administrator tasks/Job responsibilities and which all things are expected in L1 and L2 support for any client.Please prepare below tasks if you are looking for Job change under L1 and L2 junior role. SAP BASIS ADMINISTRATOR JOB PROFILE Hardware and Database Administration User…

How to search and download SAP Notes from SAP Marketplace

How to search and download SAP notes from SAP Service Marketplace. SAP notes are correction programs, when users report some issue to SAP then SAP makes correction to that program (faulty program) and release SAP notes and we apply SAP notes in our system to fix the issue. Direct link to search SAP notes from…

ORA-00119: invalid specification for system parameter LOCAL_LISTENER and ORA-00132: syntax error or unresolved network name ‘LISTENER_SID’

Today when i was working  on post oracel 12C upgrade steps ,I got below error in starting database from sidadm user.I am sharing error with solution if it helps for you. Error: I was getting below error related to Local_Listener. SQL> startup; ORA-00119: invalid specification for system parameter LOCAL_LISTENER ORA-00132: syntax error or unresolved network…