Program is a set of …….. -Technology

1 Answer

Answer :

Program is a set ofinstructions

Related questions

Description : ……. is an electronic device that manipulates information or data according to the set of instructions called program. -Technology

Last Answer : Computeris an electronic device that manipulates information or data according to the set of instructions called program.

Description : ………. is a computer program that provides services to other computer programs. -Technology

Last Answer : Server is a computer program that provides services to other computer programs.

Description : Which language processor converts an HLL program into machine language at once? -Technology

Last Answer : Compiler is a language processor which converts whole HLL program into machine language at once which can be understood by the processor.

Description : A search engine is a program to search (a) for information (b) Web pages -Technology

Last Answer : (d) A search engine is a software system that is designed to search for information on the Web pages.

Description : Which device is used to convert the program written in assembly language into machine language? (a) Interpreter -Technology

Last Answer : (c) Assembler is used to convert the program written in assembly language into machine language because it is a language processor that converts the user defined language into a form which can be easily understood by the computer.

Description : Which of the following is not related to a utility software? (a) Text editor (b) Antivirus program (c) Disk compression software -Technology

Last Answer : (d) Railway reservation system is an example of application software whereas, rest all are software utilities.

Description : ……….. is a software program that provides a user interface to work with the file system. -Technology

Last Answer : File manageris a software program that provides a user interface to work with the file system.

Description : Interpreter translates whole program at a time. -Technology

Last Answer : FalseInterpreter is a language processor which translates the whole program line-by-line.

Description : DBMS is a program that controls the creation, maintenance and use of database. Here, DBMS referred to -Technology

Last Answer : (c) Here, DBMS stands for Database Management System.

Description : Which program do you need to write HTML code? (a) Spreadsheet (b) Access -Technology

Last Answer : (c) From the given options, Notepad is useful program to write HTML code.

Description : Which is the first program that loads in memory? -Technology

Last Answer : Operating system is the first program that loads in computer’s main memory, when a computer is switched on.

Description : Real_time operating systems (a) are primarily used on mainframe computers (b) can respond quickly to an event (c) are used for program development -Technology

Last Answer : (b) Real-time operating systems can respond more quickly or predictably to an event than any other OS.

Description : ………… is a program that mediates between application programs and hardware. -Technology

Last Answer : Operating systemis a program that mediates between application programs and hardware.

Description : …………. is a program interface that enables a user to communicate with computer through graphics or symbols. -Technology

Last Answer : GUI (Graphical User Interface) is a program interface that enables a user to communicate with computer through graphics or symbols.

Description : Ram wants to create a text file to store name and roll number of his students. Suggest, which program he should use. -Technology

Last Answer : He can create a text file using Notepad or WordPad. Follow these steps to create a file using Notepad:(a) Step 1:Click Start.(b) Step 2:Choose All Programs -> Accessories -> Notepad.(c) Step 3: ... dialog box will appear.(g) Step 7:Give file name with extension.(h) Step 8: Click Save button.

Description : The ………….. shrinks the window and places it on the taskbar while, leaving the program running. -Technology

Last Answer : TheMinimize buttonshrinks the window and places it on the taskbar while, leaving the program running.

Description : A …….. is a virus that is often disguised as a useful computer program. -Technology

Last Answer : (a) Trojan horse is a virus, i.e. often disguised as a useful computer program.

Description : A ……. is a software program that is designed to copy itself from one computer to another, without human intervention. -Technology

Last Answer : (c) A worm is a self-replicating software program. It does not require another program to host it.

Description : A malicious program that is used to remove all information from your computer is known as ……… -Technology

Last Answer : A malicious program that is used to remove all information from your computer is known asthe sweeper.

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 : ……….. is a software program that is designed to copy itself from one computer to another. -Technology

Last Answer : Worm is a software program that is designed to copy itself from one computer to another.

Description : ……… is a computer program that detects, prevents and takes action to remove malicious software programs. -Technology

Last Answer : Antivirus is a computer program that detects, prevents and takes action to remove malicious software programs.

Description : A virus is a harmful program, which one entering a computer, starts creating copies of itself. -Technology

Last Answer : True Virus is a malicious program that is designed to make a system sick, just like a real virus.

Description : A worm is a self_replicating program which eats up the entire disk space. -Technology

Last Answer : False Virus eats up the entire disk space.

Description : Write a C program Reading and Writing data using Scanf() and Printf() statement -Technology

Last Answer : #include int main(){ char ch; char str[100]; printf('Enter any character '); scanf('%c', &ch); printf('Entered character is %c ', ch); printf('Enter any string ( upto 100 ... , str);}OUTPUT:Enter any characteraEntered character is aEnter any string ( upto 100 character )haiEntered string is hai

