Why is a 32 bit machine considered faster than a 1 byte machine?
Under most conditions (but not all) it can process nearly 4 times as much data in the same time. However 32 bit processors are usually built with newer faster architectures and fab processes than 8 bit processors, so there are other reasons than word size that they might be faster.
Benchmarking is always tricky.
What is the command to run windows explorer from the command line?
The command is: "start explorer.exe".
What window allows you to navigate among the files in a project?
If you are talking about the Windows Movie Maker program, the Imported Media viewing pane (or Collections folder) contains media used in the project.
From command prompt how do you display hidden files?
To access hidden files from command prompt, go to start, and in the search box, type "cmd", then enter. From there, click start, computer, my computer and look for F drive. Type F, then enter. Then type attrib -s -h -r /s /d, and hit enter. Go to your F drive and you should be able to see the hidden files.
How do you delete a word in a file using c?
in c++ the source code is as follows........... .
#include<iostream.h>
#include<conio.h>
#include<fstream.h>
#include<string.h>
#include<stdio.h>
void main()
{
clrscr();
int f=0;
char s[30],c[10];
ofstream of("old.txt");
cout<<"enter string\n";
cin.getline(s,20);
of<<s;
of.close();
ifstream fi("old.txt");
ofstream fo("new.txt");
while(!fi.eof())
{
fi>>c;
if(strcmp(c,"the")==0)
{
f++;
}
else
fo<<c<<" ";
}
cout<<"occ:"<<f;
remove("old.txt") ;
rename("new.txt","old.txt");
fo.close();
fi.close();
ifstream n("old.txt");
n.seekg(0,ios::beg);
cout<<"\nnew file\n";
while(!n.eof())
{
n.getline(s,20);
cout<<s;
}
n.close();
getch();
}
What command can you enter in the run dialog box to launch Disk Management r?
you can run many commands
You need to verify whether a particular host is rechable which command line utility should you use?
Ping
When you log in to MSN it opens in Latino how do you get it to open in English?
control panel
regional languages
quick launch toolbar
What is Microsoft's description of Windows XP Home Edition?
It was described as a huge update to the Windows platform giving way to the new NT kernel and a new redesigned user interface since it hasn't been different since windows 95. It introduced multiple security upgrades and more useful programs and abilities to work at a consumer level .
What are the tappet settings for a lombardini ldw 2204?
Check that it has adjusters on the rocker arms, as Lombardini have switched to hydraulic tappets on most of these engines. If yours has adjusters, the manual can be downloaded from their website. Cheers, John Higgie
As an IT Professional, any time any of my colleagues receive a .dat file via email etc on their mac, I always install a program from Josh Jacob which works every time called 'TNEF's Enough' (http://www.joshjacob.com/mac-development/tnef.php).
Very easy program to use.. Open the .dat file in TNEF, select the relevant document in the list and save it.
A C program to store students record in a file?
#include<stdio.h>
void main()
{
FILE *fp;
char name[20],ch;
char *roll;
fp=fopen("specifies file path","w");
if(fp!=NULL)
{
do{
printf("input roll_no");
gets(roll);
printf("\ninput student name");
gets(name);
fputs(roll,fp);
fputs("\t",fp);
fputs(name,fp);
fputs("\n",fp);
printf("you want to continue y/n");
ch=getch();
}while(ch=='y');
}
}
How do you add Arabic to a French copy of xp without CD?
A CD is required. The language font settings are stored in a database on the CD, or in a separate folder on the PC which must be manually installed (no default)
What is the augmented component of a product?
The final, or third, level of the product is the augmented component. The augmented component includes additional services and benefits that surround the first two levels of the product.
How do you save a file that says read only?
although the details varies depending on the application used, the general thing to do is to go to File then choose "Save As", and save the files as a new name. note: you may need to expand the menu (by clicking on the arrows pointing down at the bottom of the File menu to see the Save As choice. once its saved then you can right click the file within Explorer and choose properties and uncheck the read only box then it won't be read only anymore.