Premium Essay

Module Labs and Short Answer

In:

Submitted By jlh199009
Words 371
Pages 2
Module 1 Short Answer

An operating system is a level of programming that allows you to do stuff with computers. It interacts with the computer’s hardware to transmit your command into a language the computer can interpret. Operating systems is like a computer manager what a software needs and what your system can provide to support the software needs that includes your memory processing unit and your computer storage access among other things that makes sure your system is never overtaxed.
The five differences I came up with is price, quantity of functions, compatibility, easy to use, easy to find system. Windows is most common due to its mid-range price and most popular used in the operating systems today. Mac OS is in the higher range of price but hardly any compatibility but good for home pc that you don’t use to play games or want any viruses because Mac has very little virus due to the windows market share. Almost every application or game will work on a windows operating system but due to this you may need a antivirus on your system due to windows is very vulnerable to viruses. With windows there is also so many functions to make windows very easily to use and with its popularity it has the highest tech support although windows due run slower due to all

the applications and software it can run. Mac OS is high in price due to its high reliability and it looks way better than a windows. Linux is the cheapest operating system because it is just a kernel and not a full operating system. With that being said, Linux also has fewer virus capabilities than a windows but more than a Mac OS. Linux is also more complicated to use but fewer software and applications can be used than a windows. There also is not many vendors of a Linux operating system where most operators of a Linux operating system buys a windows and rebuilds it to a Linux system.

Similar Documents

Premium Essay

Hai, How Are U

...UNIVERSITY OF KERALA B. TECH. DEGREE COURSE 2008 ADMISSION REGULATIONS and I  VIII SEMESTERS SCHEME AND SYLLABUS of COMPUTER SCIENCE AND ENGINEERING B.Tech Comp. Sc. & Engg., University of Kerala 2 UNIVERSITY OF KERALA B.Tech Degree Course – 2008 Scheme REGULATIONS 1. Conditions for Admission Candidates for admission to the B.Tech degree course shall be required to have passed the Higher Secondary Examination, Kerala or 12th Standard V.H.S.E., C.B.S.E., I.S.C. or any examination accepted by the university as equivalent thereto obtaining not less than 50% in Mathematics and 50% in Mathematics, Physics and Chemistry/ Bio- technology/ Computer Science/ Biology put together, or a diploma in Engineering awarded by the Board of Technical Education, Kerala or an examination recognized as equivalent thereto after undergoing an institutional course of at least three years securing a minimum of 50 % marks in the final diploma examination subject to the usual concessions allowed for backward classes and other communities as specified from time to time. 2. Duration of the course i) The course for the B.Tech Degree shall extend over a period of four academic years comprising of eight semesters. The first and second semester shall be combined and each semester from third semester onwards shall cover the groups of subjects as given in the curriculum and scheme of examination ii) Each semester shall ordinarily comprise of not less than 400 working periods each of 60 minutes duration...

Words: 34195 - Pages: 137

Premium Essay

Itt Syllabus

...GS1145 Strategies for the Technical Professional Syllabus Credit hours: 4.5 Contact/Instructional hours: 56 (34 Theory, 22 Lab) GS1145 Strategies for the Technical Professional Syllabus COURSE SUMMARY COURSE DESCRIPTION This course reviews characteristic and trends of the global information society including basic information processing, Internet research, other skills used by the technical professionals and techniques that can be used for independent technical learning. MAJOR INSTRUCTIONAL AREAS 1. Getting Started at ITT Technical Institute 2. Productivity Software 3. Overview of Technology Tools 4. Microsoft Word 5. Microsoft PowerPoint 6. Microsoft Excel 7. Microsoft Access 8. Communication Tools 9. Exploring Career Goals 21st-century skills o Changes in work and the workplace o Building marketable proficiencies o Projecting professionalism ITT Technical Institute Career Services Resources o Targeting job descriptions  o Transferable skills Crafting a Resume 10. Skills and Techniques of a Successful Student Strategies for independent learning Learning styles Note-taking strategies Test-taking techniques © ITT Educational Services, Inc. All Rights Reserved. [2] 10/29/2013 GS1145 Strategies for the Technical Professional Syllabus Critical thinking Problem solving Basic research skills o ITT Tech Virtual Library o Web searches o Citing sources Time management Working in teams COURSE LEARNING OBJECTIVES By the end of this course, you should be able...

