Tuesday, March 20, 2012

View More Send To Option In Windows

Hello friends,how are you,I hope so that you all are fit as fiddle and enjoying your life with full of joy,now enjoy with me and get something new which you don't know.....


By default Windows will have a few of the more commonly used programs and locations on your computer to send a file or folder to when choosing the Send to option in the right-click menu. However, if you want even more locations to send a file or folder hold down the Shift key when right-clicking the file or folder to get additional options. As seen in the picture to the right, all folders after the Drobo (E:) are new folders that will appear when holding down the Shift key.

More Windows Send to options

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!Thanking You Friends!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

what is COM??

Hello Friends,today i discuss to all of you some important concept that you should know it is not so tough,it is easy like learning alphabets of english!!!!!!!!!!!!!!!!!!!!!!


  1. Short for Commercial, com or .com is a domain suffix that is used on the Internet as an identification of commercial related websites.
  2. Short for communications or communications port, see the communications port definition for full information.
  3. Short for Component Object Model, COM is a component software architecture from Microsoft, which defines a structure for building program routines (objects) that can be called up and executed in a Windows environment.
  4. Short for Computer Output Microfilm, COM is creating microfilm or microfiche from the computer.


       <<<<<<<<Thank you friends for listing me>>>>>>>>>>

Thursday, March 15, 2012

Enabling Windows GodMode


Hello friends,today I present in front of you something interesting about windows......

Microsoft Windows Vista (32-bit version)introduced a new hidden feature called GodMode that allows you to view and adjust all settings within Windows. To create a shortcut to the GodMode in Windows Vista (32-bit) or any version of Windows 7 follow the below steps.
  1. Anywhere on your computer create a new folder.
  2. After the folder has been created, copy the below text, rename that folder, and paste the text as the file name.
   GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}


Once the above steps have been completed a new shortcut entitled GodMode will be visible. Opening this shortcut will display a Window similar to the below example.
Windows GodMode




"Thank you freinds,I hope today you all get something different in window ,its really help you alot" 

Important Google Tricks

Below is a list of our top nine Google tricks many people who use Google don't know about.

  • Definitions
Pull up the definition of the word by typing define followed by the word you want the definition for. For example, typing: define bravura would display the definition of that word.

  • Local search
Visit Google Local enter the area you want to search and the keyword of the place you want to find. For example, typing: restaurant at the above link would display local restaurants.

  • Phone number lookup
Enter a full phone number with area code to display the name and address associated with that phone number.

  • Find weather and movies
Type "weather" or "movies" followed by a zip code or city and state to display current weather conditions or movie theaters in your area. For example, typing weather 84101 gives you the current weather conditions for Salt Lake City, UT and the next four days. Typing movies 84101 would give you a link for showtimes for movies in that area.

  • Track airline flight and packages
Enter the airline and flight number to display the status of an airline flight and it's arrival time. For example, type: delta 123 to display this flight information if available.
Google can also give a direct link to package tracking information if you enter a UPS, FedEx or USPS tracking number.

  • Translate
Translate text, a full web page, or search by using the Google Language Tools.
Pages linked to you
See what other web pages are linking to your website or blog by typing link: followed by your URL. For example, typing link:http://www.computerhope.com displays all pages linking to Computer Hope
.
  • Find PDF results only
Add filetype: to your search to display results that only match a certain file type. For example, if you wanted to display PDF results only type: "dell xps" filetype:pdf -- this is a great way to find online manuals.

  • Calculator
Use the Google Search engine as a calculator by typing a math problem in the search. For example, typing: 100 + 200 would display results as 300



---------------------------------------------Thanking You Friends-----------------------------------------------

Tuesday, March 13, 2012

Difference Between Size And Size On Disk??



Hello friends how are u????????????????????I hope you all are fit and fine and enjoying your life with my blogs ,Today i share to all of you that you know very well but you dont know the reason behind this ,Today you all get the reason so are you ready...........................?

