Wednesday, May 30, 2012

How To Delete Administrator Password Without Any Software?

Hello friends today i'm discussing methods to delete administrator password without any software ,just read it carefully and make your life wonderfull.



Method 1:

Boot up with DOS and delete the sam.exe and sam.log files from Windows\system32\config in your hard drive. Now when you boot up in NT the password on your built-in administrator account which will be blank (i.e No password). This solution works only if your hard drive is FAT kind.


Method 2:

1)Put your hard disk of your computer in any other pc .

2)Boot that computer and use your hard disk as a secondary hard disk (D'nt boot as primary hard disk ).

3)Then open that drive in which the victim’s window(or your window) is installed.
4)Go to location windows->system32->configAnd delete SAM.exe and SAM.log

5)Now remove hard disk and put in your computer And boot your computer .




******Thanks Friends*****

Secret Code For Nokia


Hello friends today i'm sharing some secret code for nokia,these are important for all of you,try it.


1) *#06# For checking IMEI(international Mobile Equipment Identity)

2) *#7780# Reset to factory settings

3) *#0000# To view software version

4) *#2820# Bluetooth device address

5) #pw+1234567890+1# Shows if ur sim as any restrictions




Thanks Friends..........

Sunday, May 27, 2012

How To Determine If FAT32 Is Enabled?







Friends,if you want to determine that FAT32 is enabled or not,open My Computer and highlight the drive you would like to see is using FAT32, once highlighted, click on the drive with your right mouse button and click Properties. If the File system indicates FAT then the hard drive you selected is running FAT16.


FAT32 is only available in Windows 95 ,Windows 98 and Windows 2000.








        ******Thanks friends*******

Friday, May 25, 2012

C Program That Convert any Binary Number To Hexadecimal Number




Hello friends,today i'm sharing a program that convert any binary number to hexadecimal number,i  try to make this code very easy to all of you,i hope you can easily understand it.If you feel any difficulty than share with me.




#include<stdio.h>
#include<conio.h>
#include<math.h>
#include<ctype.h>
void main()
{
int number,sum=0,rem,x,n,arr[100],i,j,t;
clrscr();
printf("\n\n\n Enter any binary number:");
scanf("%d",&n);
number=n;
x=0;
while(number!=0)
{
rem=number%10;
sum=sum+(rem*pow(2,x));
x++;
number=number/10;
}
i=0;
while(sum!=0)
{
t=sum%16;
if(t>=0&&t<=9)
arr[i]=t;
else if(t==10)
arr[i]='A';
else if(t==11)
arr[i]='B';
else if(t==12)
arr[i]='C';
else if(t==13)
arr[i]='D';
else if(t==14)
arr[i]='E';
else if(t==15)
arr[i]='F';
i++;
sum=sum/16;
}
printf("\n\n\n hexadecimal number of binary number %d is:",n);
for(j=i-1;j>=0;j--)
{
if(isalpha(arr[j]))
printf("%c ",arr[j]);
else
printf("%d ",arr[j]);
}
getch();
}









Thanks Friends.......

C Program That Convert Any Binary Number To Octal Number


Hello friends how are you?enjoying your life or not?today i'm sharing an interesting program with all of you,coding is very simple and you can easily understand it.If you think that this code is little bit long than share another code with me.




#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
int number,sum=0,rem,x,n,arr[100],i,j;
clrscr();
printf("\n\n\n Enter any binary number:");
scanf("%d",&n);
number=n;
x=0;
while(number!=0)
{
rem=number%10;
sum=sum+(rem*pow(2,x));
x++;
number=number/10;
}
i=0;
while(sum!=0)
{
arr[i]=sum%8;
i++;
sum=sum/8;
}
printf("\n\n\n Octal number of binary number %d is:",n);
for(j=i-1;j>=0;j--)
printf(" %d",arr[j]);
getch();
}









Thanks Friends>>>>>>

C Program That Convert The Binary Number To Decimal Number




Hello guys,today i'm sharing a program that convert any binary number to decimal number.Just go through this code and try to understand it,i'm sure that you will not face any problem while reading it.