Words: 14113 - Pages: 57

Premium Essay

1234

...Exploring the Motherboard and Busses Exploring the Motherboard and Busses The motherboard represents the logical foundation of the computer.   Everything that makes a computer must be attached to the motherboard.    Answer the following questions: 1. What are the major components of the motherboard?   Provide a brief description of each component. 1.   Processor (CPU):   The processor is the brain of the computer and is the chip where all the computing is done. 2.   Memory:   This is where the computer stores information while it is working on it. 3.   Chipset:   The chipset is a link between the processor and the outside world, and handles things like controlling the hard drives, the USB ports, the keyboard and mouse, generates the sounds the computer makes, and sometimes even creates the pictures you see on the screen. 4.   Expansion Slots:   Expansion slots are connectors that allow you to attach additional cards on the computer, such as video cards, sound cards, modems, and add abilities to the computer that the motherboard doesn’t provide.    5.   I/O (Inputs/ Outputs):   These are a set of connectors that allows you to connect various devices to the computer, such as the keyboard, monitor, mouse, hard drives, flash drives, printers, and connect the computer to a network. 2. Upgrading only the motherboard will give some performance improvement to a computer system.   Why? Upgrading the motherboard will definitely give performance improvement to any computer system...

Words: 469 - Pages: 2

Free Essay

Pt1420 7 1 Lab

...Unit 7 lab Short Answer Module main () // Declare variable Declare String clientName Declare Real feetUTP=0 Declare Real subtotal=0 Declare Real totalCost=0 Declare String keepgoing=“y” Display “Do you want to make a call?” Type y for yes. Input keepgoing While keepgoing == “y” // Module Calls Call Call Call End Module 7.2 7.3 // Declare loop control variable Declare Integer toPower=2 Declare Integer number=2 Declare Integer counter=0 Do ToPower=number^2 Display “2 to the power of”, number, “is” toPower Counter=counter+1 Number=number+1 While counter < 8 Lab7.4 Declare integer counter = 1 Declare integer toPower = 2 Declare integer number = 2 counter < 7 Display “2 to the power of”, number, “is”, toPower counter = counter + 1 False toPower = 2 ^ number True   Lab7.5 Module Module1 Sub Main() Dim keepGoing As Integer = 1 Dim Count As Integer = 5 pingMe() openWebsite() finalOutput() While Count > 0 Console.WriteLine("Count down ..." & Count) Count -= 1 End While Console.ReadLine() End Sub Sub pingMe() Shell("Ping.exe 127.0.0.1", , True) End Sub Sub openWebsite() Dim myTargetURL As String = "http://www.microsoft.com" System.Diagnostics.Process.Start(myTargetURL) End Sub Sub finalOutput() Console.WriteLine("Complete and explanation of what this program does.") Console.WriteLine("The Shell function and ping.exe check for a response from the web server") Console.WriteLine("Dim...

Words: 298 - Pages: 2

Free Essay

Programming Concepts Using C++ Lab 6

...Lab 6 Short Answer 1. The difference between a module and a function is the module is a group of statements that exist within a program for the purpose of performing a specific task. You are writing its definition. A function is a special type of module and most commonly referred to library functions which a made for different programming languages. 2. The three characteristics of a function in a IPO chart are: function header, function body, return statement. 3. The real number’s fractional part in a conversion function that is used to convert a real number to an integer usually shows up as a type mismatch error. A integer variable cannot hold fractional values. It’s better to convert the result of the math expression to an integer and then assign that integer to the variable. 4. A substring is a string within a string. The substring function typically accepts three arguments: (1) a string that you want to extract a substring from (2) the beginning position of the substring, and (3) the ending position of the substring. 5. The stringToInteger function accepts a string as an argument, converts it to an Integer, and returns the Integer value. The stringToReal function works the same way, but it converts a string to a Real, and usually then gets stored in the realNumber variable. 6. IsInteger function determines whether a string can be converted to a Integer and the isReal function determines whether a string can be converted to a Real. They use If Then...

Words: 260 - Pages: 2

Premium Essay

Trying to Join Site