Size is the actual size of the file in bytes.
size on disk is the actual amount of space being take up on the disk. the disk is broken down into tracks and sectors.
We know that a disk is made up of Tracks and Sectors. In Windows that means the OS allocates space for files in "clusters" or "allocation units".
The size of a cluster can vary, but typical ranges are from 512 bytes to 32K or more. For example, on my C:\ drive, the allocation unit is 4096 bytes. This means that Windows will allocate 4096 bytes for any file or portion of a file that is from 1 to 4096 bytes in length.
If I have a file that is 17KB (kilo bytes), then the Size on disk would be 20.48 KB (or 20480 bytes). The calculation would be 4096 (1 allocation unit) x 5 = 20480 bytes. It takes 5 allocation units to hold a 17KB file.
Another example would be if I have a file that is 2000 bytes in size. The file size on disk would be 4096 bytes. The reason is, because even though the entire file can fit inside one allocation unit, it still takes up 4096 of space (one allocation unit) on disk (only one file can use an allocation unit and cannot be shared with other files).
So the size on disk is the space of all those sectors in which the file is saved. That means,usually, the size on disk is always greater than the actual size.
So the actual size of a file(s) or folder(s) should always be taken from the Size value when viewing the properties window

   "Thank you to all of you for reading my blog"

Dangling Pointer?????????

pointers that do not point to a valid object of the appropriate type. Dangling pointers arise when an object is deleted or deallocated, without modifying the value of the pointer, so that the pointer still points to the memory location of the deallocated memory. As the system may reallocate the previously freed memory to another process, if the original program then dereferences the (now) dangling pointer, unpredictable behavior may result, as the memory may now contain completely different data. This is especially the case if the program writes data to memory pointed by a dangling pointer, as silent corruption of unrelated data may result, leading to subtle bugs that can be extremely difficult to find, or cause segmentation faults (*NIX) or general protection faults (Windows). 


Let us understand through the following code snippet:-

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define BLOCKSIZE 20;
int main()
{
char *ptr;
ptr=(char *)malloc(BLOCKSIZE);
if(ptr!=NULL)
strcpy(ptr,"mohin khan");
printf("content=%s",ptr);
printf("naddress=%u",ptr);
free(ptr);
printf("nAfter free");
printf("ncontent=%s",ptr);
printf("naddress=%u",ptr);
}
output of the above code
content=mohin khan
address=134520840      //(just a example)
After free
content=
address=134520840     //same as the previous address

so we can conclude from the above code that
after free() also i keeps the address but content is deallocated.so now it is not pointing to any valid memory location.Hence ptr is now dangling pointer which probably having a address but not pointing to any valid memory location.
so it is good practice to assign NULL after freeing the allocated memory as below

ptr=NULL;

in this way dangling problem will be solved. 




  <-------------------Thanking You----------------------> 

Thursday, March 08, 2012

Batch File


Batch file ABCs
Batch files allow MS-DOS and Microsoft Windows users to create a lists of commands to run in sequence once the batch file has been executed. For example, a batch file could be used to run frequently run commands, deleting a series of files, moving files, etc. A simple batch file does not require any special programming skills and can be done by users who have a basic understanding of MS-DOS commands.
A good example of a batch file for someone who is more familiar with Windows or the MacOS is to think of a batch file as a shortcut in Windows or an icon on the MacOS. Much like a shortcut, batch files could be used to run one or more commands or programs through the command line.
Another example of a very well known batch file is the autoexec.bat, which is a simple boot file loaded each time the computer is loaded on MS-DOS and early Windows computers. This batch file contained all the necessary commands and programs used to run MS-DOS and Windows each time the computer booted.
Creating a batch file

  1. MS-DOS users
  2. Microsoft Windows and other users


  • MS-DOS users

To create a basic batch file in MS-DOS, follow the below steps that give you an example of how to create a basic batch file.
  1. Open an MS-DOS command window or get to MS-DOS.
  2. At the MS-DOS prompt, type: edit test.bat and press enter.
  3. If typed properly, you should now be in a blue screen. Within the screen, type:

    pause
    dir c:\windows
    dir c:\windows\system
  4. Once the above three lines have been typed in, click File and choose exit; when prompted to save, click "Yes." Users who do not have a mouse cursor can accomplish this same task by pressing ALT+F to access the file menu, then pressing "X" to exit, and pressing enter to save changes.
  5. Once you are back at the MS-DOS prompt, type: test and press enter. This will execute the test.bat file and begin running the file. Because the first line is pause, you will first be prompted to press a key. Once you press a key the batch file will run line-by-line; in this case, listing the files in the windows and windows\system directories.
