Home » Full Stack Development (Page 2)

Category Archives: Full Stack Development

sum=0echo “enter 10 number:”n=1while [ $n -le 10 ]doread nsum=$((sum+n))n=$((n+1))doneecho “The sum of 10 number :$sum”

Continue Reading →

echo “enter string”read secho “Length of String:” ${#s} r=$(echo “$s”|rev ) if [ “$s” == “$r” ]thenecho “The String is Palindrome”elseecho ” The String is not Palindrome”fi vowel_count=$(echo “$s” | grep -o “[aeiou]” | wc -l)echo “Total number of vowels: $vowel_count”

Continue Reading →

Continue Reading →

Continue Reading →

Continue Reading →

Continue Reading →

Continue Reading →

Continue Reading →

Continue Reading →

Virtual Memory and Cache Memory – Concepts, Advantages & Differences

Exam Notes Virtual Memory & Cache Memory – Concepts, Working, Advantages & Differences Simple, point-wise notes with diagrams-in-words, formulas and comparison tables. Quick TOC: Virtual Memory (Concept & Working) Cache Memory (Concept & Working) VM vs Cache – Key Differences Deep Dive: Paging, TLB, Mapping & Misses Useful Formulas & Quick Examples Exam Tips 1) […]

Continue Reading →

Categories