what is software?
Answers were Sorted based on User's Feedback
Answer / janardhan
Software means computer instructions or data. Anything that can be stored electronically is a software.
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / ganesh
software is a collection of
programs or instruction that are
used to some purpose.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / sagar pudi
software is a set of programs together to accomplish a task.
for example: Notepad is a software.
a Browser is a software.
a Website is a software.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / anusha
software is a set of instructions given to the system to
run the program
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / ajay
Software is a set instruction given to a system which makes
it easy for the user to do a particular task.
Which would be easy and time saving.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / dhana lakshmi
storing the data electronically is called software.
| Is This Answer Correct ? | 2 Yes | 5 No |
What is the use of getchar() function?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
How reliable are floating-point comparisons?
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
can we initialize all the members of union?
How to print India by nested loop? I IN IND INDI INDIA
What is a spanning Tree?
Question 1: You want to conduct a survey within your classroom, on the quality of canteen’s food. You ask each of your class fellows to rank the quality of food between 1 and 5 (1 representing excellent quality and 5 representing worst quality). During the survey, you make a list containing the roll# of student and the opinion given by that student. The list can be as follow Roll # Opinion 234 1 235 1 236 5 237 1 238 2 239 3 240 5 241 5 242 1 To get the results of the survey, you need to determine the frequency of each opinion value. The frequency of an opinion is determined by counting the number of students giving that opinion. For example, for the above list the frequency of opinion value 1 is 4 and frequency of opinion value 4 is 0. After getting the frequency of each opinion, you can easily judge about the quality of the food by seeing through the frequency of each opinion. You need to develop a program to calculate the results of this survey. The program inputs the opinion of 50 students and counts the frequency of each opinion. It then displays a report showing the frequency of each opinion. Sample output: Opinion Frequency Remarks 1 5 Excellent 2 10 Good 3 15 Normal 4 10 Bad 5 10 Really bad
1 1 2 1 2 3 1 2 3 4 1 2 3 1 2 1 generate this output using for loop
What are the types of pointers in c?
How do we print only part of a string in c?