If you wish to add more lines to this batch file you would type "edit test.bat" to edit the file again.
Additional information about the MS-DOS edit command can be found on our edit command page. Some versions of MS-DOS and bootable diskettes may not have the edit command; if this is the case, you would either need to obtain the edit.com file to access this file or use the copy con command.
  • Microsoft Windows and other users

A Windows user can still use the above MS-DOS steps if they wish to create a batch file. If, however, you're more comfortable using Microsoft Windows or your operating system, you can use any text editor, such asNotepad or Wordpad, to create your batch files, as long as the file extension ends with .bat. In the below example we use the Windows notepad to create a batch file.
  1. Click Start
  2. Click Run
  3. Type: notepad and press enter.
  4. Once notepad is open, type the below lines in the file or copy and paste the below lines into notepad.

    @echo off
    echo Hello this is a test batch file
    pause
    dir c:\windows
  5. Click File and click Save; browse to where you want to save the file. For the file name, type "test.bat", and if your version of Windows has a "Save as type" option, choose "All files", otherwise it will save as a text file. Once all of this has been done click the Save button and exit notepad.
  6. Now, to run the batch file, double-click or run the file like any other program. Once the batch file has completed running it will close the window automatically.
Batch commands

Just like all MS-DOS commands, all batch file commands are not case sensitive. However, in the below listing we have listed all commands in all caps to help you identify what is a command and what is not.

@Does not echo back the text after the at symbol. This is most commonly used as @ECHO OFF to prevent any of the commands in the batch file from being displayed, just the information needed.
%1The percent followed by a numeric value, beginning with one, allows users to add variables within a batch file. The below line is an example of what can be used in a batch file.ECHO Hello %1
When the above one-line batch file is created, add your name after the batch file. For example, typing myname (being the name of the bat file) and then your name:
myname bob
would output:
Hello bob
Note: This can be extended to %2, %3, and so on.
::One of two ways of adding remarks into the batch file without displaying or executing that line when the batch file is run. Unlike REM this line will not show regardless if ECHO off is in the batch file.
:LABELBy adding a colon in front of a word, such as LABEL, you create a category, more commonly known as a label. This allows you to skip to certain sections of a batch file such as the end of the batch file. Also see GOTO.
CALLThis is used to run another batch file within a batch file. When the batch file that is called is completed, the remainder of the original batch file is completed. Note if the batch file does not exist it will give an error message.
CHOICESee running different programs for an example of how to use this command..
CLSJust like the DOS command would clear your screen.
ECHOWill echo a message in the batch file. Such as ECHO Hello World will print Hello World on the screen when executed. However, without @ECHO OFF at the beginning of the batch file you'll also get "ECHO Hello World" and "Hello World." Finally, if you'd just like to create a blank line, type ECHO.adding the period at the end creates an empty line.
EXITExits out of the DOS window if the batch file is running from Windows.
GOTO LABELUsed to go to a certain label, such as LABEL. An example of GOTO would be to GOTO END. For an example of this see running different programs.
IFUsed to check for a certain condition if the condition exists. If that condition exists it will perform that function. To see an example of this see running different programs.
PAUSEPrompt the user to press any key to continue.
REMOne of two ways of adding remarks into the batch file without displaying or executing that line when the batch file is run.
SHIFTChanges the position of replaceable parameters in a batch program.
STARTUsed for Windows 95, Windows 98, and Windows NT 4.0 and above to start a windows application; such as START C:\WINDOW\CALC would run the Windows Calculator. Users running Windows 3.xneed to utilize the WIN command.  For example, WIN C:\Windows\CALC.EXE would run Windows and then Calculator after Windows has finished loading.
Batch file examples

  1. Running different programs
  2. How to start Windows files and programs from a batch file
  3. Creating a batch file delay
  4. How to make a time log

  • Running different programs

Below is a simple example of how you can implement the choice options into your batch files. Each line that is in red can be left out of the batch file. They have been included to help explain some of what the batch file means. Windows 2000 and Windows XP users will need to substitute the choice command with the set command.
@ECHO OFF
REM - LABEL INDICATING THE BEGINNING OF THE DOCUMENT.
:BEGIN
CLS
REM - THE BELOW LINE GIVES THE USER 3 CHOICES (DEFINED AFTER /C:)
CHOICE /N /C:123 PICK A NUMBER (1, 2, or 3)%1
REM - THE NEXT THREE LINES ARE DIRECTING USER DEPENDING UPON INPUT
IF ERRORLEVEL ==3 GOTO THREE
IF ERRORLEVEL ==2 GOTO TWO
IF ERRORLEVEL ==1 GOTO ONE
GOTO END
:THREE
ECHO YOU HAVE PRESSED THREE
GOTO END
:TWO
ECHO YOU HAVE PRESSED TWO
GOTO END
:ONE
ECHO YOU HAVE PRESSED ONE
:END
  • How to start Windows files and other programs from a batch file

