Explain any five functions that can be used in a worksheet. -Technology

1 Answer

Answer :

1. SUM FunctionThis function, as clear from the name, is used to add all the values provided as an argument and to display the result in the cell containing the function.Argument Type All Numbers Return Type NumberSyntax = SUM(number1, number2, )e.g. if you want to display the sum of values of cells Al, A2, A5, and A6 in cell A9, then you need to simply type = SUM(A1, A2, A5, A6) in cell A9 and press Enter. The sum will be displayed in cell A9. If you want to add a range of values, then provide that range in SUM function as an argument.e.g. if you want to add values from Al to A5, then write like =SUM(A1: A5).If an argument is an array or reference, only numbers in that array or reference are counted. Empty cells, logical values or text in the array or reference are ignored.If any arguments are error values or if any arguments are text that cannot be translated into numbers, Excel displays an error.2. AVERAGE FunctionThis function calculates the average of all the values provided as an argument to this function.Argument Type All Numbers Return Type NumberSyntax = AVERAGE(number1, number2, )e.g. to calculate the average of the values of a range starting from Al to A5 in cell B9, you need to write = AVERAGE(A1: A5) in cell B9.3. COUNT FunctionThis function counts the number of cells that contain numbers and numbers within the list of arguments.Argument Type Any Type Return Type NumberSyntax = COUNT(value1, value2, )e.g. if the values contained in cells Al, A2, A3, and A4 are 5, 7, TRUE and 10 respectively, then – COUNT(Al: A4) will return 3.Arguments that are numbers, dates or text representation of numbers (e.g. a number enclosed in quotation marks, such as ‘1’) are counted.Arguments that are error values or text that cannot be translated into numbers are not counted.If an argument is an array or reference, only numbers in that array or reference are counted. Empty cells, logical values, text or error values in the array or reference are not counted.4. COUNTA FunctionThis function is similar to the COUNT( ) funtion. The only difference is that the COUNTA() function also calculates the text entries even when the entries containan empty string of length 0(zero), i.e. “ ’ ”, but empty cells are ignored. The COUNTA() function counts the total number of values in the list of arguments.Argument Type Any Type Return Type NumberSyntax = COUNTA (number 1, number 2, …)e.g. if the value contained in cells Al, A2, A3, and A4 are 5, 7, TRUE and 10 respectively then = COUNTA (Al: A4) will return 4.5. MAX FunctionThis function is used to return maximum value from a list of arguments.Argument Type All Numbers Return Type NumberSyntax = MAX(number1, number2, ….)e.g. if the values contained in cells Al, A2, A3 and A4 are 5, 7, 2 and 10 respectively then = MAX(A1:A4) will return 10.MAX will consider only numeric and logical values to compute maximum.If an argument is an array or reference, only numbers in that array or reference are used. Empty cells or text in the array or reference are ignored.If the arguments contain no numbers, MAX returns 0 (zero).Arguments that are error values or text that cannot be translated into numbers cause errors.

Related questions

Description : What is the difference between a workbook and a worksheet? -Technology

Last Answer : Differences between the workbook and worksheet are as follows:WorkbookWorksheetA workbook is an Excel file with one ormore worksheets.A worksheet is a single spreadsheet of data.A workbook would be the entire binder,with everything in it.A worksheet would be like one section inthat binder.

Description : Is it possible to remove a worksheet? State the process of doing it. -Technology

Last Answer : Yes, it is possible to remove a worksheet. To remove a worksheet right-click on the Sheets tab of the sheet that you want to delete and choose Delete from the popup menu, or choose Delete Sheet from the pop-up menu of Delete option on cells group under Home tab.

Description : Sana has entered 49+30 in a cell. The worksheet is not displaying 79 in the cell. -Technology

Last Answer : In Excel, every formula must start with a = (equal) sign.Since Sana has not put = sign before 49+30, thus she is not able to see the desired result will be displayed if she will use = (49 + 30) formula.

Description : In a worksheet, cell K12 has a value. A formula is to be entered in cell K15, such that if the value in cell K12 -Technology

Last Answer : In cell K15, enter the conditional statement as: = IF (K12 > 300, K12 *1.33, K12 * 1.5). Here, IF condition checks the value at K12, that is, if it is greater than 300, then calculate 1.33 of K12, otherwise 1.5 of K12.

Description : A worksheet is a ………………. (a) collection of workbooks -Technology

Last Answer : (c) A worksheet is a combination of rows and columns.

Description : The sample of an Excel worksheet on the screen can be seen by ……………….. -Technology

Last Answer : (a) Print preview enables you to view the sample of worksheet before printing it on a paper.

Description : For selecting the entire worksheet in Excel, you need to press ………………. -Technology

Last Answer : (b) You need to press Ctrl + Shift + Spacebar for selecting the entire worksheet in Excel.

