This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 12301. |
Which of the following is not a function of an operating system?a) File Management b) Memory Management c) Resource Management d) Database Management |
|
Answer» hope it HELPS |
|
| 12302. |
Discuss what does the cpu do when there are no programs to run? |
| Answer» | |
| 12303. |
Write a program to find the difference between the sum of the squares and the square of the sum of the first n natural numbers. |
|
Answer» This is the program. Hope it HELPS!! |
|
| 12304. |
Write a program to find factorial of a number in r using recursion. |
|
Answer» Explanation: Example: Find Factorial of a number using recursion. Here, we ask the USER for a number and use recursive function recur_factorial() to compute the product upto that number. Lets suppose the user PASSES 5 to the function. Inside the recur_factorial() , the number 5 is MULTIPLIED to the factorial of (5 – 1 = 4 |
|
| 12305. |
Write a program to find out the sum of series 1 + 2 + ............ + n. |
|
Answer» This is the PROGRAM for PRINTING SUM of the series. Hope It HELPS!! |
|
| 12306. |
Write a program to find out the largest and smallest number in an entered array without using sorting in php |
|
Answer» program to find out the largest and SMALLEST number in an ENTERED array WITHOUT using sorting in php |
|
| 12308. |
Type the following command in logo FD 40* 3 |
|
Answer» Answer: this is a command used in MSW logo. what is the command FD? FD is nothing but forward. FD is mentioned as a shortcut of forward. we need to type forward or fd and then the number of steps the turtle should move front. What happens when we give the command FD 40*3? when we give the command FD 40*3, the steps get multiplied, i.e. 40*3=120 steps and hence the turtle MOVES 120 steps forward. Extra INFO: backward: we can move the turtle backward also by giving the shortcut command bk and the number of steps. right: we can move the turtle towards right also by giving the shortcut command RT and the angle the turtle should turn right. left: we can move the turtle towards left by giving the shortcut command lt and the angle the turtle should turn left. |
|
| 12309. |
System.out.print(“BEST “); System.out.println(“OF LUCK”); Choose the correct option for the output of the above statements: |
|
Answer» Output: System.out.print() does not add a NEW line at the end because of which ‘OF LUCK’ gets printed on the same line as ‘BEST’. |
|
| 12310. |
Which speaker label is correct? |
|
Answer» Answer: The correct label for a speaker is Speaker 1: FORMAT for a label is speaker name in BOLDS followed by a 'colon' and after the colon the sentence which the speaker is currently speaking. hope it helps you out Stay BLESSED pls MARK me as brainliest |
|
| 12311. |
Combination of the characters that allows to access a computer? |
|
Answer» Everything represented by a COMPUTER is represented by BINARY SEQUENCES. A common non-integer to be represented is a character. ... A standard code ASCII (American Standard for Computer Information INTERCHANGE) defines what character is represented by each sequence |
|
| 12312. |
Differencebetween machine language and high level language |
|
Answer» Answer: The difference between High level language and Machine language. Explanation: High level language :
A high-level language is a programming language that uses English and mathematical symbols, like +, -, % and many others, in its instructions. When using the term 'programming languages,' most people are actually referring to high-level languages. High-level languages are the languages most often used by programmers to write programs. Examples of high-level languages are C++, Fortran, Java and Python. To get a flavor of what a high-level language actually looks like, consider an ATM machine where someone wants to make a withdrawal of $100. This amount needs to be compared to the account balance to make sure there are enough funds. The instruction in a high-level computer language would look something like this: x = 100 x = 100if balance x: x = 100if balance x: print 'Insufficient balance' x = 100if balance x: print 'Insufficient balance'else: print 'Please take your money' This is not exactly how real people COMMUNICATE, but it is much easier to FOLLOW than a series of 1s and 0s in binary code. There are a number of advantages to high-level languages. The FIRST advantage is that high-level languages are much closer to the logic of a human language. A high-level language uses a set of rules that dictate how words and symbols can be put together to form a program. LEARNING a high-level language is not unlike learning another human language - you need to learn vocabulary and grammar so you can make sentences. To learn a programming language, you need to learn commands, syntax and logic, which correspond closely to vocabulary and grammar. The second advantage is that the code of most high-level languages is portable and the same code can run on different hardware. Both machine code and assembly languages are hardware specific and not portable. This means that the machine code used to run a program on one specific computer needs to be modified to run on another computer. Portable code in a high-level language can run on multiple computer SYSTEMS without modification. However, modifications to code in high-level languages may be necessary because of the operating system. For example, programs written for Windows typically don't run on a Mac.
Machine language :Machine language, or machine code, consists of binary code and is the only language that is directly understood by the computer. ... Both machine code and assembly languages are hardware specific. I HOPE YOU UNDERSTAND THE DIFFERENCE BETWEEN MACHINE LANGUAGE AND HIGH LEVEL LANGUAGE. |
|
| 12313. |
Write a program to determine whether the entered character is in uppercase or lowercase, or is an invalid character. |
Answer» Language-used:Python ProgramCHAR = input("Enter a character") if ord(char) >= 65 or ord(char) <= 90: print(char," is upper-CASE") elif ord(char) >= 97 or ord(char) <= 112: print(char," is lower-case") else: print(char," is invalid character") # 65 - 90(CAPS) # 97 - 112 (SMALLS) Output:Enter a character Z 90 Explanation
------HOPE this help :) |
|
| 12314. |
Write a program to input a number and check and print whether it is a Pronic number or not.Pronic number is the number which is the product of two consecutive integers.Examples: 12 = 3 × 4 20 = 4 × 5 42 = 6 × 7 |
|
Answer» Answer: As U have not SPECIFIED the programming LANGUAGE,I will go with C++. Here's UR answer:Refer the image. Hope it helps Explanation: |
|
| 12315. |
Write a program to create a class called box and calculate its volume by calling its method. |
|
Answer» import java.util. *; class box { public double volume(double x, double y, double z) { double vol=x*y*z; RETURN vol; } public VOID main () { Scanner sc=new Scanner (System.in); System.out.println ("Enter LENGTH, breadth and height") ; double l=sc.nextDouble(); double b=sc.nextDouble(); double H=sc.nextDouble(); System.out.println ("Volume =" +volume(l, b, h)) ; } } |
|
| 12316. |
Write a program to input a string and print the character which occurs the manumber of times within the string.Sample Input : James Gosling developed JavaSample Output : The character with maximum number of times: e |
|
Answer» Go through the pics,it contains 2-parts and 1 output. It take about 2-3 hours for me to think the logic of it,finally I am able to do so as I promised till 6 A.m. Pls compile it and ask it again if you not GOT,I love to code java and LEARN java. Mark me brainlest only if your program runs and compile correctly and GAVE desired RESULT. |
|
| 12317. |
Explain the various parts and cables of computer system |
|
Answer» Answer: there are TWO MAIN TYPES of COMPUTER CABLE the data cable and a power cable. the data cable is a cable that provides communication between devices. |
|
| 12318. |
Favouar of thomas alva edison two lines |
|
Answer» Answer: THOMAS ALVA EDISON WAS THE FOUNDER OF BULB. HE WAS NOT VERY INTELLIGENT IN HIS CHOICE BUT MADE MANY INVENTIONS. PLEASE FOLLOW ME ❤❤❤❤ |
|
| 12319. |
Write a program to copy from one file to another. Input and output format: refer sample input and output for formatting specifications. All text in bold corresponds to input and the rest corresponds to output. |
|
Answer» a Explanation: |
|
| 12320. |
Write a program to count the number of times a character appears in the file. (case insensitive... 'a' and 'a' are considered to be the same) input and output format: refer sample input and output for formatting specifications. All text in bold corresponds to input and the rest corresponds to output. Sample input and output: enter the file name |
|
Answer» a Explanation: |
|
| 12321. |
Write a program to compute product of two matrices using strassen multiplication algorithm. Here the dimensions of matrices must be a power of 2. |
|
Answer» Explanation: algorithm to multiply two matrices. This is a program to compute product of two matrices using STRASSEN Multiplication algorithm. Here the dimensions of matrices must be a power of 2. Here is the source code of the C program to multiply 2*2 matrices using Strassen’s algorithm. The C program is successfully compiled and run on a LINUX system. The program output is ALSO shown below. /* C code of two 2 by 2 matrix multiplication using Strassen's algorithm */ #include int main(){ int a[2][2], b[2][2], c[2][2], i, j; int m1, m2, m3, m4 , m5, m6, m7;
printf("Enter the 4 elements of first matrix: "); for(i = 0;i < 2; i++) for(j = 0;j < 2; j++) SCANF("%d", &a[i][j]);
printf("Enter the 4 elements of second matrix: "); for(i = 0; i < 2; i++) for(j = 0;j < 2; j++) scanf("%d", &b[i][j]);
printf("\nThe first matrix is\n"); for(i = 0; i < 2; i++){ printf("\n"); for(j = 0; j < 2; j++) printf("%d\t", a[i][j]); }
printf("\nThe second matrix is\n"); for(i = 0;i < 2; i++){ printf("\n"); for(j = 0;j < 2; j++) printf("%d\t", b[i][j]); }
m1= (a[0][0] + a[1][1]) * (b[0][0] + b[1][1]); m2= (a[1][0] + a[1][1]) * b[0][0]; m3= a[0][0] * (b[0][1] - b[1][1]); m4= a[1][1] * (b[1][0] - b[0][0]); m5= (a[0][0] + a[0][1]) * b[1][1]; m6= (a[1][0] - a[0][0]) * (b[0][0]+b[0][1]); m7= (a[0][1] - a[1][1]) * (b[1][0]+b[1][1]);
c[0][0] = m1 + m4- m5 + m7; c[0][1] = m3 + m5; c[1][0] = m2 + m4; c[1][1] = m1 - m2 + m3 + m6;
printf("\nAfter multiplication using Strassen's algorithm \n"); for(i = 0; i < 2 ; i++){ printf("\n"); for(j = 0;j < 2; j++) printf("%d\t", c[i][j]); }
return 0; } |
|
| 12322. |
Write a program to check whether a entered character is lowercase ( a to z ) or uppercase ( a to z ). |
|
Answer» Follow me. Mark me BRAINLEST. |
|
| 12323. |
Give some important features of Linux and also do comparison of Linux with windows |
|
Answer» Open Source Multi-User Multiprogramming Hierarchical File System |
|
| 12325. |
Discuss the functioning of a web browser and web server |
|
Answer» Answer:A WEB BROWSER is an application software that is used to present or RECEIVE resources that is traversing through the World Wide Web (www). An information RESOURCE can be images, videos, web pages or any other content identified by URL. Browsers plays the client side interface role in Client Server ARCHITECTURE. |
|
| 12326. |
How many ways you can save a document?कितने तरीकों से आप एक दस्तावेज़ बचा सकते है?Select one:० ३.56.3 |
|
Answer» Answer: 1. CLICK on FILE menu and click SAVE as. 2. The save as dialog BOX appears. 3.Click any location of your computer in which you have to save your document. 4. WRITE your documents name or any name which you want to save your document with. 5. Next press save option. The document gets saved. Hope it helps you. |
|
| 12327. |
To print the series in java- 0,3,8,15.....upto n terms |
|
Answer» import java.io.*; import java.util.Scanner; import java.math.*; import java.lang.*; PUBLIC class ap { public static VOID main(String []args) { Scanner in = NEW Scanner(System.in); double AP; int a,N,d; a=a, d=a; n=a; #in place of "a" input your desired values. AP=a+(n-1)*d; System.out.println("Arithmetic PROGRESSION is :"+AP); } } |
|
| 12329. |
Write a program multithread program to display bca at the interval of 2 second |
|
Answer» Answer: WRITE a SERVLET PROGRAM to CHANGE inactive TIME INTERVAL of .... Write a Multithreading program in java to display the ..... DemoT d1=new DemoT("SECOND",td) |
|
| 12330. |
Write a program that implements the multilayer perceptron network for various activation functions like sigmoid softmax relu tanh plot loss |
|
Answer» a Explanation: |
|
| 12331. |
How self management is different from management |
|
Answer» Explanation: What are self management skills? Self management sounds like being your own boss, but it doesn’t mean setting up your own business. In fact it means TAKING responsibility for your own ACTIONS and doing things as well as you can. It shows you are able to ORGANISE yourself and offer your own ideas to any project. It’s about being the boss of YOU, not the boss of a team or company! |
|
| 12332. |
Kitne tarikh ko se aap dastavej bacha sakte hain |
|
Answer» Answer: |
|
| 12333. |
Is it possible that computers can be made at home anyone tried it |
Answer» ANSWER
|
|
| 12334. |
What is wifi ,can it be made at home |
|
Answer» Answer: Homemade RECEIVERS can boost your Wi-Fi signal reception with the application of a little science. Radio waves, like those used in Wi-Fi, degrade over DISTANCE and when passing through obstacles; they also REFLECT off of METAL. A Wi-Fi signal receiver can be any kind of metal surrounding your Wi-Fi antenna to help bounce the radio waves toward it. You can use a metal food can or a foil-lined chip canister to make your signal receiver. |
|
| 12335. |
Write a program in c# to find fibonacci series upto 20 terms |
|
Answer» a Explanation: |
|
| 12336. |
Write a program in c to find greatest of three numbers using if else statements |
|
Answer» Explanation: The program output is also shown below. * C program to find the BIGGEST of three numbers. int num1, NUM2, num3; printf("ENTER the VALUES of num1, num2 and num3\n"); SCANF("%d %d %d", &num1, &num2, &num3); printf("num1 = %d\tnum2 = %d\tnum3 = %d\n", num1, num2, num3); if (num1 > num2) if (num1 > num3) |
|
| 12337. |
Write a program in c that implements two stack using single array. Both stack should be able to work simultaneously. |
|
Answer» Answer: Explanation: C Program to Implement two Stacks using a Single Array & Check for Overflow & Underflow This C Program Implements two Stacks using a Single Array & Check for Overflow & Underflow. A Stack is a linear data structure in which a data item is inserted and deleted at one record. A stack is called a Last In FIRST Out (LIFO) structure. Because the data item inserted last is the data item deleted first from the stack. To implement two stacks in one array, there can be two methods. First is to divide the array in to two equal parts and then give one half two each stack. But this method wastes space. So a better way is to let the two stacks to push elements by comparing tops of each other, and not up to one half of the array. Push and Pop functions of both stack in the following code has their Time Complexity as O(1). They take constant time. Print is O(n), where n is the number of elements in the stack. The program has an array of size 10. 6 values are pushed in stack 1 and 4 in two. All conditions are being checked. Here is SOURCE code of the C Program to Implement two Stacks using a Single Array & Check for Overflow & Underflow. The C program is successfully compiled and run on GCC-4.3.2 on a Linux system. The program OUTPUT is also shown below. //This is a C Program to Implement two Stacks using a Single Array & Check for Overflow & Underflow #include #define SIZE 10
int ar[SIZE]; int top1 = -1; int top2 = SIZE;
//Functions to push data void push_stack1 (int data) { if (top1 < top2 - 1) { ar[++top1] = data; } else { printf ("Stack Full! Cannot Push\n"); } } void push_stack2 (int data) { if (top1 < top2 - 1) { ar[--top2] = data; } else { printf ("Stack Full! Cannot Push\n"); } }
//Functions to pop data void pop_stack1 () { if (top1 >= 0) { int popped_value = ar[top1--]; printf ("%d is being popped from Stack 1\n", popped_value); } else { printf ("Stack Empty! Cannot Pop\n"); } } void pop_stack2 () { if (top2 < SIZE) { int popped_value = ar[top2++]; printf ("%d is being popped from Stack 2\n", popped_value); } else { printf ("Stack Empty! Cannot Pop\n"); } }
//Functions to Print Stack 1 and Stack 2 void print_stack1 () { int i; for (i = top1; i >= 0; --i) { printf ("%d ", ar[i]); } printf ("\n"); } void print_stack2 () { int i; for (i = top2; i < SIZE; ++i) { printf ("%d ", ar[i]); } printf ("\n"); }
int main() { int ar[SIZE]; int i; int num_of_ele;
printf ("We can push a total of 10 values\n");
//Number of elements pushed in stack 1 is 6 //Number of elements pushed in stack 2 is 4
for (i = 1; i <= 6; ++i) { push_stack1 (i); printf ("Value Pushed in Stack 1 is %d\n", i); } for (i = 1; i <= 4; ++i) { push_stack2 (i); printf ("Value Pushed in Stack 2 is %d\n", i); }
//Print Both Stacks print_stack1 (); print_stack2 ();
//Pushing on Stack Full printf ("Pushing Value in Stack 1 is %d\n", 11); push_stack1 (11);
//Popping All Elements From Stack 1 num_of_ele = top1 + 1; while (num_of_ele) { pop_stack1 (); --num_of_ele; }
//Trying to Pop From Empty Stack pop_stack1 ();
return 0; } Output : gcc TwoStacksSingleArray.c ./a.out We can push a total of 10 values Value Pushed in Stack 1 is 1 Value Pushed in Stack 1 is 2 Value Pushed in Stack 1 is 3 Value Pushed in Stack 1 is 4 Value Pushed in Stack 1 is 5 Value Pushed in Stack 1 is 6 Value Pushed in Stack 2 is 1 Value Pushed in Stack 2 is 2 Value Pushed in Stack 2 is 3 Value Pushed in Stack 2 is 4 6 5 4 3 2 1 4 3 2 1 Pushing Value in Stack 1 is 11 Stack Full! Cannot Push 6 is being popped from Stack 1 5 is being popped from Stack 1 4 is being popped from Stack 1 3 is being popped from Stack 1 2 is being popped from Stack 1 1 is being popped from Stack 1 Stack Empty! Cannot Pop |
|
| 12338. |
Write a program in c language to get area and perimeter of rectangle |
|
Answer» Answer: To FIND the area of RECTANGLE we multiply it's Length and Width. To find the perimeter of a rectangle, we should add the length of all four SIDES of rectangle. As OPPOSITE sides of a rectangle are equal we can calculate perimeter of rectangle as follows: Perimeter of Rectangle = 2 X (L + W) |
|
| 12339. |
Viruses can spread through a)external source b)CD only c) floppy only d) pen drive only |
|
Answer» a) EXTERNAL source mark it BRAINLIEST |
|
| 12340. |
What do you know about header in Microsoft Word? |
|
Answer» Answer: header FEATURE is usually used in word when you need same text to APPEAR on TOP of each page. it is often used for numbering pages on the top or to print current DATE and TIME |
|
| 12341. |
Define information system. What are the main dimensions of information system |
| Answer» | |
| 12342. |
Write a program for the ds89c420 to toggle all the bits of p0, p1, and p2 every 1/4 of a second |
| Answer» | |
| 12343. |
Write a programe to find sum and mean of any ten numbers |
|
Answer» I hope it's helpful: Explanation: CLASS abc { public void main() { int i, s=0; double mean=0.0; for(i=1;i<=10;i++) { s=s+i; } mean=(s*1.0)/10; System.out.println("Sum=" +s) ; System.out.println("Mean="+mean); } } |
|
| 12344. |
Write a program in basic to calculate the average of three numbers |
|
Answer» Explanation: C program to CALCULATE SUM and average of three numbers: #include int main () { int a, b, c; printf("Enter three numbers: "); scanf("%d %d %d", &a, &b, &c); int sum = a + b + c; printf("Sum = %d, Average = %f", sum, avg); |
|
| 12345. |
Difference between project metrics and process metrics |
|
Answer» PRODUCT metrics: It describes the characteristics of the product such as SIZE, compatibility, DESIGN features, performance and quality LEVEL. Process metrics: It can be used to improve efficiency of an EXISTING process used in software development and maintenance. |
|
| 12346. |
Difference between packet switching and message switching |
|
Answer» Answer: Circuit Switching Packet Switching In circuit switching there are 3 phases i) Connection ESTABLISHMENT. ii) Data Transfer. iii) Connection Released. In Packet switching directly data transfer takes place . In circuit switching, each data unit know the entire path address which is provided by the source In Packet switching, each data unit just know the final destination address intermediate path is DECIDED by the routers. In Circuit switching, data is processed at source system only In Packet switching, data is processed at all intermediate node including source system. Delay between data units in circuit switching is uniform. Delay between data units in packet switching is not uniform. RESOURCE reservation is the feature of circuit switching because path is fixed for data TRANSMISSION. There is no resource reservation because bandwidth is shared among users. Circuit switching is more reliable. Packet switching is less reliable. Wastage of resources are more in Circuit Switching Less wastage of resources as compared to Circuit Switching It is not a store and forward technique. It is a store and forward technique. Transmission of the data is done by the source Transmission of the data is done not only by the source, but also by the intermediate routers Congestion can occur during connection establishment time Congestion can occur during data transfer phase |
|
| 12347. |
Arithmetic logic unit in computer architecture for varies function |
|
Answer» There are 5 basis components of computer, which helps computer system to run properly without any interruption. A computer system is designed in such a way that, every byte of information inputted should be processed properly, Such that user should get the required output. A computer system data transferring is very fast and efficient, so it takes a time less than a second to process and show the output. The units of computer are very important for running computer system properly. The information transferring in a computer system is done by binary CODES. Computers can understand only 0,1. There is a particular binary code for each of the letter, symbol, number. This numbers are converted by computer's Arithmetic Logic unit. To understand the working of computer is not easy, If we show it with the help of it's units and functions, then it will be easy to understand. 5 Basics components of computer:i) Input Unit Data and instructions should be first enter in the computer system to get the task done. Without entering any input in the computer system, computer cannot do any task and any function. Eg: If we MOVE our "mouse" from one position to other, then the data in the form of input is sent to the computer unit and processor. Processor processes the information and gives us the result. To know, where we are browsing, there is inbuilt function of mouse, this helps users to know where the mouse CURSOR is. Suppose you click on start menu in computer using your mouse, then the information in the form of binary code is sent to the processor. Processor gives the output on the monitor. And, hence we can see our start menu. - Input units READS the data provided from external environment. - This data in the form of binary code is sent to the computer unit. - Computer unit processes the information and provides the necessary output to the user. ii) Output unitThe output unit is reverse of the input unit. When the processor sends the output to the output unit. Then the output unit converts the information provided by computer system from binary language to humans language. In this process, data is sent in external environment like monitor and sound. Eg: When input units send the request of opening any webpage to computer system, computer system loads the webpage in memory and it is later provided to output unit. And hence, output unit like monitor can provide us the webpage interface. - It accepts the information provided by computer system in binary codes. - But, we humans can't understand that language, So, Output unit converts the information from binary language to Humans language. - Output unit includes Monitor, Sound system etc. iii) Storage unitWhen the data and instructions are entered in the computer system using input system, the computer stores that data before processing it and giving it to processor. When the computer processes our data and instructions, then it provides this data to the output unit. But, the provided data is also stored in somewhere in the computer system; To perform this all works and functions, Storage unit of a computer system has been designed. - Storing the data and information in memory provided to output unit as a history. - Processing the files required to output unit while using programs, applications and games from storage devices. IV) Central processing unit (CPU)CPU is the most important component of the computer system. It controls the all internal and external devices and their functions. Parts like motherboard, ram, storage device, processors are present in this CPU. CPU performs all the Arithmetic and Logical operations of computer. In short, The control Unit and the Arithmetic and Logic unit of a computer system joined together is called as "Central Processing Unit". - Arithmetic logical unit and Logical unit are the important components of this system. - Architecture of computer is designed in this CPU, such that, only supported devices can perform the operations. Like CPU designed by IBM cannot be used to run Mac OS. V) Arithmetic and Logic unit (ALU)All calculations, comparisons, processing and tasks are done in ALU. It consists of CIRCUITS in which arithmetic operations like addition, subtraction, multiplication etc are performed. While processing the data, ALU receives the data from the temporary storage. In temporary storage, their is a function called as "register". This register is very high speed memory which controls all the functions and provides the data to the ALU. - ALU is an important component of CPU. - ALU receives the data for processing from the temporary storage from the files called as "registers". - All processing and computations are done by the ALU. Learn more: Computer - Uses, Advantages, Structure and Organisation -brainly.in/question/4176835 Artificial Intelligence - It's uses, Advantages and Disadvantages, Applications, It's working and Machine Learning - brainly.in/question/14024876 |
|
| 12348. |
Artificial intelligence, robotics and computational fluid dynamics |
|
Answer» what is the QUESTION... |
|
| 12349. |
Define wamp server and its fetaures and applications |
|
Answer» Answer: Explanation: Wamp Server refers to a solution stack for the Microsoft Windows operating system, created by Romain BOURDON and consisting of the Apache web server, OpenSSL for SSL support, MySQL database and PHP programming language. preconfigured WAMP-System with Apache, PHP, MySQL, PHPMYADMIN, Mercury/32 Mail-Server and SQLite. Equally useful for developers as for PRODUCTIVE usagee thanks to switchable settings between security- and developer-functionality. WampServer is a Web DEVELOPMENT platform on Windows that allows you to create DYNAMIC Web applications with Apache2, PHP, MySQL and MariaDB. WampServer automatically installs everything you need to intuitively develope Web applications. You will be able to tune your server without even touching its setting files. |
|
| 12350. |
Prepare a project on operating system its services types benefits function etc |
|
Answer» Answer: OS Operating System is one of the most critical complexes tough to UNDERSTAND programmed software. Among the software there are different CATEGORIES, they are like Application software, Utility software and System software. The OS comes under the category of System software. Explanation: When there is the hardware of system built, then in order to make the computer usable and understandable for the general public, it needs to get the OS installed in it, which manages the functioning which is dependent on the TYPE of service the computer is GOING to provide. |
|