answersLogoWhite

0


Best Answer

Windows does not allow files with the same name to exist in the same folder.

In order to make a copy of a file on the laptop, you select the file and choose Cut.

If the files have the same name, but one is newer than the other, the new file will automatically overwrite the older file.

If the files are exactly the same and have the same modification dates, Windows will not prompt you about replacing the file.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which statement is true about version control of files that are transferred between a Windows laptop and a Windows desktop PC?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is difference between control statements and looping statements in c language?

differance between control statement and looping statement?


What is the different between break and continue?

The break statement exits out of the smallest containing loop or switch-case statement. The continue statement transfers control to the next iteration of the smallest containing loop statement.


What is the difference between a Discretionary Access Control List DACL and a System Access Control List on Microsoft Windows systems. What access permissions can be assigned to a file in Windows 7.?

cool nice cool


What is the different between network ability in windows server and windows client?

The Windows server OS has the ability to establish and manage a domain network. A Windows client on the other hand can only join such a network but not control it.


What is a control statement?

The controlling statement controls the writing you will do


How can one change their desktop theme in Windows?

If you are running Windows Vista you can switch between the Windows Vista theme or the Original Windows theme. To change between the two you need to go to the start menu, select 'control panel', 'appearance and personalisation', 'personalisation' and then 'theme'. Select the theme you want.


What is multiple branching in gwbasic?

In gw-basic, when program control is transferred depending on a certain condition, it is called conditional transfer of control. To transfer control from one point to multiple points is called multiple branching. Statement used in gw-basic for this purpose is ON.....GOTO. Syntax: ON numeric variable or expression GOTO n1, n2, n3,....... The range o value of numeric variable or expression is 0 t0 255. n1, n2 are valid line numbers where control will be transferred. If the value of numeric variable or expression is 1, the control will be transferred to line number n1, in case of 2 to n2 and so on.


How do you open control panel from internet explorer 7?

Just type 'Control Panel' in your Windows search bar and hit return. :-)


Which term does this statement apply to control trade between states?

Congress under the Articles of Confederation could NOT(Nova Net)


In Windows XP why control panel is used?

The control panel in Windows XP is used to change and adjust the way Windows behaves and looks to the user.


Where is the Windows control panel?

The Windows control panel is located in the Start Menu and in settings. A person can also get to the Windows control panel by going into My Computer and scrolling through there.


What are break and continue statement in c language?

Break is used to exit the closest loop. Continue will cause the program to go to the beginning of the loop. for(int x=0;x<10;x++) { //continue; for(int y=0;y<10;y++) { break; } } The break statement causes the inner loop to stop at the first iteration. If the continue statement was uncommented, the inner loop would never be executed because the program would jump back to the beginning(until x = 10 of course).