To run Microsoft Windows programs or files use the START command. The below example would run Windows Notepad.
START /MAX NOTEPAD
You can also specify the direct location of the file by typing the below command.
START /MAX C:\Windows\NOTEPAD.EXE
*Windows users who have a different directory (e.g. Windows 2000 users) would need to substitute WINNT or the name of their directory in place of Windows in the above example.
The /m representing it to start the window Maximized. .
  • Creating a batch file delay

Below is an example of how to delay a batch file any where from 5 to 99 seconds. In the below example we illustrate a 5 second delay.
TYPE NUL | CHOICE.COM /N /CY /TY,5 >NUL
  • How to make a time log in a batch file

The below example demonstrates how to create a time log of when the batch file is loaded, or for example, this could be used in the autoexec.bat when someone logs into a computer that supports this file.
ECHO. |TIME > TIME
COPY LOG +TIME
An alternate, slightly more complicated method that, to our knowledge, cannot be used in Windows NT, Windows 2000 or Windows ME would be the following:
echo @prompt set date=$d$_set time=$t$h$h$h > {a}.bat
%comspec% /e:2048 /c {a}.bat > {b}.bat
for %%v in ({b}.bat del) do call %%v {?}.bat
echo %date% %time% >> log
Another alternative is:
echo. |time |find "current" >> log
For the above batch file to work properly you must create a file called log, by typing edit log and then save and exit the file, creating a 0 bytes file. If this file is not created or not created properly you will receive the error message Content of destination lost before copy.


               "Thanks Friends ,I hope you learnt a lot today"

Environment Variable


An environment variable is a dynamic "object" on a computer that stores a value, which in turn can be referenced by one or more software programs in Windows. Environment variables help programs know what directory to install files in, where to store temporary files, where to find user profile settings, and many other things. It can be said that environment variables help to create and shape the environment of where a program runs.
Environment variables are dynamic because they can change. The values they store can be changed to match the current computer system's setup and design (environment). They can also differ between computer systems because each computer can have a different setup and design (environment).
There are a number of environment variables that get referenced by programs and can come in handy for a computer user to find needed information about their computer environment. The more common and important ones to be aware of are shown below.
%appdata%
%commonprogramfiles%
%local%
%localappdata%
%programfiles%
%temp%
%userprofile%
%windir%

 You can quickly access any of the above folders by entering the environment variable in the Windows Run box or Windows Search Box. For example, to get into the Application Data folder type %appdata%and then press Enter in the Run box.
  • %appdata%

The %appdata% environment variable contains the directory path to the Application Data folder for your user profile. This folder stores settings and logs, among other things, for various software programs. The settings and logs stored there are specific to your user profile.
  • %commonprogramfiles%

The %commonprogramfiles% environment variable contains the directory path to the Common Files folder, within the main Program Files folder. This folder contains various files for some of the more common programs and utilities on a computer, mostly system and services related. The default directory path this variable points to is c:\Program Files\Common Files.
  • %local%

The %local% environment variable points to where the security policies & rules are located for the user's account, Windows in general, Windows Firewall, Network, and various software programs on the computer. This environment variable is native to Windows 7.
  • %localappdata%

The %localappdata% environment variable contains the directory path to where programs store their temporary files. Common temporary files to be stored here are Desktop Themes, Windows Error Reporting, program caching and internet browser profiles. This environment variable is native to Windows Vista & Windows 7.
  • %programfiles%

The %programfiles% environment variable contains the directory path to where programs are installed. This directory contains sub-directories for each program, which contain the primary files needed by each program in order to run on a computer. The default directory path this variable points to is c:\Program Files.
  • %temp%

The %temp% environment variable contains the directory path to where temporary files will be stored. These temp files are often internet temporary files and other user application temporary files (Microsoft Word, Excel, Outlook, etc.). The files located in this directory can be deleted periodically to help improve computer performance.
  • %userprofile%