#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
int number,sum=0,rem,x,n;
clrscr();
printf("\n\n\n Enter any binary number:");
scanf("%d",&n);
number=n;
x=0;
while(number!=0)
{
rem=number%10;
sum=sum+(rem*pow(2,x));
x++;
number=number/10;
}
printf("\n\n\ndecimal number of binary num %d is %d",n,sum);
getch();
}






********Thanks Friends********

What Is Back-end?





Hello friends,A task or operation being performed in the background without the user being aware of it is sometimes referred to as a back-end task.





      Thanks Friends....

Wednesday, May 23, 2012

What Is Argument?




Hello friends in programming or the command line an argument is a value that is passed into a command, function, or routine. In the below example, "myfile.txt" is the argument for the edit command.


edit myfile.txt


Thanks Friends.......

What Is ASCII?

Hello friends,ASCII(American Standard Code for Information Interexchange) is an industry standard, which assigns letters, numbers, and other characters within the 256 slots available in the 8-bit code.


The ASCII table is divided in 3 sections:

  • Non printable: This table contain  system codes between 0 and 31.

  • Lower ASCII: This table is generated from older American Standard with work on 7 bit code and contain characters between 32 and 127..

  • Higher ASCII: This portion is programmable, Foreign letters are also placed in this section.This table contain characters between 128 and 255.


******Thanks friends******

What Is Associative Operation?



Hello friends,in programming, an associative operation occurs when no grouping is present, where operators that have the same precedence (addition and subtraction) will be evaluated either from left to right (left-associative) or from right to left (right-associative).


For example:If no grouping(parentheses) is present than
4-3+1 give the result 2 because here we start calculation from left but if grouping is present ie 4-(3+1) then result is 0 because we first calculate (3+1).


In most programming languages, the addition, subtraction, multiplication, and division operators are left-associative, while the assignment, conditional, and exponentiation operators are right associative.




Thanks Friends........

What Is Applet?





Friends,  Applet is a small program that does a job a larger program is incapable of doing. For  instance,a Sun Java applet is a file on an Internet web page that provides additional functionality not supported by HTML.


Thanks Friends.......

What is API?



Hello friends how are you ?I know that you all are pretty well.Today i am sharing some important details about API,i hope you really enjoying it.

API(Application Program Interface) is a set of routines, protocols, and tools for building software applications. APIs allow programmers easier entry into another companies program or service. For example, large companies and communities such as Facebook and Twitter have APIs that allow programmers or website developers easier access to their services and members.



Thanks Friends.......

Sunday, May 20, 2012

C Program That Print An Amazing Pattern Using Binary Numbers


Hello friends,how are you????Enjoying my blogs or not??Today i'm sharing an interesting program i know you will take enjoy when read this code,i try to make this code very easy specialy for all of you.....



 1                       1
 1 0                   1 0
 1 0 1               1 0 1
 1 0 1 0           1 0 1 0
 1 0 1 0 1       1 0 1 0 1
 1 0 1 0 1 0   1 0 1 0 1 0
 1 0 1 0 1 0 1 0 1 0 1 0 1
 1 0 1 0 1 0   1 0 1 0 1 0
 1 0 1 0 1       1 0 1 0 1
 1 0 1 0           1 0 1 0
 1 0 1               1 0 1
 1 0                   1 0
 1                       1




#include<stdio.h>
#include<conio.h>
int main()
{
int i,j,k,l;
clrscr();
printf("\n HERE IS YOUR PATTERN:\n");
l=11;
for(i=1;i<=6;i++)
{
for(j=1;j<=i;j++)
{
if(j%2==0)
printf(" 0");
else
printf(" 1");
}
for(k=1;k<=l;k++)
printf("  ");


for(j=1;j<=i;j++)
{
if(j%2==0)
printf(" 0");
else
printf(" 1");
}
printf("\n");
l=l-2;
}
for(i=1;i<=13;i++)
{
if(i%2==0)
printf(" 0");
else
printf(" 1");
}
printf("\n");
l=1;
for(i=6;i>=1;i--)
{
for(j=1;j<=i;j++)
{
if(j%2==0)
printf(" 0");
else
printf(" 1");
}


for(k=1;k<=l;k++)
printf("  ");


for(j=1;j<=i;j++)
{
if(j%2==0)
printf(" 0");
else
printf(" 1");
}
printf("\n");
l=l+2;
}


getch();
return(0);
}







 Thanks Friends....

