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

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