Friday, August 17, 2018

Balkrishna Bhandari, : 8085 microprocessor program

Balkrishna Bhandari, : 8085 microprocessor program: write an assemble language program to add two 8-bit data 32H and 44H store result at 2050H  in 8085 microprocessor.  Solution :      pr...

Monday, August 13, 2018

Digital marketing: Online marketing Guide

Digital marketing: Online marketing Guide: Tips+ advice to  grow your business though marketing Why you should be marketing online.  Case study: How Happy Hound gets 90% o...

Online marketing Guide

Tips+ advice to  grow your business though marketing


  • Why you should be marketing online.
  •  Case study: How Happy Hound gets 90% of its sales online.
  •  10 things you can do today to boost your online marketing .
  • Worksheet: How you can get started.

Sunday, August 12, 2018

Welcome

Every day we hear from business owners who think they need special skills to reach new customers online. Overwhelmed by the number and seeming complexity of online marketing options, they sit on the sidelines, eager to get in the game but confused about where to start. If so, this guide is for you. Whether you’re new to online marketing or just looking to do it better, the advice in this guide can help you reach your business goals. You’ll learn:
 • How many new customers you can find online
 • 10 ways to use the Internet to grow your business
• How to measure your results
• How one small business gets 90% of its sales online
• Key terms and what they mean

Saturday, August 11, 2018

Bitcoin earning

digital marketing

Digital marketing's development since the 1990s and 2000s has changed the way brands and businesses use technology for marketing.  As digital platforms are increasingly incorporated into marketing plans and everyday life, and as people use digital devices instead of visiting physical shops, digital marketing campaigns are becoming more prevalent and efficient.
Digital marketing methods such as search engine optimization (SEO), search engine marketing (SEM), content marketing, influencer marketing, content automation, campaign marketing, data-driven marketing,[6] e-commerce marketing, social media marketingsocial media optimizatione-mail direct marketing, display advertising, e–books, and optical disks and games are becoming more common in our advancing technology. In fact, digital marketing now extends to non-Internet channels that provide digital media, such as mobile phones (SMS and MMS), callback, and on-hold mobile ring tones. In essence, this extension to non-Internet channels helps to differentiate digital marketing from online marketing, another catch-all term for the marketing methods mentioned above, which strictly occur online.

Thursday, August 9, 2018

networking system

one figure is the explain in thousands words
any interesting networking fields

Thursday, February 15, 2018

write an program to calculator of two sum using constructor in c++

#include<iostream.h>
#include<conio.h>
#include<stdio.h>
 class add
  { private: int x,y,s;
      public: add()
{ cout<<"enter two vallue of x,y:";
cin>>x>>y;
 s =x+y;
cout<<"add="<<s;
}
};
void main()
{add a;
   getch();
}

write an program to calculate simple interest using to construct in c++

#include<iostram.h>
#include<conio.h>
       class si
             { private: int p,t,r,si=0;
                public:interest()
     {cout<<"enter any value of p,t,r,:";
      cin>>p>>t>>r;
        si=p*t*r/100;
cout<<"si="<<si;
    }
};
void main()
  { si.s
    getch();
     }vvvvv

Wednesday, February 7, 2018

write an program to check even or odd using class

#include<iostream.h>
#include<conio.h>
#include<stdio.h>
   class check
    {private:int x;
     public:void get()
{ cout<<"enter any number:";
cin>>x;
}
void show()
{ if(x%2==0)
  { cout<<"even=";
      }
else
{
cout<<"odd=";
}
  } };
void main()
{check c;
clrscr();
c.get();
c.show();
getch();
   }

Tuesday, February 6, 2018

Calculator in c++


#include<iostream.h>
int main()
   double num, den,result;
char op;
do  {
  cout<<"\ncalculator- enter number :";
 cin>>num;
cout<<"enter operator +,-,*,/:";
cin>>op;
cout<<enter second number:";
cin>>den;                                                                                       
if(op=='+') result= num+den;                                                           Run program
if(op=='-') result=num-den;
if(op=='*') result=num*den;
if(op=='/') result= num/den;
cout<<result;
}
wh
ile (op!='e');
  return 0;
   }

Monday, February 5, 2018

write an program to check even or odd using class in c++

#include<iostream.h>
#include<conio.h>
#include<stdio.h>
   class check
    {private:int x;
     public:void get()
{ cout<<"enter any number:";
cin>>x;
}
void show()
{ if(x%2==0)
  { cout<<"even="<<x;
      }
else
{
cout<<"odd="<<x;
}
   };
void main()
{check c;
clrscr();
c.get();
c.show();
getch();
   }

Write an program in C++ to finding cube using inline function in c++

#include<iostream.h>
#include<conio.h>
#include<stdio.h>
     inline int cube(int r)
{ return r*r*r;
            }
void main()
{
clrscr();
int r;
cout<<"program to compute cube\n";
cout<<"enter value of compute cube:";
cin>>r;
cout<<"cube of the number:"<<cube(r);
getch();
}

Sunday, February 4, 2018

Q) write a program to find a square root of a number using inline functuon in c++

Q) write a program to find a square root of a  number using inline function .
     program:
   #include<iostream.h>
  #include<conio.h>
inline int sqr(int num)
{ return num*num;
   }
  void main()
{ float n;
clrscr();
cout<<"enter a number:";
cin>>n;
cout<<"square="<<sqr(n)<<endl;
   getch();
}

Balkrishna Bhandari, : 8085 microprocessor program

Balkrishna Bhandari, : 8085 microprocessor program : write an assemble language program to add two 8-bit data 32H and 44H store result at 20...