pages

Monday, September 21, 2020

Angular Js Slip no.5

 SYBBA(CA)

Angular Js BCA Practical Slips Solution

Slip no.5 Write an AngularJS script for addition of two numbers using ng-init, ng-model & ng-bind. And also Demonstrate ng-show, ng-disabled, ng-click directives on button component.

<!DOCTYPE html>

<html>

<head>

    <script src="C:\angular-1.8.0\angular-1.8.0\angular.js"></script>

</head>

<body  ng-app ng-init="checked=true;check=true" >


  Enter number1: <input type="number" ng-model="n1"><br/>

  <br/>

  Enter number2:<input type="number" ng-model="n2">

  <br/><br/>

  <button ng-click="add=(n1+n2)" ng-init="add=0">result </button><br/><br/>

   addition of two numbers= 

  <span ng-bind="add"></span><br/><br/>

  <label>Click me to make button disabled or enabled: <input type="checkbox" ng-model="checked"></label>

  <button  ng-disabled="checked" >Disable</button><br/><br/>

  <label>Click me to  show or hide button: <input type="checkbox" ng-model="check"></label> 

  <button   ng-show="check">Show</button><br/>


</body>

</html>

BCA Practical Slips

Friday, September 18, 2020

Angular Js Slip No.4

 SYBBA(CA)

Angular Js BCA Practical Slips Solution

Slip No.4 Write an AngularJS script to print details of bank (bank name, MICR code, IFC code, address etc.) in tabular form using ng-repeat 

 <!DOCTYPE html> 


<html> 

<script src= "C:\angular-1.8.0\angular-1.8.0\angular.js"> 

  </script> 

<style> 

    body { 

        margin: 2%; 

        font-size: 120%; 

    }       

    th, 

   td { 

        padding: 20px; 

    } 

</style> 

<body ng-app="myApp" ng-controller="ListController"> 

    <h1>Bank Details</h1> 

    <table border=1> 

        <thead> 

            <tr> 

                <th>S.No</th> 

                <th>Name</th> 

                <th>MICR Code</th> 

                <th>IFSC Code</th> 

                <th>Address</th> 

            </tr> 

        </thead> 

        <tr ng-repeat="i in bank"> 

            <td> {{i.sno}} </td> 

            <td> {{i.name}} </td> 

            <td> {{i.micr}} </td> 

            <td> {{i.ifsc}} </td> 

            <td> {{i.address}} </td> 

        </tr> 

    </table>   

</body> 

<script> 

    var app = angular.module('myApp', []); 

    app.controller( 

      'ListController', function($scope) { 

        $scope.bank = [{ 

                sno: 1, 

                name: 'SBI', 

                micr: 'sbi123', 

                ifsc: 9876563454, 

                address: "satara", 


            }, { 


                sno: 2, 

                name: 'BOI', 

                micr: 'boi123', 

                ifsc: 7865452396, 

                address: "Pune", 


            }, { 


                sno: 3, 

                name: 'RBI', 

                micr: 'rbi123', 

                ifsc: 7865452316, 

                address: "kolhapur", 


            }, { 


                sno: 4, 

                name: 'BOM', 

                micr: 'bom123', 

                ifsc: 7765458921, 

                address: "goa", 


            }, { 


                sno: 5, 

                name: 'BOB',          

               micr: 'bob123', 

                ifsc: 7765458921, 

                address: "satara", 

            } 

        ]; 

    }); 

</script> 

</html> 

Thursday, September 17, 2020

Angular Js Slip no 3

 SYBBA(CA)

Angular Js Practical Slips

Slip no 3  Using AngularJS display the 10 student details in Table format 

(using ng-repeat directive use Array to store data)

