A virtual machine (VM) is a virtual environment which functions as a virtual computer system with its own CPU, memory, network interface, and storage, created on a physical hardware system. VMs are isolated from the rest of the system, and multiple VMs can exist on a single piece of hardware, like a server. That means, … Continue reading Virtual Machines
Uncategorized
Reset your password in windows 8
Step 1: Boot your Windows 8 iso in any pendrive Step 2: Boot into your pc. Step 3: You can see the installation pop up. Now click 'repair your computer' option. Step 4: Now click troubleshoot option and then click advanced options. Step 5: Next click Command Prompt option. Step 6: The commands are c: … Continue reading Reset your password in windows 8
Asymptotic Notations and its properties
Asymptotic Notations Asymptotic notations are used to represent the complexities of algorithms for asymptotic analysis. These notations are mathematical tools to represent the complexities. There are three notations that are commonly used. Big Oh NotationBig Omega NotationBig Theta Notation Big Oh Notation Big-Oh (O) notation gives an upper bound for a function f(n) to within … Continue reading Asymptotic Notations and its properties
Spiral Model
Spiral model is one of the most important Software Development Life Cycle models, which provides support for Risk Handling. In its diagrammatic representation, it looks like a spiral with many loops. The exact number of loops of the spiral is unknown and can vary from project to project. Each loop of the spiral is called a Phase of … Continue reading Spiral Model
Operating System Generations
Operating Systems have evolved over the years. So, their evolution through the years can be mapped using generations of operating systems. There are four generations of operating systems. These can be described as follows − The First Generation ( 1945 - 1955 ): Vacuum Tubes and Plugboards Digital computers were not constructed until the second … Continue reading Operating System Generations
Multiprocessor Systems
A multiprocessor is a data processing system that can execute more than one program or more than one arithmetic operation simultaneously. It is also known as a multiprocessing system. Multiprocessor uses with more than one processor and is similar to multiprogramming that allows multiple threads to be used for a single procedure. The term ‘multiprocessor’ … Continue reading Multiprocessor Systems
Operating System Operations
An operating system is a construct that allows the user application programs to interact with the system hardware. Operating system by itself does not provide any function but it provides an atmosphere in which different applications and programs can do useful work. The major operations of the operating system are process management, memory management, device … Continue reading Operating System Operations
Test Blog
link
Bubble Sort
Program: #include <stdio.h> int main(){ int arr[50], num, x, y, temp; clrscr(); printf("Please Enter the Number of Elements you want in the array: "); scanf("%d", &num); printf("Please Enter the Value of Elements: "); for(x = 0; x < num; x++) scanf("%d", &arr[x]); for(x = 0; x < num - 1; x++){ for(y = 0; y … Continue reading Bubble Sort
List ADT
Program: #include<stdio.h> #include<conio.h> #define MAX 10 void create(); void search(); void traverse(); int a,b[20], n, p, e, f, i, pos; void main() { int ch; char g='y'; clrscr(); do { printf("\n Main Menu"); printf("\n 1.Create \n 2.Search \n 3.Traverse \n 4.Exit"); printf("\n Enter your Choice: "); scanf("%d", &ch); switch(ch) { case 1: create(); break; case … Continue reading List ADT