...IT1115 Introduction to Information Technology Syllabus Credit hours: 6.0 Contact/Instructional hours: 70 (50 Theory, 20 Lab) IT1115 Introduction to Information Technology Syllabus COURSE SUMMARY COURSE DESCRIPTION This course explores foundational topics related to information technology. Topics examined include computing devices, hardware, software, operating systems, computer networks, security, and computer programming. Logical problem solving, troubleshooting, and maintenance of computer systems are also introduced. MAJOR INSTRUCTIONAL AREAS 1. Computer History and Fundamentals 2. Hardware 3. Operating Systems 4. Basic Networking 5. Basic Security 6. Software 7. Basic Programming 8. Web Technologies 9. Troubleshooting COURSE LEARNING OBJECTIVES By the end of this course, you should be able to: 1. Identify the evolution of computers and different types of computers. 2. Convert numbers between binary, decimal, and hexadecimal number systems. 3. Explain the purpose, functions, and characteristics of a CPU. 4. Describe the physical components of a computer and various input and output devices, including storage and memory. 5. Describe the function of BIOS and the booting process of a computer. 6. Describe basic operating system architecture, its components, and storage management. © ITT Educational Services, Inc. All Rights Reserved. [2] 6/15/15 IT1115 Introduction to Information Technology Syllabus 7. Describe basic types of computer network topologies and connections...

Words: 12527 - Pages: 51

Free Essay

Test

...Culverhouse College of Commerce: AC210 Fall 2012 Course number and title:  AC 210 Introduction to Accounting. Course description:  Introduction to accounting and financial reporting concepts and the use of accounting information in financial and managerial decisions. Credit hours:  Four hours, including a one-hour required lab.  Prerequisites:  EC 110. Instructor:  Lisa McKinney  Office address:  364 Alston Hall  E-mail address: lmckinne@cba.ua.edu Phone number: 348-6679 Office hours:  MW 9:30am – 11:00am.  Other times by appointment. Instructor:  Dr. Xiaochuan (Kelly) Huang Office address:  361 Alston Hall E-mail address:  xhuang8@cba.ua.edu  Phone number:  348-0577 Office hours:  TR 1:00pm – 1:45pm & TR 3:30pm – 4:45pm. Other times by appointment. Instructor:  Kelsey Brasel  Office address:  329 Bidgood Hall E-mail address:  krbrasel@crimson.ua.edu  Phone number:  348-0150 Office hours:  TR 11:00am – 12:15pm. Other times by appointment. Instructor: Amanda Beck Office address:  329 Bidgood Hall E-mail address:  aebeck@cba.ua.edu  Phone number: 348-0150 Office hours: MW 2:00pm - 3:15pm. Other times by appointment. Required text:  Phillips, Libby, and Libby, Fundamentals of Financial Accounting, 3rd edition, 2011, McGraw-Hill Irwin, hardcopy or loose-leaf option.  Also, you will need a Pass Code for Connect, the online homework program that accompanies the text. A Pass Code for the online homework is only valid for one semester so you cannot purchase...

Words: 3835 - Pages: 16

Free Essay

Accounting 57

...Culverhouse College of Commerce: AC210 Spring 2014 Course number and title:  AC 210 Introduction to Accounting. Course description:  Introduction to accounting and financial reporting concepts and the use of accounting information in financial and managerial decisions. Credit hours:  Four hours, including a one-hour required lab.  Prerequisites:  EC 110. Instructor & Course Coordinator:  Lisa McKinney Office address:  364 Alston E-mail address: lmckinne@cba.ua.edu Phone number: 348-6679 Office hours: TR 10:50am - 12:30pm.  Other times by appointment. Instructor: Amanda Beck Office address:  325 Bigood E-mail address: aebeck@cba.ua.edu Phone number: 348-0149 Office hours: R 9:30am – 11:00am.  Other times by appointment. Instructor: Xianjing (Jasmine) Bordere Office address:  325 Bidgood E-mail address: xbordere@cba.ua.edu   Phone number:  348-0149 Office hours: T 9:15am – 11:00am. Other times by appointment. Instructor: Ben Commerford Office address:  329 Bidgood E-mail address:  bpcommerford@cba.ua.edu  Phone number:  348-0150 Office hours: MW 3:30pm – 4:45pm. Other times by appointment. Instructor:  Don Minyard Office address:  365 Alston E-mail address: dminyard@cba.ua.edu Phone number: 348-2911 Office hours: TR 12:45pm - 1:30pm and T 4:00pm – 5:30pm.  Other times by appointment. Instructor:  Kyle Peel Office address:  325 Bidgood E-mail address: rkpeel@cba.ua.edu Phone number: 348-0149 Office hours: TR 7:00am – 8:00am.  Other times by appointment. Instructor: ...