<!DOCTYPE html> <html> <script src= "C:\angular-1.8.0\angular-1.8.0\angular.js"> </script> <style> body { margin: 2%; font-size: 120%; } th, td { padding: 20px; } </style> <body ng-app="myApp" ng-controller="ListController"> <h1>Student Details</h1> <table border=1> <thead> <tr> <th>S.No</th> <th>Name</th> <th>class</th> <th>phone no </th> <th>address</th> </tr> </thead> <tr ng-repeat="i in student"> <td> {{i.sno}} </td> <td> {{i.name}} </td> <td> {{i.class}} </td> <td> {{i.phno}} </td> <td> {{i.address}} </td> </tr> </table> </body> <script> var app = angular.module('myApp', []); app.controller( 'ListController', function($scope) { $scope.student = [{ sno: 1, name: 'Roger Federer', class: 'FY', phno: 9876563454, address: "satara", }, { sno: 2, name: 'Rafael Nadal', class: 'SY', phno: 7865452396, address: "Pune", }, { sno: 3, name: 'Novak Djokovic', class: 'SY', phno: 7865452316, address: "kolhapur", }, { sno: 4, name: 'Pete Samprass', class: 'FY', phno: 7765458921, address: "goa", }, { sno: 5, name: 'Roy Emerson', class: 'FY', phno: 7765458921, address: "satara", } ];
}); 

</script> 

</html> 

Wednesday, September 16, 2020

Angular Js Slip no.1

 SYBBA(CA)

Angular Js Practical Slips

Slip no.1 

Write an AngularJS script to display list of games stored in an array on click of button using ng-click. And also  Demonstrate ng-init, ng-bind directive of AngularJS.

<!DOCTYPE html>

<html>

<head>

    <script src="C:\angular-1.8.0\angular-1.8.0\angular.js"></script>


</head>


<body ng-app="myApp">


<div ng-controller="myCtrl" >

    <button ng-click="myFunc()">Display Games</button>

           <ol>

             <li ng-repeat="i in game" ng-bind="i"></li>

           <ol> 

      

</div>


<script>

angular.module('myApp', [])

.controller('myCtrl', ['$scope', function($scope) {

    $scope.count = 0;

    $scope.myFunc = function() {

        $scope.game=['Cricket','vollyball','Basketball'];       

    };

}]);

</script>


</body>

</html>


Angular JS Slip no .2

 SYBCA 

Angular Js Practical Slips

Slip No.2

Write a HTML code using AngularJS to generate the following output

Undergraduate Courses (hint : use ng-repeat, ng-init directive)

i. BBA(CA)

ii. BCA(Science)

iii. B.Sc.(Computer Science)

 Post Graduate Courses

i. M.Sc.(Computer Science)

ii. M.Sc.(CA)

iii. MCA                      


<!DOCTYPE html>
<html>
<head>
    <script src="C:\angular-1.8.0\angular-1.8.0\angular.js">
   </script>
    <style>
        div {
            border: 1px solid green;
            width: 100%;
            height: 100px;
            display: block;
            margin-bottom: 10px;
            text-align:left;
            background-color:yellow;
        }
    </style>
</head>
<body ng-app ng-init="courses=['BBA(CA)','BCA(Science)',
            'B.Sc(Computer Science)']">
    <h1> Undergraduate Courses </h1>
    <ol type=i>
        <li ng-repeat="name in courses">
            {{name}}
        </li>
    </ol>
    <h1> Post Graduate Courses </h1>
        <div ng-init="postcourses=['MCA','M.Sc(CA)',
          'M.Sc(Computer Science)']">
    <ol type=i>
        <li ng-repeat="name in postcourses ">
            {{name}}
        </li>
    </ol>
    </div>
</body>
</html>

Tuesday, June 30, 2020

Webtech slips Solutions

BCA PRACTICAL Slips

Web Tech Practical Slips Solution


1
Slip
Q1. Write a JavaScript program to calculate the volume of a sphere.