Thursday, May 17, 2012

C Program That Print Digit 7

Hello friends today i'sharing an interesting program with all of you, i'm sure that you really enjoy it because it is very simple and here i'm using simple concepts of c language.

77777777777
         7
        7
       7
      7
     7
    7
   7
  7
 7
7
#include<stdio.h>
#include<conio.h>
int main()
{
 int i,j,k,l;
 clrscr();
 printf("\n HERE IS YOUR PATTERN:\n\n\n");
 printf("\t\t");
 for(i=1;i<=11;i++)
  printf("7");
  printf("\n");
 l=9;
 for(i=1;i<=10;i++)
 {
  printf("\t\t");
  for(k=1;k<=l;k++)
   printf(" ");
  printf("7");
  printf("\n");
  l--;
 }
 getch();
 return(0);
}




Thanks Friends......

Important Full Forms

Hello friends today i'm sharing some interesting full forms just read it carefully and enjoy it,I am sure its really help you in your future.


1)AM:-Ante Meridian(before noon)

2)PM:-Post Meridian(after noon)

3)RSVP:-Repondez Sil' Vous Plait (Reply please)
4)COMPUTER:-Common Oriented Machine Particularly United and used under Technical and Educational Research.

5)VIRUS:-Vital Information Resources Under Size

6)INTERNET:-International Network

7)INTERVIEW:-Intelligence Nature Tactfulness Efficiency Responsibility Verification Information Establishment Workable

8)WI-FI:-Wireless Fidelity

9)INTEL:-Integrated Electronics Corporation

10)UNIX:- Uniplexed Information Computing System(UNICS)



Thanks Friends.....



 

Tuesday, May 15, 2012

C Program That Print The Left Angle Triangle Using Alphabets.

Hello friends today i'm sharing an interesting program with all of you,i hope you can understand this code.In this pattern i'm using simple concepts of c language,Just go through it.


A
Z
B   C
Y   X
D   E   F
W   V   U
G   H   I   J
T   S   R   Q
K   L   M   N   O


#include<stdio.h>
#include<conio.h>
int main()
{
 int i,j,l,m;
 clrscr();
 printf("\n HERE IS YOUR PATTERN:\n");
 l=65;
 m=90;
 for(i=1;i<=5;i++)
 {
  for(j=1;j<=i;j++)
  {
   printf("  %c",l++);
  }
  printf("\n");
  for(j=1;j<=i;j++)
  {
   if(i==5)
    printf(" ");
   else
    printf("  %c",m--);

  }
  printf("\n");
 }
 getch();
 return(0);
}



 Thanks Friends......

What Is Mount?

Hello freinds mount is to make a group of files in a file system structure accessible to a user or user group. For instance, in data storage, to mount is to place a data on a drive in a position to operate. Macintosh calls it mounting when a user inserts a disc into the machine.In a UNIX environment, the mount command attaches discs, or directories logically rather than physically. The Unix mount command makes a directory accessible by attaching a root directory of one file system to another directory, which makes all the file systems usable as if they were subdirectories of the file system they are attached to. Unix recognizes devices by their location, as compared to Windows, which recognizes them by their names (C: drive, for example).

Mounts may be local or remote. A local mount connects disc drives on one machine so that they behave as one logical system. A remote mount uses Network File System ( NFS ) to connect to directories on other machines.

  
  
  Thanks Friends.....

C Program That Print The Patterns Using Fibonacci Sequence

Hello friends today i'm sharing an interesting program,please read this code i make this code very easy to all of you,it really helps you,i used only a simple concepts of c language.

0
1 1
2 3 5
8 13 21