Words: 4497 - Pages: 18

Premium Essay

It 105

...Mngt. Laboratory Exercises Republic of the Philippines MINDORO STATE COLLEGE OF AGRICULTURE AND TECHNOLOGY Main Campus Alcate, Victoria, Oriental Mindoro Name: ______________________________ Course & Year: _____________ Laboratory Exercises No. 1 Identifying Parts/Components of Personal Computers Objectives: o o o o o o Identify the components of a PC Identify the desktop components Explain the PC Start up processes Familiarize with the computer Identify the elements of the computer system Identify the first tasks to be performed while troubleshooting PCs Date: _____________ Score:____________ General Directions     Read and understand each statement carefully. Write the questions and your answers on your activity sheet. Avoid unnecessary erasures. Use black or blue pen only. Answer the following: 1. What is computer? Give its characteristics, capabilities, and limitations? _____________________________________________________________________________ _____________________________________________________________________________ _____________________________________________________________________________ _____________________________________________________________________________ _____________________________________________________________________________ _____________________________________________________________________________ _____________________________________________________________________________ _____________________________________________________________________________...

Words: 12098 - Pages: 49

Premium Essay

Electrical Electronics

...UNIVERSITY OF KERALA B. TECH DEGREE COURSE 2008 SCHEME ELECTRICAL AND ELECTRONICS ENGINEERING I to VIII SEMESTER SCHEME AND SYLLABUS BOARD OF STUDIES IN ENGINEERING AND FACULTY OF ENGINEERING AND TECHNOLOGY UNIVERSITY OF KERALA B.Tech Degree Course – 2008 Scheme REGULATIONS 1. Conditions for Admission Candidates for admission to the B.Tech degree course shall be required to have passed the Higher Secondary Examination, Kerala or 12th Standard V.H.S.E., C.B.S.E., I.S.C. or any examination accepted by the university as equivalent thereto obtaining not less than 50% in Mathematics and 50% in Mathematics, Physics and Chemistry/ Bio- technology/ Computer Science/ Biology put together, or a diploma in Engineering awarded by the Board of Technical Education, Kerala or an examination recognized as equivalent thereto after undergoing an institutional course of at least three years securing a minimum of 50 % marks in the final diploma examination subject to the usual concessions allowed for backward classes and other communities as specified from time to time. 2. Duration of the course i) The course for the B.Tech Degree shall extend over a period of four academic years comprising of eight semesters. The first and second semester shall be combined and each semester from third semester onwards shall cover the groups of subjects as given in the curriculum and scheme of examination ii) Each semester shall ordinarily comprise of not less than 400 working periods each of 60 minutes...

Words: 36386 - Pages: 146

Premium Essay

Unit 7 Homework

...Lab 7 Homework PT 1420 4/28/2016 Short Answers 1-5 1. Why should you indent the statements in the body of a loop? When indenting your statements, you can make them stand out from surrounding code. 2. Describe the difference between pretest loops and posttest loops? A pretest loop test the conditions before each iteration while a posttest loop test after each iteration. 3. What is a condition-controlled loop? A way for computer programs to repeat one or more various steps depending on conditions set either by the programmer initially or real time. 4. What is a count-controlled loop? A counter variable used to control or keep track of the number of times a loop iterates. Initialization, test and increment. 5. What three actions do count- controlled loops typically perform using the counter variable? While loop, do-while loop and for loop. Algorithm Questions 1,2,7 and 8 1. declare integer product declare integer number product =0 do while product < 100 display “enter number” input number product = number*10 2. do{ sum =0 print(“enter=a”) read a print(“enter=b”) read b sum = a*b print(“sum=”+sum) print(‘ do you wish to continue”) read Response } while (RESPONSE) 7. Declare integer x =1 Do { while x > 0 display “enter a number” input x } End while 8. Declare string sure Display “are you sure you want to quit?” While sure != "Y" AND sure != "y" End while Programming exercises 1,3, and 4 1. Module Module1 Sub Main() Dim day1...

Words: 483 - Pages: 2

Free Essay

Booking Assesment