The %userprofile% environment variable points to the current logged in user's profile and the directory where user profile data is stored. It is in this directory that a user can find the following folders: My Documents, My Music, My Pictures, Desktop and Favorites (Internet Explorer bookmarks).
  • %windir%

The %windir% environment variable points to the Windows directory, where Windows system files are located. This directory is where Windows will installs. The default directory path for most versions of Windows is c:\Windows (for Windows NT 4 and 2000, it is c:\WinNT).

             Thanks Friends For Listening Me!!!!!!!!!!!!!!!!!!!!!!!!!!

Tuesday, March 06, 2012

What is the difference between goto and longjmp() and setjmp()?????????





A goto statement implements a local jump of program execution, and the longjmp() and setjmp() functions  implement a  nonlocal, or far, jump of program execution. Generally, a jump in execution of any kind should be avoided because it is not considered good programming practice to use such statements as goto and longjmp in your program.

A goto statement simply bypasses code in your program and jumps to a predefined position. To use the goto statement, you give it a labeled position to jump to. This predefined position must be within the same function. You cannot implement gotos between functions.

 Here is an example of a goto statement:

void bad_programmers_function(void)

{

int x;

printf(“Excuse me while I count to 5000...\n”);

x = 1;

while (1)

{

printf(“%d\n”, x);

if (x == 5000)

goto all_done;

else

x = x + 1;

}

all_done:

printf(“Whew! That wasn’t so bad, was it?\n”);

}
This example could have been written much better, avoiding the use of  a goto statement
Here is an example of an improved implementation:

void better_function(void)

{

int x;

printf(“Excuse me while I count to 5000...\n”);

for (x=1; x<=5000; x++)

printf(“%d\n”, x);

printf(“Whew! That wasn’t so bad, was it?\n”);

}

As previously mentioned, the longjmp() and setjmp() functions implement a nonlocal goto. When your program calls setjmp(), the current state of your program is saved in a structure of type jmp_buf. Later, your program can call the  longjmp() function to restore the program’s state as it was when you called setjmp(). Unlike the  goto statement, the longjmp() and setjmp() functions do not need to be implemented in the same function. However, there is a major drawback to using these functions: your program, when restored  to its previously saved state, will lose its references to any dynamically allocated memory between the longjmp() and the setjmp(). This means you will waste memory for every malloc() or calloc() you have implemented between your  ongjmp() and setjmp(), and your program will be horribly inefficient. It is highly recommended that you avoid using functions such as  longjmp() and setjmp() because they, like the goto statement, are quite often an indication of poor programming practice.
Here is an example of the longjmp() and setjmp() functions:


#include <stdio.h>

#include <setjmp.h>

jmp_buf saved_state;

void main(void);

void call_longjmp(void);

void main(void)

{

int ret_code;

printf(“The current state of the program is being saved...\n”);

ret_code = setjmp(saved_state);

if (ret_code == 1)

{

printf(“The longjmp function has been called.\n”);

printf(“The program’s previous state has been restored.\n”);

exit(0);

}
printf(“I am about to call longjmp and\n”);

printf(“return to the previous program state...\n”);

call_longjmp();

}

void call_longjmp(void)

{

longjmp(saved_state, 1);

}


!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!Thanking You!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Unix Vs Windows Hosting

In the world of web site hosting there are two main types of operating system platforms on which you may host your web site, namely: UNIX and Windows. Each has its own set of unique features, advantages and disadvantages.


While it is difficult to say which one is the better choice, it is not as difficult to answer which is the better choice given your needs. The language which your site is programmed in is what primarily dictates the type of hosting you need.

Note: The operating system that you use on your desktop computer (the vast majority of people use some flavor of Windows) has absolutely nothing to do with the one that your host needs to serve your web site. Most personal sites are created with MS FrontPage and even although that is a Microsoft product, it can be hosted perfectly on a UNIX web server with FrontPage Extensions installed.
Stability:UNIX systems (we actually use Linux but for comparison purposes they are identical) are hands-down the winner in this category. There are many factors here but to name just a couple big ones: in our experience UNIX handles high server loads better than Windows and UNIX machines seldom require reboots while Windows is constantly needing them. Servers running on UNIX enjoy extremely high up-time and high availability/reliability.