Description : A chart is a graphical representation of worksheet data. -Technology

Last Answer : True A chart is a graphical representation of worksheet data.

Description : What is an operating system? Explain its functions with an examples. -Technology

Last Answer : It is a program that acts as an interface between the user and the hardware (i.e. for all computer resources). An operating system is an important component of a computer system, which controls and ... users cannot access the system e.g. MS-DOS, Windows 95, Windows XP, Windows Vista etc.

Description : What is a File? Explain its functions. -Technology

Last Answer : FilesThese are the collection of information. In fact, almost all type of information is stored into the files. There are many types of files stored in different formats including operating system files, program ... period ( )).e.g. A document created using WordPad might have the filename John.rtf.

Description : Explain any five specific purpose application softwares. -Technology

Last Answer : 1. Hotel Management SystemIt refers to the management techniques used in the hotel sector. It includes hotel administration, accounts, billing marketing, housekeeping, front office or front desk, e.g. ... delivered to acustomer or set of customers.e.g. Billing Manager, BillingTracker, kBilling etc..

Description : What are the functions of an interpreter? -Technology

Last Answer : Interpreter is very useful for debugging and suitable for novice programmer. This is a slow process and consumes less memory space.Some basic functions of an interpreter are as follows:1. Translates one instruction at a time.2. It checks the execution of the instructions line-by-line.

Description : Mr. X has recently installed a new operating system on his computer 1. Describe the main functions of an operating system. -Technology

Last Answer : 1. Monitors the performance of the system, enables software to communicate with hardware and application softwares to be loaded; gives prompts and error reports to the users.2. Antivirus and compression tool.

Description : State any two functions of operating system,. -Technology

Last Answer : 1. Device managementIn a computer system, there is a tremendous speed mismatch between the CPU and the I/O devices. The job of an operating system is to maintain a balance between the CPU and I/O ... execution, a process needs certain resources such as CPU time, memory space, files and I/O devices.

Description : Suchi has recently installed a new operating system on her computer. 1. Describe the main functions of an operating system. -Technology

Last Answer : 1. Monitors the performance of the system, enables software to communicate with hardware, enables applications, software to be loaded; gives prompts and error reports to the users.2. Command-driven user interface means CUI, by which a user gives instructions via typing command onto the computer.

Description : Write all the functions of Minimize button. -Technology

Last Answer : The Minimize button is among the three buttons at the right end of the title bar. This button has a small dash (or minus sign). It shrinks the window and places it on the taskbar while leaving the program running. To go back to this window, click on taskbar where it is shrinked.

Description : Write three functions that can be performed in Slide Sorter view of a presentation. -Technology

Last Answer : The three functions that can be performed in Slide Sorter view are as follows:1. We can see the entire presentation.2. We can move slide from one place to another using click-drag method. Also, we can rearrange the order of slides.3. We can insert, rename and delete slides.

Description : State three functions of the Slides Pane. -Technology

Last Answer : Three functions of the Slides Pane are as follows:1. New slides may be added to the presentation.2. Allows marking a slide as hidden for not showing it during a slide show.3. Deleting a slide from the presentation in case it is no longer neede

Description : ……… is a program that appears harmless but actually performs malicious functions. -Technology

Last Answer : Trojan horse is a program that appears harmless but actually performs malicious functions.

Description : Suggest the appropriate functions for the following situations: -Technology

Last Answer : 1. = MIN(A1 : C5)2. = IF(D5>5,000, “Discount”, “NoDiscount”)

Description : What are the main functions related to information? -Technology

Last Answer : Following are the three main functions related to information:1. Collecting information2. Storing information3. Distributing information

Description : Elaborate the various functions of Multimedia. -Technology

Last Answer : Various functions of Multi Media - can be used as a great support in planning and executing any project, can be used to explain or propose a concept, using multimedia while preparing content ... topic makes the process more organized and precise, the teaching and learning can be more interactive.

Description : Evaluate the various functions of advertising. -Technology

Last Answer : Various functions of advertising are - it introduces a new product into the market, it helps distinguish a product from its competitors, through persistent message and associations, it creates a brand identity, it ... it creates new demand, it creates a buzz and keeps the idea of the product going.

Description : Why are aggregate functions called so? Name some aggregate functions. -Technology

Last Answer : Recruits support aggregate functions. These are ao called because they accept a record set and a field name as inputs and generate a single result. The supported aggregate functions are the following: 1) Count ... in rescel. By default they are applied to the totality of the records in a record set.

Description : What is Pivoting? Name any two functions of Pandas which support pivoting. -Technology

Last Answer : Pivoting means to use unique values from specifiedindex/columns to form apex of the resulting dataframe.Pivot() and pivot_table() methods

Description : Name SQL Single Row functions (for each of the following) that 1. returns a number. -Technology