<html>
<head><title>pro4</title>
<script>
function volume()
{
var t_val=document.getElementById("txt").value;
var rad=parseInt(t_val);
var vol=(4.0/3.0)*Math.PI*Math.pow(rad,3);
document.getElementById("answer").value= vol;
}
</script>
</head>
<body>
<label>Input radius value of Sphere: </label><br>
<label> Raduis: </label> <input type="text" id="txt" size="30"/><br>
<button onclick="volume()">Find volume</button><br>
<label> Volume: </label><input type="text" id="answer" size="30"/><br>
</body>
</html>
Q2 Create HTML page to Divide the frames in to different sections as shown below and add appropriate HTML files to each frame.
First Frame : Your Name and address
Second Frame :
Bulleted list of favourite colours
Third Frame :
Numbered List of Cities
Fourth Frame:
Scrolling Message
Fifth Frame:
Blinking Reminders
Sixth Frame:
Name of Countries
First.html
<html>
<body>
<h3 align="Center"> Name: XYZ
<address>
2
PQR
Pimpri Pune-17
</address>
</h3>
</body>
</html>
Second.html
<html>
<body>
<h4> My favourite colours </h4>
<ul type="disc">
<li>Red</li>
<li> Pink</li>
<li>Green</li>
<li>Blue</li>
</ul>
</body>
</html>
Third.html
<html>
<body>
<h4> List of City </h4>
<Ol type="A">
<li>Pune</li>
<li> Pimpri</li>
<li>Mombay</li>
<li>Nasik</li>
</Ol>
</body>
</html>
Fourth.html
<html>
<body>
<h3 align="Center">
<pre>
hhhhhhhhhhhhhhhhh
jjjjjjjjjjjjjjjjjjj
jjjjjjjjjjjjjjjjjjjj
ffffffffffffff
sdddddddddddwer
sdfrgergergv
rtgrrrrrrrrr
rtrtrtrtrtrtrtrtrtrtrtrtrt
erat5r
3
etyteyty
</pre>
</h3>
</body>
</html>
Fifth.html
<html>
<head>
<title>Title of the document</title>
<style>
.blink
{
animation: blinker 0.6s linear infinite;
color: pink;
font-size: 30px;
font-weight: bold;
}
@keyframes blinker
{
50% { opacity: 0;
}
</style>
</head>
<body>
<p class="blink">Blinking text</p>
</body>
</html>
Sixth.html
<html>
<body>
<h4> List of Country </h4>
<Ol type="1">
<li>India</li>
<li> US</li>
<li>UK</li>
</Ol>
</body>
</html>
Frame.html
<html>
<frameset rows="*,*,*">
<frame src="first.html"></frame>
<frameset cols="*,*">
<frame src="second.html"></frame>
<frame src="third.html"></frame>
</frameset>
4
<frameset cols="*,*,*">
<frame src="fourth.html"></frame>
<frame src="blink.html"></frame>
<frame src="sixth.html"></frame>
</frameset>
</frameset>
</html>

Friday, June 26, 2020

DBMS Practical Slips Solution

DBMS Practical Slips

Slip1
Consider the following Entities and Relationships
 Customer (cust_no, cust_name, address, city)
Loan (loan_no, loan_amt)
Relation between Customer and Loan is Many to Many
Constraint: Primary key, loan_amt should be > 0.
Create a Database in 3NF & write queries for following.

•Find details of all customers whose loan is greater than 10 lakhs.
SQL>select Customers.cust_name,Customers.address from Customers,Loan,Customer_Loan    where  Customers.cust_no=Customer_Loan.cust_no and  Loan.loan_no= Customer_Loan. loan_no  and Loan.loan_amt>=10000;

•List all customers whose name starts with 'ba'.
SQL>Select * from Customers  Where  cust_name like 'ba%';

•List names of all customers in descending order who has taken a loan in Nasik city.
SQL>select Customers.cust_name,Customers.address from Customers,Loan,Customer_Loan    where   Customers.cust_no=Customer_Loan.cust_no and  Loan.loan_no= Customer_Loan. loan_no  and Customers.city='nashik'  order by  Customers.cust_name desc  ;

•Display customer details having maximum loan amount.
SQL>select Customers.cust_name,Customers.address from Customers,Loan,Customer_Loan    where Customers.cust_no=Customer_Loan.cust_no and  Loan.loan_no= Customer_Loan. loan_no  and   Loan.loan_amt =(select max(Loan.loan_amt) from Loan ) ;

•Calculate total of all loan amount.
SQL>select sum(Loan.loan_amt) from Loan;


Slip2
Consider the following Entities and Relationships
 Department (dept_no, dept_name, location)
Employee (emp_no, emp_name, address, salary, designation)
Relation between Department and Employee is One to Many
Constraint: Primary key, salary should be > 0.
Create a Database in 3NF & write queries for following.

•Find total salary of all computer department employees.

SQL>select sum(Employee.salary),dept_name from Department,Employee where Department. dept_no=Employee.dept_no and dept_name='Computer' group by dept_name;

•Find the name of department whose salary is above 10000.
SQL>select  dept_name,salary from Department, Employee where Department. dept_no  = Employee. dept_no  and salary >10000;

•Count the number of employees in each department.
SQL>select count(emp_no ), dept_name  from Department, Employee where Department. dept_no  = Employee. dept_no  group by dept_name  ;

•Display the maximum salary of each department.
SQL>select max(salary),dept_name from Department, Employee  where Department. dept_no  = Employee. dept_no  group by dept_name  ;

•Displaydepartment wise employee list.
SQL>select emp_name, dept_name  from Department, Employee where Department. dept_no  = Employee. dept_no;

Slip3
Consider the following Entities and Relationships
 Project (pno, pname, start_date, budget, status)
Department (dno, dname, HOD)
Relation between Project and Department is Many to One
Constraint: Primary key.
Project Status Constraints: C – completed,Progressive, I-Incomplete

Create a Database in 3NF & write queries for following.
•List the project name and department details worked in projects that are ‘Complete’.
SQL>Select  p1name, ddname, hodd, locationd from department1, project1 where   department1. dno1= project1.dno1 and  project1.status='C';

•Display total budget of each department.
SQL>Select sum(budget), ddname from  department1, project1 where department1. dno1= project1.dno1  group by ddname;

•Display incomplete project of each department
SQL>select p1name,status ,count(department1. dno1) from department1, project1 where   department1. dno1= project1.dno1 and project1.status='I'  group by status,p1name    ;

•Find the names of departments that have budget greater than 50000   .
SQL>select ddname from  department1, project1 where  department1. dno1= project1.dno1 and budget >=50000  ;

•Displayall project working under 'Mr.Desai'.
SQL>Select  p1name  from department1, project1 where   department1. dno1= project1.dno1 and hodd= 'Mr.Desai';  


Slip4
Consider the following Entities and Relationships
 Room (roomno, desc, rate)
Guest (gno, gname, no_of_days)
Relation between Room and Guest is One to One.
Constraint: Primary key, no of days should be > 0.
Create a Database in 3NF & write queries for following.

•Display room details according to its rates  in ascending order.
SQL>Select desc,rate from room  order by desc ASC;

•Find the names of guest who has allocated room for more than 3 days.
SQL>Select  gname  from guest,room where guest.gno=room.rno where   no_of_days>3;

•Find no. of AC rooms.
SQL>select count(rno) from room where desc=’AC’;

•Display total amount for NON-AC rooms.
SQL>Select Sum(rate) from room where desc=’Non-AC’;

•Find names of guest with maximum room charges.
SQL>select gname from room,guest where guest.gno=room.rno  and rate = (select max(rate) from room);
Slip5
Consider the following Entities and Relationships
 Book (Book_no, title, author, price, year_published)
Customer (cid, cname, addr)
Relation between Book and Customer is Many to Many with quantity as
descriptive attribute.
Constraint: Primary key, price should be >0.
Create a Database in 3NF & write queries for following.

•Display customer details from 'Mumbai'.
SQL>Select * from Customerb where addr='mumbai';

•Display author wise details of book.
SQL>Select author ,title from BOOK order by author;

•Display all customers who have purchased the books published in the year 2013.
SQL>Select * from Customerb,BOOK, Customerb_BOOK where  Customerb.cid=Customerb_BOOK.cid and BOOK.BNO= Customerb_BOOK.BNO and year_published='2013';

•Display customer name that has purchased more than 3 books.
SQL>select count(BOOK.BNO),cname from Customerb,BOOK, Customerb_BOOK where  Customerb.cid=Customerb_BOOK.cid and BOOK.BNO=Customerb_BOOK.BNO and BOOK.BNO>3 group by cname;

•Displaybook names having price between 100 and 200 and published in the year 2013.
SQL>Select BOOK.title from Customerb,BOOK, Customerb_BOOK  where  price>=100 and   price<=200 and Customerb.cid=Customerb_BOOK.cid and BOOK.BNO= Customerb_BOOK.BNO;

Sunday, May 17, 2020

Computer GK


Computer GK Questions


1. Who invented Compact Disc?
Ans : James T Russel


2. Which day is celebrated as world Computer Literacy Day?
Ans : December 2


3. Who invented Java?
Ans : James A Gosling


4. Longhorn was the code name of ?
Ans : Windows Vista

5. Who is known as the Human Computer of India?
Ans : Shakunthala Devi


6. What is mean by Liveware?
Ans : People who work with the computer


7. Which computer engineer got Nobel Prize for literature in 2003?
J.M. Coetzee


8. 'Weaving The Web' was written by.....
Ans : Tim Burners Lee


9. What is Beta Test?
Ans : Trial test of a computer or software before the commercial launch


10. 'Do no evil' is tag line of ......
Ans : Google


11. First Indian cinema released through internet is .....
Ans : Vivah


12. Rediff.com was founded by.....
Ans : Ajith Balakrishnan and Manish Agarwal


13. What is the extension of PDF?
Ans : Portable document format


14. Mows is a type of mouse for ........ people
Ans : Physically handicapped people


15. Expand RDBMS?
Ans : Relational Data Base Management System


16. Difference engine was developed by.....
Ans : Charles Babbage


17. Orkut.com is now owned by ......
Ans : Google


18. World's first microprocessor is .....
Ans : Intel 4004


19. What is SQL?
Ans : Structured Query Language


20. What is the expansion of COBOL?
Ans : Common Business Oriented Language

Covert to nfa



Convert regular expression to nfa



# include <stdio.h>

#include <conio.h>

#include <string.h>

#include <ctype.h>

int ret[100];

static int pos = 0;

static int sc = 0;

void nfa(int st, int p, char*s)

{

int i,sp,fs[15],fsc=0;

sp=st:pos=p;sc=st;

while(*s!=NULL)

{

if(isalpha(*s))

{ret[pos++]=sp;

ret[pos++]=*s;

ret[pos++]=++sc;}

if(*s=='.')

{

sp=sc;

ret[pos++]=sc;

ret[pos++]=238;

ret[pos++]=++sc;

sp=sc;}

if(*s=='|')

{sp=st;

fs[fsc++]=sc;}

if(*s=='*')

{ret[pos++]=sc;

ret[pos++]=238;

ret[pos++]=sp;

ret[pos++]=sp;

ret[pos++]=238;

ret[pos++]=sc;

}

if(*s=='(')

{

char ps[50];

int i=0,flag=1;

s++;

while(flag!=0)

{

ps[i++]=*s;

if(*s=='(')

flag++;

if(*s==')')

flag--;

s++;}

ps[--i]='\0';

nfa(sc,pos,ps);

s--;

}

s++;

}

sc++;

for(i=0;i<fsc;i++)

{

ret[pos++]=fs[i];

ret[pos++]=238;

ret[pos++]=sc;

}

ret[pos++]=sc-1;

ret[pos++]=238;

ret[pos++]=sc;

}

void main()

{

int i;

char *inp;

clrscr();

printf("enter the regular expression :");

gets(inp);

nfa(1,0,inp);

printf("\nstate intput state\n");

for(i=0;i<pos;i=i+3)

print("%d  --%c--> %d\n", ret[i], ret[i+1,ret[i+2]);

printf("\n");

getch();
}

Thursday, May 14, 2020

Computer info


What is Computer?

Computer word comes from english word "compute" that is means Calculation. Computer is basically developed for calculation purpose. In past the computer was a machine that is used for calculation.

Computer Full Form
C=Common
O= Oriented 
M= Machine
 P= Particularly 
U= United and used under
 T= Technical and
 E= Educational 
R= Research

To work computer properly there is need of both hardware and software.without hardware software not works and without software hardware will not work. Software always gives commands  for hardware to work.
CPU of Computer is connected to various hardwares. All the controling and synchronization between these devices is done by system software that means operating system.

Functions of Computer

Computer functions are processing as follows

(Input) →  (Processing) →(Output)

1. For input in computer we uses input devices like keyboard , mouse it provides commands to computer through software.

2. In this stage commands which are provided by input units are processed by processor through the software guidelines.

3. In last and third stage all the processed information is given for output.which will be available through output devices


Main Parts of Computer

Computer is a machine. All these machinary parts are called as hardware.to work hardware properly there is need of software. Through the software instructions are provided to hardware. Software is a soul of computer and hardware is body of computer both are required to complete any work of computer.


Other parts of Computer
Monitor 
 Mouse 
 Keyboard 
Central Processing Unit 
U.P.S

Monitor or LCD :-
This part provides display of all compComp programs.it is output device.

Keyboard :-
This device used for typing data or information.it is an input device. We can operate computer through keyboard.


Mouse :- 
This device makes easy use of computer. 
It is like a remote device which provides input.


CPU Central Processing Unit :-
It is an main part of computer system where all data is stored. All parts of computer are connected through CPU. 

 U.P.S Uninterrupted Power Supply :-
It is an hardware or machine which provides uninterruptable power supply either switch off or on. It keeps data secure, however the switch is off.



Hypotenuse



C program to find hypotenuse without math.h


#include<stdio.h>
int main()
{
float p,b,h;
printf("enter the peroendicular and bsae : ");
scanf("%f %f",&p,&b);
h=sqrt{(p*p)+(b*b)};
printf("The hypotenuse is: %f",h);
return 0;
}

Wednesday, May 13, 2020

Find Multiples

C program to print multiples of 15 from M to N

#include<stdio.h> 
#include<conio.h>
void main()
{ 
 int i, m,n, d ; 
 clrscr() ; 
 printf("Enter the range: ") ; 
 scanf("%d%d", &m,&n) ; 
 C program to print multiples of 15 from M tohe number : ") ; 
 scanf("%d", &d) ; 
 printf("\nThe multiples of given number  %d are :\n\n", d) ; 
 for(i = m ; i <= n ; i++) 
  if(i % d == 0) 
   printf("%d\t", i) ; 
 getch() ; 
}

Tuesday, May 12, 2020

C prog on isgrep

C Program to Simulate grep Command in Linux


#include<stdio.h>
#include<string.h>
void main()
{
char f1[10],ptrn[10],t[200];
FILE *fp;
printf("Enter file name\n");
scanf("%s",f1);
printf("Enter pattern \n");
scanf("%s",ptrn);
fp=fopen(f1,"r");
while(!feof(fp))
{
fgets(t,1000,fp);
if(strstr(t,ptrn))
  printf("%s",t);
}
fclose(fp);
}

Monday, May 11, 2020

Sum of positive nos


C program to read hundred integers and find the sum of only positive integers and skip negative integer


#include<stdio.h>
int main()
{
      int a[100],i,sum=0;
      for(i=0;i<=99;i++)
{
      if(a[i]>0)
         sum=sum+i;
     
}

printf("sum of positive integers=%d",sum);
return 0;

}

Sunday, May 10, 2020

Computer application


 Computer Applications

1. Uses of the computer in the Education field

Schools and colleges around the world are using computer and internet technologies to teach students digitally and creatively with data visualization. Uses of the computer in a classroom will explore creativity and imagination in students’ minds.  Drawing tools, spreadsheets, Audio, Video lectures, and PowerPoint presentations, etc. are very beneficial for students to learn more deeply and accurately. That created the new education business model called small classes, smart classrooms, and digital classrooms.
2 Use of computer in the business
Computer with the internet connection we can start the business, run the business and manage the business and we can grow the business by the use of a computer.  Google, Facebook, LinkedIn, Amazon and Alibaba all are websites created by the use of computers and the internet.
We can’t imagine the daily business operations around the world without the use of computer technologies. In the early days when the first mechanical computer invented by Charles Babbage, it was used only to control the business system and speed up the business process accurately. But today everything is controlled and managed by computers.
Businesses and companies use a computer to do marketing and business planning, they use a computer to record customer data, they use a computer to manage goods and services.

3. Uses of the computer in hospitals

Uses of the computer in the hospital provide many benefits for doctors and patients. Hospitals can create a database of a patient with their treatment records, medical records. Doctors are using a computer to diagnose the diseases of patients faster. They are taking the help of various medical applications of computer and hardware devices. The use of computer and its application in hospitals are such as to do the research on diseases, blood test, and urine test, brain testing, and body scanning, etc.

4. Uses of the computer in the banking sector

Banks are using computers daily to faster and accurate customer demands. Banks are using a computer to deposit customer money in their account. In this case, the cashier enters the account number of customers in their banking application, they first confirm the account number and customer details and then enter the deposited amount in their banking application by the use of the keyboard.
This process is faster and accurate. Banks are also providing ATMs to withdraw and cash deposit ATMs for their customers. Whenever we deposit, withdraw money we get messages on our mobile number. We can see and print our transaction records without visiting banks. The whole process of banking is done by a computer.
The innovative uses of computer in banking are that customer can operate their bank account by doing internet banking. Banks are providing the customer for accessing, transferring money, monthly bills or shopping bills by the use of computers and mobile.
Also by the use computer customer can get knowledge about various bank loan schemes such as a business loan, home loan and car loan. The customer can also check on the bank websites about loan eligibility and if they are eligible they can apply for the bank loan.

5. Uses of the computer in government offices

The government works or official works take more time to complete in the past. There was lots of staff required in the past to manage citizen’s works. But today citizens, consumers are getting a solution with high speed and accuracy. Because of the use of computers in official works. There are so many applications that speed the process and quality of official works. Such as Microsoft Office package, email, video conferencing tools are few applications that speed the work of government offices with accuracy.

6. Uses of the computer in the home

The computer uses at home depends on the user. There are so many people using the computer at home. Some people are using a computer to take online classes. Some people using the computer to do online business. Some people are using the computer to listen to songs and to watch movies etc.
Else the use of the computer in the home provides great advantages. Such you can access banking and business services from home. You can communicate with people around the world through the use of the computer.

7. Uses of the computer in marketing

The use of a computer with the internet is creating new ways to do the product and services marketing online. Digital marketing services, products, websites, and businesses are growing. Businesses can use a computer to type marketing content, to publish content marketing articles on websites and social media. They can sell and market their products on portals or such as Amazon. Businesses can use PPC to get a quick ROI for their marketing budget.
Companies can chat, email, outsource, apply and can do various works that included in Internet Marketing such as website designing, Search engine optimization, PPC, Content Marketing, Social Media Marketing, etc. all by the use of a computer to market their product and services in best possible ways.