...and Task 10 6.6 Work Assignment and Employee 11 6.7 Work assignment and Materials 11 6.8 Work Assignment and Employee 12 7. M: N Relationships 13 7.1 Work_Assignment and Employee 13 7.2 Work_Assignment and Materials 13 7.3 Work_Order and Tasks 13 8. All possible tables of the ER Design 14 9. Why we need ER Diagram for the Scenario 18 10. Why we used relational model rather than using the hierarchical model 19 10.1 Hierarchical Model 19 10.2 Relational Model 19 10.3 Why we used Relational Database 19 11. Suggestions for the Improvements 21 12. Importance of the Database Modeling phase in a Database Development Project 22 12.1 Modeling Steps 22 12.2 Database Deigning Process 22 * Abstract Short Message Technology (SMS) is commonly used among the students modern world as it is a reliable mobile technology. Thus, to simplify the process of assignment booking and to save time SMS technology can be used effectively. In this project, the development of an SMS based assignment booking system is presented. Using the SMS interface, students would be able to send requests for time slots and receive the availability of that slot. Online assignment booking system completely depends on internet connection and also it consumes time. However, GSM coverage required for SMS technology is more reliable as it always exists almost everywhere and also sending SMS with time slot will not consume much time. Thereby, SMS based assignment booking system...

Words: 6238 - Pages: 25

Free Essay

Institute Management System

...User Administration |User Administration |  |  | |Module |Functionality |Integration | | | |Requirement | |General |  |  | | |System should have one super system administrator | | | |Super system admin shall be able to create roles for all system administrators and override | | | |the privileges created by system administrators. | | | |User credentials shall be communicated to user on the instance of creation and by system | | | |generated email. | | | |System administrators shall be able change their passwords and history shall be saved in | | | |system. ...

Words: 20750 - Pages: 83

Premium Essay

Syllabus

...Syllabus Page 1 of 34 Draft: Please download latest upon course launch. Syllabus This is a single, concatenated file, suitable for printing or saving as a PDF for offline viewing. Please note that some animations or images may not work. Course Description This module (allpages.htm) is also available as a concatenated page, suitable for printing or saving as a PDF for offline viewing. MET CS669 Database Design and Implementation for Business This course uses the latest database tools and techniques for persistent data and object-modeling and management. Students gain extensive hands-on experience with exercises and a term project using Oracle, SQL Server, and other leading database management systems. Students learn to model persistent data using the standard Entity-Relationship model (ERM) and how to diagram those models using EntityRelationship Diagrams (ERDs), Extended Entity-Relationship Diagrams (EERDs), and UML diagrams. Students learn the standards-based Structured Query Language (SQL) and the extensions to the SQL standards implemented in Oracle and SQL Server. Students learn the basics of database programming, and write simple stored procedures and triggers. The Role of this Course in the MSCIS Online Curriculum This is a core course in the MSCIS online curriculum. It provides students with an understanding and experience with database technology, database design, SQL, and the roles of databases in enterprises. This course is a...

Words: 10777 - Pages: 44

Free Essay

Devry Gscm 330 Complete Course-Latest 2015 December

...Devry GSCM 330 Complete Course-Latest 2015 December (All Discussisons All Quizes And All Lab Homework But No Final) IF You Want To Purchase A+ Work then Click The Link Below For Instant Down Load http://www.hwspeed.com/Devry-GSCM-330-Complete-Course-Latest-2015-December-2234123463.htm?categoryId=-1 IF You Face Any Problem Then E Mail Us At JOHNMATE1122@GMAIL.COM Question week 1 Master Planning (graded) How does master planning affect the overall organization? Why is this a necessary part of the overall management process of an organization? Planning Horizons (graded) What are time horizons as used in the corporate planning process? How do these horizons affect our forecasting processes? let’s first considertime horizons as used in the corporate planning process. What are these horizons and how do they affect our forecasting processes? week 2 Which forecast error measuring tool is the best? (graded) Of the four error tracking tools we have learned about in our assigned textbook reading (MAD, MSE, MAPE and seasonality), which method provides the best way to track forecast error? Give examples. Is it possible to forecast seasonal products without removing the seasonal variations? (graded) We calculate a seasonal index in order to remove the seasonal component before creating a forecast. Is it possible to remove this step and create a forecast with the seasonal variation still in place? Why or why not? Explain. whether it...

Words: 1783 - Pages: 8