Data categorization
DATA CATEGORIZATION Data categories are groupings of data with common characteristics or features. Data classification is the process of organizing data into categories for its … Read more
DATA CATEGORIZATION Data categories are groupings of data with common characteristics or features. Data classification is the process of organizing data into categories for its … Read more
1. Data proliferation is an umbrella term concerned with the large number of files & amount of data stored by entities such as governments &businesses. … Read more
PROGRAM TO IMPLEMENT FOR LOOP USING “in” KEYWORD ?फॉर लूप का उपयोग किसी स्टेटमेंट को या फिर ग्रुप ऑफ़ स्टेटमेंट्स को बार बार दोहराने के … Read more
PROGRAM TO IMPLEMENT FOR LOOP WITHOUT USING “in” KEYWORD.
PROGRAM TO IMPLEMENT DIFFERENT TYPES OF INCREMENT
PROGRAM TO IMPLEMENT FOR LOOP USING “sequence” KEYWORD.
PROGRAM TO IMPLEMENT WHILE LOOP.
Q. Conditional statements को दर्शाने के लिये शैल programming लिखिये।Ans.Bash में निम्लिखित कंडीशनल स्टेटमेंट्स है –<![if !supportLists]> 1) <![endif]> if..then..fi statement (Simple If)<![if !supportLists]> 2) <![endif]> if..then..else..fi statement (If-Else)<![if !supportLists]> 3) <![endif]> if..elif..else..fi statement (Else If ladder)<![if !supportLists]> 4) <![endif]> if..then..else..if..then..fi..fi..(Nested … Read more
Q.एक ऐसा शैल program लिखिए जो कि एक string को reverse order मे print करे।Ans.read -p “Enter string:” stringlen=${#string}for (( i=$len-1; i>=0; i– ))do# “${string:$i:1}”extract single single character from string.reverse=”$reverse${string:$i:1}”doneecho “$reverse”
Q. शैल programming मे parameter किस प्रकार से पास करते है? समझाइये ।ORशैल programming मे parameter और agreement को उदाहरण सहित विस्तार से समझाइये ।Ans. शैल स्क्रिप्ट मे पैरामीटर को पास करने के लिए सर्वप्रथम शैल स्क्रिप्ट क्रिएट … Read more