Description : Find the output of following program. -Technology

Last Answer : [40 50 60 70]

Description : Write a Numpy program to create a 3x3 identity matrix, i.e. diagonal elements are 1, the rest are 0. Replace all 0 to random number from 10 to 20 -Technology

Last Answer : import numpy as nparray1=np.identity(3)print(array1)x=np.where(array1==0)for i in x:array1[x]=np.random.randint(low=10,high=20)print(array1)

Description : Write a Numpy program to create a 3x3 identity matrix, i.e. non diagonal elements are 1, the rest are 0. Replace all 0 to random number from 1 to 10 -Technology

Last Answer : import numpy as npZ = np.arange(9).reshape(3,3)print (Z)x=np.where((Z%2)==0)for i in x:Z[x]=np.random.randint(low=10,high=20)print(Z)

Description : Write a numPy program to create a numPy array with all values as True printed 10 times. -Technology

Last Answer : This answer was deleted by our moderators...

Description : Consider a given Series , M1: Write a program in Python Pandas to create the series. -Technology

Last Answer : import pandas as pdm1=pd.Series([45,65,24,89],index=['term1','term2','t erm3','term4'])

Description : Write a program in Python Pandas to create the following DataFrame batsman from a Dictionary: B_NO Name Score1 Score2 -Technology

Last Answer : Alternative Answer

Description : The set of programs designed to perform user specific tasks is called application software. -Technology

Last Answer : TrueApplication software refers to the programs that perform operations for a specified task of a user.

Description : A set of related data item is called as ……………. -Technology

Last Answer : A set of related data item is called as record.

Description : Field contains set of characters. -Technology

Last Answer : True It is the individual sub-component of one record. It contains set of characters, which have a proper meaning.

Description : Which property should be set, if it is required that ‘Delhi’ is automatically -Technology

Last Answer : Default Value property should be set.

Description : If the data type of a field is set to Text, what will be its number range? -Technology

Last Answer : Its range will be 0 to 255.

Description : Write one example of data field for which you would set the Required property to Yes? -Technology

Last Answer : In a table, when we declare a field as a primary key, then the field’s Required property must be set to Yes because, in a primary key field, we need to enter data always.

Description : What is a primary key? How do we set a primary key? -Technology

Last Answer : Primary key is the key which is used to uniquely identify the records into the table. To set the primary key you have to follow the steps given below:Step 1 Select the field that you want ... 2 Click Primary Key button from the Design tab.orRight click on the selected field and select Primary Key.

Description : Define primary key. How do you set it in MS_Access? -Technology

Last Answer : Primary key is the key which is used to uniquely identify the records into the table. To set the primary key you have to follow the steps given below:Step 1 Select the field that you want ... 2 Click Primary Key button from the Design tab.orRight click on the selected field and select Primary Key.

Description : Microsoft Office Access 2007 includes a set of database ………… which are designed for specific business needs. -Technology

Last Answer : Microsoft Office Access 2007 includes a set of database templates which are designed for specific business needs.

Description : Write HTML code to set the image ‘Pen. jpg’ stored in ‘My Pictures’ folder in C: -Technology

Last Answer : The HTML code is .

Description : Write the HTML code to set the bgcolor as pink, heading level 2, text -Technology

Last Answer :

Description : ………. attribute of BODY tag helps to set background color. -Technology

Last Answer : bgcolorattribute of BODY tag helps to set background color.

Description : …………….. attribute is used to set the color of a link while it is active. (a) vlink (b) alink -Technology

Last Answer : (b) alink attribute is used to set the color of link while it is active.

Description : The attribute used to set the border color of a table is (a) border (b) bordercolor -Technology

Last Answer : (b) bordercolor is used to set the border color of a table.

Description : Which attribute of the < table > tag is used to set an image in the background of a table? -Technology

Last Answer : (b) background attribute is used to set an image in the background of a table.

Description : Naman wants to change the background image of his Laptop. 1. Can he set his image as wallpaper? -Technology

Last Answer : 1. Yes2. Label B E G A D F C

Description : Name two table attributes, which are used to set spacing in and between table cells. -Technology

Last Answer : The cell spacing and cellpadding are the attributes, which are used to set spacing in and between the table cells.

Description : The….. is an attribute of the < table > tag to set the distance between the cell content and its boundary. -Technology

Last Answer : Thecellpaddingis an attribute of the < table > tag to set the distance between the cell content and its boundary.

Description : To set image as background of an HTML table, you can use………………… attribute. -Technology

Last Answer : To set image as background of an HTML table, you can use backgroundattribute.