Performance:While there is some debate about which operating system performs better, in our experience both perform comparably in low-stress conditions however UNIX servers under high load (which is what is important) are superior to Windows.Scalability:Web sites usually change over time. They start off small and grow as the needs of the person or organization running them grow. While both platforms can often adapt to your growing needs, Windows hosting is more easily made compatible with UNIX-based programming features like PHP and MySQL. UNIX-based web software is not always 100% compatible with Microsoft technologies like .NET and VB development. Therefore if you wish to use these, you should choose Windows web hosting.Compatibility:Web sites designed and programmed to be served under a UNIX-based web server can easily be hosted on a Windows server, whereas the reverse is not always true. This makes programming for UNIX the better choice.

Price:Servers hosting your web site require operating systems and licenses just like everyone else. Windows 2003 and other related applications like SQL Server each cost a significant amount of money; on the other hand, Linux is a free operating system to download, install and operate. Windows hosting results in being a more expensive platform.
Conclusion:To sum it up, UNIX-based hosting is more stable, performs faster and more compatible than Windows-based hosting. You only need Windows hosting if you are going to developing in .NET or Visual Basic, or some other application that limits your choices


            ------------------------------THANKS TO ALL OF YOU-----------------------------------

Monday, March 05, 2012

College Life Fun


I hope i’ll not make u cry ,after reading this article you will alll become happy...its my promise to all of you so are you ready?????????????????????????????

1. On being Late:


“Kab shuru hui class?”

“Attendance ho gayi kya??”

“Kal raat der tak gappe marte rahe yaar”

“Aab nind nahi khuli to mein kya karu……… bolna ……. kal kya
padaya tha isne”


“Ek page de na………. abey pen bhi to de, nahi to kisse
likhunga…….”


” koi subah kaise aa sakta hai……..”

“wo bhi iss class ke liye ”

2. During the lecture:


“Yesss!!!! Sirrr…….The answer is

……..huuuummmmm……..aaaaaaaa………….”

“No sir…..I know the answer …….sir….”

“Saala apne aapko Newton samajta hai”

“Abe lecture ko maar goli….. Kareena kya lag rahi hai aaj……..”

“Uski tshirt pe kya likha hai dekh”

“Uske bagal mein nahi baith sakta tha kya…….gadha…….”

“Kya bore kar raha hai. Bola tha canteen chalte hain ..”

“Heads, we go canteen , Tails, we go now!!!”

3. Lab:


“Expt. 2 likha??”

“last time tu aaya the kya?”"

“Karna kya hai??”

“Yeh bhai…..merko pata hota to tere pass kyon aata……..”

“Areee tu to bura maan gaya …….chal dikha na…..bhau kyo kata
hai….”


4. Sessionals Test:


“sessionals test???? ……Aree yaar…… ”

“Kya…….. abe unit test mein itna sara topic hai to final mein kya
hoga….”


“Oye Sushil kaha hai……uska roll number mere baad hai…….wo nahi
aaya to mein pakka fail….”


After test……

“yaar pada tha….recall nahi kar paya…….chhod na ……. Canteen
chalega…” SAHI !!


5. For attendance


“I was in the class, attendence bolna bhool gaya ”

“Oye usko thoda khush kar list se tera naam hata dega……..”

“Bola tha proxy regularly maar…….. Saale tera class karne ka kya
faida hua…..”


6. Late submission of assignments:


” Maine us ko bola thaa ki copy karke mera assgnment bhi saath mein
submit kar dena”


“Ab mein kya karu usne mereko bole bina hi submit kar diya……..”

“They should allow XEROX………sala system hi kharab hai ”

7 . After exam:


“Yeh bhi syllabus mein thaa kya? Shitt…”

“kya bol raha hai yaar..aise karna tha kya”

“1st mein 3 marks…..2nd mein 0…….3rd mein 2…….
Gaya ……….fail pakka…….”


“Yaar notice lagte hi hata dena……..wo kya soochegi mera marks dekh
kar……”


8 . VIVA (b4 exam):


“Submission ab tak hua nahi hai , VIVA kya ghanta doonga”

“Aeee…….Akash…..terese kya kya poocha….mood kaisa hai..”

“External ke ghar mein bacche nahi hai kya…….”

“Dekh Boss!! external bhi aadmi hai. Usko pata hai students ki ab tak
preparation nahi hui hai”


9 . Submission:


“Ye bhi chhapna hai kya?”

“kaat kaat ke likh le…kaon padhta hai”

“Iska bhi print-out lena hai kya?”