#include<stdio.h>
#include<conio.h>
int main()
{
 int i,j,a=0,b=0,c=1;
 clrscr();
 printf("\n HERE IS YOUR PATTERN:\n\n");
 for(i=1;i<=4;i++)
 {
  for(j=1;j<=i;j++)
  {
   if(i==1 &&j==1)
    printf(" 0");
   else if(i==4 && j==4)
    printf("  ");
   else
   {

    printf(" %d",c);
    a=b;
    b=c;
    c=a+b;
   }
  }
  printf("\n");
 }
 getch();
 return(0);
}



    Thanking You Friends...

C Program That Print The Patterns Of Binary Numbers

Hello friends today i'm sharing an interesting program with all of you just read the code this is very easy code ,you can easily understand it by simple concepts of c language.If you find any difficulty when reading it please share with me,i'll try to sort out your problem.


1
0 1
1 0 1
0 1 0 1
1 0 1 0 1


#include<stdio.h>
#include<conio.h>
int main()
{
 int i,j;
 clrscr();
 printf("\n HERE IS YOUR PATTERN:\n\n");
 for(i=1;i<=5;i++)
 {
  for(j=1;j<=i;j++)
  {
   if(i%2==0)
   {
    if(j%2==0)
     printf(" 1");
    else
     printf(" 0");
   }
   else
   {
    if(j%2==0)
     printf(" 0");
    else
     printf(" 1");

   }
  }
  printf("\n");
 }
 getch();
 return(0);
}




Thanks Friends...

Monday, May 14, 2012

What is cc: and bcc: in email?

Hello friends, cc:(carbon copy) made it possible to send the same letter to two different people without write or type it twice.A carbon copy of the message is also sent to all the addresses listed in the Cc: field.we can write  more than one email address in this field, and they all get a copy. To enter more than one address in the Cc: field, we have to separet it with comma. When you send a message to more than one address using the Cc: field, both the original recipient and all the recipients of the carbon copies see the To: and Cc: fields including all the addresses in them.This means that every recipient gets to know the email addresses of all the persons that received your message.



The long version of "Bcc" is "blind carbon copy". Bcc: is a nice and powerful tool.The Bcc: field helps you deal with the problems created by Cc:.  a copy of the message goes to every single email address appearing in the Bcc: field.The difference is that neither the Bcc: field itself nor the email addresses in it appear in any of the copies (and not in the message sent to the person in the To: field either).The only recipient address that will be visible to all recipients is the one in the To: field.




     Thanking You Guys.....

Saturday, May 12, 2012

How To Find A File In MS-DOS?

Hello friends with MS-DOS it is possible to find any file on your computer, providing you know the name of the file or the program that the file was created in.

If you are unsure where the file may be on the computer, you must be at the root directory of the computer. Meaning, you must be at C:\> to get to this prompt, type cd\

Once at the root directory or the directory you believe the file to be in, type any of the below commands.

If, for example, you knew that the file had bob somewhere in the file you would type:

dir *bob*.* /s

In the above example you will utilize the wild character, which in MS-DOS is the asterisks ( * ). In addition to the asterisks, I utilize the /s that tells the dir command to search the current directory and all directories there after.

If you cannot recall any of the names of the files but recall that they were created in Microsoft Excel you could, for example, type:

dir *.xls /s

In the above example, knowing that Excel files always end with .xls, I again use the wild character, telling the computer to search for any file ending with .xls.


   /p will will display the results one page at a time.




Thanks Guys.....

Can You Type More Than One Command At One Command Prompt?

Yes Friends you can use the pipe or the ampersand to separate your commands. The shell and version of Windows you are using decides what character to use. Below are some additional examples for each version of Windows and shell. In both of these examples the command would first get to the root of the current drive and then run the dir command to list the current contents of the root.

Microsoft Windows 95, Windows 98 and Windows ME users:


cd\ | dir


Microsoft Windows 2000, XP, Vista, 7, and later users using the command shell:


Instead of using the pipe Microsoft decided to change it to the ampersand (&) for reasons unknown by us. Therefore you would need to type the below command to have the same results as earlier versions of Windows.

cd\ & dir




Thanks Friends.....

Friday, May 11, 2012

