C. यह उसी फाइल डेटा के लिए एक अतिरिक्त नाम प्रदान करती है/It provides an additional name for the same file data
Explanation
Simple Explanation
कठोर कड़ी और मूल नाम समान फाइल डेटा को संदर्भित कर सकते हैं। एक नाम हटने पर दूसरा नाम डेटा तक पहुंच बनाए रख सकता है। / A hard link and the original name can refer to the same file data. Removing one name may leave the data accessible through another.
C. फाइल तंत्र संरचना की त्रुटियाँ पहचानना/Detect errors in the file-system structure
Explanation
Simple Explanation
फाइल तंत्र जाँच उपयोगिता निर्देशिका और भंडारण संबंधी असंगतियाँ खोजती है। परीक्षा में इसे प्रतिविषाणु से अलग रखें। / A file-system check utility detects directory and storage inconsistencies. Distinguish it from antivirus software.
D. बदलाव होने पर गणना किया गया मान अलग हो सकता है/The calculated value may differ if the file has changed
Explanation
Simple Explanation
समान फाइल से समान हैश मिलने की अपेक्षा होती है। अलग हैश फाइल में परिवर्तन या क्षति का संकेत दे सकता है। / The same file is expected to produce the same hash. A different hash may indicate modification or corruption.
D. हटाई गई फाइल के आँकड़ों पर नया आँकड़ा लिखा जा सकता है/New data may overwrite the deleted file's data
Explanation
Simple Explanation
हटाई गई फाइल का स्थान नया आँकड़ा लिखने के लिए उपलब्ध माना जा सकता है। परीक्षा में पुनर्प्राप्ति तक यंत्र का उपयोग रोकें। / The space of a deleted file may be treated as available for new data. Stop using the device until recovery is attempted.
A. परिवर्तन या तो पूरा लागू होगा या बिल्कुल लागू नहीं होगा/The change is either fully applied or not applied at all
Explanation
Simple Explanation
परमाण्विकता अधूरे परिवर्तन से असंगत डेटा बनने का जोखिम घटाती है। इसे पूरा या कुछ नहीं सिद्धांत के रूप में याद रखें। / Atomicity reduces the risk of inconsistent data from partial changes. Remember it as the all-or-nothing principle.
A. फाइल स्थानांतरण के बाद सामग्री में बदलाव जाँचने के लिए/To check for content changes after a file transfer
Explanation
Simple Explanation
स्थानांतरण से पहले और बाद की जाँच राशि मिलाकर अखंडता जाँची जा सकती है। परीक्षा में इसे सुरक्षा अनुमति से अलग समझें। / Checksums before and after transfer can be compared to verify integrity. Distinguish this from access permission.
फ्लश करने से स्मृति में प्रतीक्षारत डेटा भंडारण पर लिखा जाता है। सुरक्षित निष्कासन से पहले यह प्रक्रिया महत्वपूर्ण हो सकती है। / Flushing writes buffered data waiting in memory to storage. It can be important before safely removing a device.
B. आकार केवल कुल बाइट बताता है सामग्री का क्रम नहीं/Size shows only the total bytes and not their arrangement
Explanation
Simple Explanation
समान बाइट संख्या वाली फाइलों में अलग आँकड़ा हो सकता है। परीक्षा में तुलना के लिए जाँच राशि अधिक उपयोगी मानें। / Files with the same number of bytes may contain different data. A checksum is more useful for content comparison.
C. अचानक बिजली जाने पर लंबित डेटा खोना/Losing pending data during sudden power failure
Explanation
Simple Explanation
लेखन कैश डेटा को पहले तेज स्मृति में रखता है और बाद में भंडारण पर लिखता है। अचानक बिजली जाने से अभी न लिखा गया डेटा खो सकता है। / Write caching first keeps data in fast memory and writes it to storage later. Pending data may be lost during a sudden power failure.
C. फाइल को कार्यक्रम या आदेश के रूप में चलाया जा सकता है/The file can be run as a program or command
Explanation
Simple Explanation
निष्पादन अधिकार किसी उपयुक्त फाइल को चलाने की अनुमति देता है। परीक्षा में पढ़ने लिखने और निष्पादन अधिकार अलग रखें। / Execute permission allows a suitable file to run as a program or command. Distinguish read write and execute permissions.