Skip to main content

MS Office

MS Office 


MS Office stand for Microsoft Office this is an office based application software group of programs here and these are worldwide uses in every day.

The following applications in ms office package:
  • MS Word
  • MS Excel
  • MS PowerPoint
  • MS Access
  • Outlook etc

Microsoft word:

Ms word is a powerful word processing application which widely uses in offices and schools for their daily documentation related work and maintaining documents.
like ("Letter writing, Creating Resume or Biodata, Agenda, and any documentations related work.")


Microsoft excel:

Ms excel is a mostly uses in offices and schools for calculation and some database related work.
like ("Marks sheets, Salary sheet, Day book and other data storing areas,")


Microsoft PowerPoint

Ms powerpoint is a powerful application its mainly use creating standard slideshow and presentations related work in schools and offices,
like (Shield show, Presentation, and Short Animations)




Microsoft Access

MS Access is on of the most important and security-related work done here. Database Managment Systems (DBMS) is also operated by ms access. this is use schools, colleges, office, clubs, hospitals and many types of organization use this application for maintaining data processing jobs.
like (DBMS related work.)


Microsoft Outlook

Ms Outlook is one of the greatest applications in ms office its using send \ing and receiving electronics mail from one computer to other computers its work as a default mailbox in your computer system.

Comments

  1. Hello Internet web site owner. I seriously love this writing and also your webpage all in all! That write-up is very clearly written and also without difficulty understandable. Your WordPress design is wonderful as well! Would definitely be excellent to discover where I can get that. Be sure to hold up the excellent work. We all need much more this sort of internet owners such as you online and much less spammers. Exceptional mate! This Site

    ReplyDelete

Post a Comment

Popular posts from this blog

Data units and bits and bytes

Data units and bits and bytes A bit is smallest unit in data, 1 bit = one binary digit 0 or 1 For Processing or virtual 1 bit = One binary digit (0 or 1) 1 nibble = 4 bit 1 byte = 8 bit 1024  bytes = 1 KB (Kilobyte) 1024 KB = 1 MB (Megabyte) 1024 MB = 1 GB (Gigabyte) 1024 GB = 1 TB (Terabyte) 1024 TB = 1 PB (Petabyte) 1024 PB = 1 EB (Exabyte) 1024 EB = 1 ZB (Zettabyte) 1024 ZB = 1 YB (Yottabyte) 1024 YB = 1 BB (Brontobyte) 1024 BB = 1 GB (Geopbyte) For Storage 1 bit = One binary digit (0 or 1) 1 nibble = 4 bit 1 byte = 8 bit 1000 bytes = 1 KB (Kilobyte) 1000 KB = 1 MB (Megabyte) 1000 MB = 1 GB (Gigabyte) ...

MYSQLI DELETE table data using Parameters Prepared Statements (PHP)

Select and delete data from MySQL table using PHP help of  Parameters Prepared Statements. The output will be this. Source of  the Main page: <?php @$conn = mysqli_connect('localhost','root','','testdb') or die("Please check your database username and password") ?> <!doctype html> <html> <head> <meta charset="utf-8"> <title>Insert into table</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <style> #myform { margin:20px; -webkit-box-shadow: 0px ...

MYSQLI INSERT INTO table using Parameters Prepared Statements (PHP)

Insert data into mysql table using PHP help of  Parameters Prepared Statements. Why use parameters in your php applications? This is secure This is error less Faster then any others Source : <?php @$conn = mysqli_connect('localhost','root','','testdb') or die("Please check your database username and password") ?> <!doctype html> <html> <head> <meta charset="utf-8"> <title>Insert into table</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <style> #myfo...