Last Answer : (i) ASCII () function returns a number.(ii) LCASE () function returns lowercase letters .(iii) DAYNAME () function returns names of days.(iv) DAYOFWEEK () function returns weekday number

Description : Lakshmi works for a school. She wishes to create controls on a form for the following functions. -Technology

Last Answer : S.No.control used tocontrol1.Enter Admission numberText Field2.select StreamCombo Box3.select StreamCheck Box4.Clear the FromButton

Description : State any two differences between single row functions and multiple row functions. -Technology

Last Answer : Differences between single row functions and multiple row functions.(i) Single row functions work on one row only whereas multiple row functions group rows(ii) Single row functions return one output per row whereas multiple row functions return only one output for a specified group of rows.

Description : Write the SQL functions which will perform the following operations: (i) To display the name of the month of the current date . -Technology

Last Answer : (i) monthname(date(now()))(ii) trim(“ Panaroma “)(iii) dayname(date(dob))(iv) instr(name, fname)(v) mod(n1,n2)

Description : The ……… offers more than five times the storage capacity of traditional DVDs. (a) Compact disc (b) Pen drive (c) Blu_ray disc (d) Ext_DVD -Technology

Last Answer : c) Blu-ray disc can hold almost 5 times more data than a single layer DVD.

Description : Give the name of five Websites for locating someone online. -Technology

Last Answer : Facebook, WhitePages, SuperPages, Bing and Yahoo search.

Description : Give the name of five Websites for locating someone online. -Technology

Last Answer : Facebook, WhitePages, SuperPages, Bing and Yahoo search.

Description : Give five names of database templates used in MS_Access 2007. -Technology

Last Answer : Assets, Contacts, Events, Faculty and Issues.

Description : Give the names of five data types used in MS_Access. -Technology

Last Answer : Text, Memo, Date/Time, Yes/No and Currency.

Description : What is database template? Give the description of five templates, used in Microsoft Access 2007. -Technology

Last Answer : A template is a complete tracking application with predefined tables, forms, reports, queries, macros, and relationships. Each template creates a complete end-to-end solution that you can use ... to create a projects tracking database to track multiple projects and assign tasks to different people.

Description : Discuss the five fundamental categories, PMEST, with the help of suitable example. -Technology

Last Answer : P: Personality-the facet indicates the core point of the subject at handM: Matter-reflects substance or material of the subjectE: covers problem, action including methods, functioning, and other ... their subdivisions, continent, etc.Time: represents periods, like, years, decades, centuries, etc.

Description : Is it possible to prevent someone from copying the cell from your worksheet?

Last Answer : There are several ways to prevent someone from copying cells from your worksheet, depending on the specific software and platform you are using. Some of the most common methods include: Password ... foolproof and determined individuals may still be able to copy the data by using other methods.

Description : How can I pull data from one Excel worksheet to another based on matching Part Number?

Last Answer : answer:The Vlookup function is what you seek. Example: Book1 has a list of part numbers 1 2 3 4 5 Book2 has a list of part numbers,with product name 4 tchotchke 2 gizmo 5 trinket 3 thingy 1 doodad ... have to be in any particular order on either sheet. (if you use that FALSE argument at the end).

Description : The intersection of a worksheet column and row is a?

Last Answer : a "spread"

Description : What kind of documentation is allowed by MS - Excel default worksheet ( .xls) ?

Last Answer : MS-Excel allows creation of Worksheet (.xls) documents by default worksheet ( .xls ).

Description : where can i find a sequence worksheet?

Last Answer : Need Answer

Description : What is the quickest way to remove all the Filters that have been applied to a worksheet and nbsp and nbsp?

Last Answer : Need answer

Description : How do you add date in a worksheet?

Last Answer : Need answer

Description : In an Excel worksheet does a column typically contain information that is similar to a list?

Last Answer : Yes it does, like a field in a database.

Description : What do you do when your teacher gives you a worksheet that has nothing to do with what you learned?

Last Answer : Not doing it isn't really the appropriate option.If you believe the teacher handed out the wrong worksheet, askthem. If you didn't look at the worksheet until you got home, readit and try to figure ... starting a new unit.Put in an honest effort. Don't shrug the shoulders and give upso quickly.

Description : What is located under the ribbon and just above the worksheet grid?

Last Answer : The Formula Bar.

Description : What are the answers to E-17 worksheet?

Last Answer : Feel Free to Answer

Description : Where can I find Volume by Water Displacement worksheet answer key?

Last Answer : Feel Free to Answer

Description : What are the answers for chapter 6 Esperanza Rising worksheet?

Last Answer : Feel Free to Answer

Description : What ence for the cell located in the fourth column and third row of a worksheet?

Last Answer : The cell is D3 (column D, row 3).Don't know what ence in the question means