What Is ActiveX

ActiveX is an extension to Microsoft's OLE and COM technologies used in applications and on the Internet. Using ActiveX, an Internet browser can interact with your computer more than what is available through HTML. For example, ActiveX allows users to scan their computer for viruses in their browser using free online anti-virus scanners or scan their computer for any Windows updates.
Although there are benefits to using ActiveX, because it can interface outside the browser there are also various security threats and malware that can attack the computer using ActiveX. Therefore, unless you know what the ActiveX plug-in does and you trust the website that is asking to install the ActiveX plug-in I recommend not installing any ActiveX plug-ins.Microsoft Internet Explorer is the only Internet browser that uses ActiveX, although many alternative browsers do have ActiveX plug-ins that can be installed. Browsers that do not support ActiveX use alternative plug-ins such as Flash, Java, and Shockwave.




Thanks Friends.........

What Is Absolute Coding?

Absolute coding is a type of computer programming where the programmer is using absolute addressing, instead of indirect addressing. For example, in an assembly language the programmer may enter an exact memory address to store data to instead of an indirect address that a higher programming language may use.



*****Thanks Friends*****

How Do I know What Computer Video Card I Have?

Friends many versions of Microsoft Windows will automatically detect and install your video card. Assuming no video issues currently exist with the video card you can determine the video card under display adapters in Device Manager, as shown in the picture to the right.
As can be seen in the picture this computer has two video cards and are labeled as NVIDIA GeForce 7900 GTX, which is the manufacturer and model of the video card.If you right-click the video card and click Properties you'll get a window like the properties window also shown in above picture. As can be seen the location of this video card is PCI Slot 2. Which is helpful for when you wish to know the bus the video card is.



Thanks Friends......

Thursday, May 10, 2012

When The Computer Boots I See 'Bad Command or File name'

Hello friends to resolve this issue you will need to first determine what line in your autoexec.bat and config.sys is causing this issue. To do this I recommend that you do a step by step configuration, which is an option in your Windows Startup menu:


Microsoft Windows 98 Startup Menu=============================
1. Normal
2. Logged (\BOOTLOG.TXT)
3. Safe mode
4. Step-by-step confirmation
5. Command prompt only
6. Safe mode command prompt only
Enter a choice: 1
F5=Safe Mode Shift+F5=Command prompt Shift+F8= Step-by-step confirmation [N]



To get into this menu press F8 over and over as the computer is booting or when you see the computer indicate Microsoft Windows is starting.In the startup menu choose option 4 for step-by-step confirmation. Once chosen, the computer will prompt you to say Yes or No to each command loaded for your computer. Say yes to each of these commands until you get the error. Once the error has been found, write down the line you said Yes to.Once back into Windows, edit your autoexec.bat and config.sys, locate this file and either correct the line .



Thanks Friends.......

Wednesday, May 09, 2012

What is Favicon.ico?

Hello friends the  favicon.ico is a small icon found in the URL address bar and on any bookmark created in Internet Explorer 5.0 and above and all other recent releases of Internet browsers such as Mozilla Firefox and Opera.


The favicon can be created using any free icon generator or in a free online favicon generator such as favicon.cc. The file favicon.ico must be 16x16 in dimension - 16 colors and must be saved as an .ico file.Finally, the file favicon.ico should be uploaded into the root directory on the server hosting your web page.

More recent Internet browsers are adopting using favicon.gif in addition to favicon.ico. If you're a web site or blog developer I suggest not only having a favicon.ico, but also a favicon.gif file in your root directory and other sub directories to help prevent 404 errors in your server log.


If your browser doesn't show fevicon.ico icon then there should be following reason behind this:-
  1. If you or someone else using your computer has recently cleared your Internet cache the favicons will be lost in many browsers because they're stored in this temporary cache.
  2. Page has not been loaded recently or the browser does not look in the proper location for the favicon. Try refreshing the browser page.
  3. If you're the webmaster of a web page and are unable to get your favicon.ico to be displayed make sure the icon is stored in the root directory and if the page is stored in a folder or other directory try placing the favicon.ico file in that directory.
  4. Finally, earlier browsers have had other various issues related to the favicon.ico file. Make sure you're running the latest available Internet browser version for your operating system.