“Jai ho computer baba ki……jai ho Ctrl C – Ctrl V ki…….”

“Tujhe Sir ka sign aata hai kya?”

10 .Copying Assignments:


“Ye tune kya likha hai????”

(The best one)

“Jo word samajh mein aa raha hai woh likh, jo nahi samajh mein aa raha
hai uska drawing nikal”

“Phir bhi, kuch to idea hoga??”

” Maine uska likha hai, mera assignment check ho gaya, tu bhi wohi kar.”

“Koi hint……..”

“Are baba ghaseet de……..na tu samjega na wo……..”

11. Exam:


“Jo (mujhe) aata hai, woh (paper mein)aata nahi hai; jo nahi aata hai
woh NAHI aata hai” ..VERY VERY TRUE !!


“ye question 2 saal se nahi poochha hai yaar….to ab kya poochenge”

“ye last time hi poochha thaa……is baar nahi aana chahiye”

“tere paas is ke notes hai??”

“Neend aa rahi mujhe to…thodi der so jata hoo..utha diyo pakka”

“woh chapter… mark weightage 6 marks… (facial ex-pressions speaks
the story)”


“nahi samjha to rat le” – PERFECT ONE

“Iss paper mein roll number ke kya order hai……..”

“Ek aur din ka gap de dete to kya 3rd World War ho jata tha kya……….”
I AGREE !! !!


                                         "THANKU FRENZZZZZZZZZZZZZZ "

How To Create Disk Partition On Windows Vista Or Windows 7

Hey! I will guide you through the procedures for making a partition on your computer/laptops. It’s not at a complicated process, so you could just chill and follow the set of instructions & I’m pretty much sure you will be able to do it. 

  1. Go to the ‘start-menu’ & hover your mouse over ‘computer’. Right-click on it & click on ‘manage’. 
    Note: If you do not have ‘administrative rights’ or your account is limited. If so, then you will not be able to make a partition. So make sure that you have ‘administrative rights’
  2.  If you find a window popping up asking for ‘YES’ or ‘NO’. Click on ‘YES’.
  3. The ‘Computer Management’ window will open. In there, you will find ‘Storage’. Under that you will be able to see ‘Disk Management’ thus click on it.
    Note: It should take about 10 seconds to load, if it takes lot of time then immediately close the computer management or restart the computer and start over from step 1.
  4. So when the ‘Disk Management’ window opens you will see there is 1 drive i.e. C-drive or another one before the C-drive called ‘system reserved’. DO NOT do anything on the ‘system reserved drive’.
  5. OK! Now you could either create partition on ‘C-drive’ or if any other drive available. You can do this to any drive you want. Of course, depending on the space availability. I am using E-drive to demonstrate the procedure.
  6. Right-click on the drive you want to create partition, in my case it is E-drive. A pop-up should come up, click on ‘Shrink Volume’. 
    Note: If you have a big hard-drive, it would take longer time. For instance, if your hard-drive is 1TB it can take up to 20 minutes. In case, it says ‘NOT RESPONDING’ don’t worry. Just be patient as it will respond.
  7. Once the loading is done, a window should pop up. In here you can allocate what size your new drive will be. This completely depends on you. Under ‘Enter the amount of space to shrink’ you have to allocate the size.
    Note: The allocation of size should be done in ‘Megabytes’ only. For instance, if you want to put 10 Gb, you could write it as 10024 Mb = 10 Gb and if in one digit like 8gb then write it as 8024 Mb = 8 Gb.
  8. Then click on shrink.
    Note: This will take time depending on what size you have allocated.
  9. Once it is done, you will find a new slot. Usually it is placed after the drive that you partitioned. The partition drive will show a ‘black bar’. Right-click on the drive with the black bar, a window should pop-up. Just follow the procedure. Keep clicking ‘NEXT’ until you find the bit where it says ‘Assign the following drive letter’. You could just leave it as it is or give any letter you want and then click 'Next'. On the next window just name the volume and make sure ‘perform a quick format’ box is checked. If you un-check it, then the procedure would be very long and leave the other bits as it is. After checking everything and then click 'Next' & then 'Finish'. 
  10. Wait for a bit and your new drive will be created. So close everything up and go to my computer & you should see your new drive ready for you to use. :D
<<<<<<<<Thanks friends for listing me i hope you enjoyed a lot  and learned above article>>>>>>>>>

Popular Posts