Thanking You Guys......

C Program That Find The Size Of Structure Wthout Using sizeof Operator.

Hello guys today i'm sharing a program that find the size of structure,in this program i'm using a concept of pointer.The code is little bit typical but you can understand it ,So friends don't waste your time and read this lovely code.


#include<stdio.h>
#include<conio.h>
struct node
{
 int a;
 float y;
 char s;
};
void main()
{
 struct node x,*p;
 p=&x;
 clrscr();
 printf("\n Size of structure is:");
 printf("%d",(char*)(p+1)-(char*)(p));
 getch();
}




Thanking You....

C Program To Check Whether The Given Number Is Perfect/Abundent/Deficient


Hello guys  today i'm discussing a program that check whether the inputed number is perfect,deficient or abundent.A number is said to be perfect if the sum of all the divisors of that number (except number) is equal to number.For example 6 is a perfect number because divisors of 6 are 1,2,3 and 1+2+3=6,similiarly 28(1+2+4+7+14) is perfect number.It is a very simple code just read it carefully.

#include<stdio.h>
#include<conio.h>
void main()
{
 long int num,i,sum=0;
 clrscr();
 printf("\n Enter the number:");
 scanf("%ld",&num);
 for(i=1;i<num;i++)
 {
  if(num%i==0)
   sum=sum+i;
 }
 if(sum==num)
 {
  printf("\n number %ld is perfect:",num);
 }
 else if(sum>num)
 {
  printf("\n number %ld is abundent:",num);
 }
 else if(sum<num)
 {
  printf("\n number %ld is deficient:",num);
 }
 getch();
}





Thanks Guys....

%1, \1, and $1

Hello friends,when used in a command line, script, or batch file a %1 is used to represent a variable or matched string. For example, in a Microsoft batch file %1 can be used to print what is entered after the batch file name. In the below example of a batch file using the %1, the batch file will print "Hello xxxx it's nice to meet you", where xxxx is whatever you enter after the name of the batch files. So, if this batch file was named example.bat and you typed "example Nathan" the batch file would return Hello Nathan it's nice to meet you.


@echo off
if "%1"=="" goto error
echo Hello %1 it's nice to meet you
goto end
:error
echo Type your name after batch file.
:end


In other programming languages and script languages the %1 may be substituted for \1 or $1. For example, in Perl these could be used in a regular expression to print out the matched text or be used as a new variable. In the below example if the $text variable contains any text at it will print "Hello xxxx" where xxxx is what is matched. So, if $text = "Joe Smith" the script would return "Hello Joe".

 if ($text =~ s/^([a-z]+)/i) {
print "Hello $1\n";
}

Each of these matched strings or variables can also be extended upon by increasing the value. For example, the next matched string or variable found could be entered in as %2, \2, or $2.


Thanks Friends......

What Is .Net??


Hello friends,today i'm giving you all the information about.NET read it carefully.....

.NET is a Microsoft web services strategy to connect information, people, systems, and devices through software, making it easier for users to share and use their information between multiple websites, programs, and computers. In addition to being a web service, .NET is also a programming model that enables software developers the ability to do rapid application development by bundling a collection of software in on package. For example, Microsoft Visual Studio .NET is part of the .NET programming model.and .net is also a domain suffix.



The official Microsoft .net page is found at:http://www.microsoft.com/net/






 *******Thanks Friends*******

Monday, May 07, 2012

Shell script that print the series 1^n,2^(n-1)...........(n-1)^2,(n-2)^1



Hello friends today i'm sharing a shell script program that print the series 1^n,2^(n-1).........(n-1)^2,(n-2)^1 . Read the script and enjoy!!!!!!!!!



#! /bin/sh
 
echo "Enter the value of n"
read n

i=1
j=$n
while test $i -le $n
do
    echo "$i^$j"
    j=` expr $j - 1 `
    i=` expr $i + 1 `
done





   



                         THANKS FRIENDS....

Popular Posts