⟩ Difference between Primary storage and secondary storage?
Main memory:
only large storage media that the CPU can access directly.
Secondary storage:
extension of main memory that provides large nonvolatile storage capacity.
Main memory:
only large storage media that the CPU can access directly.
Secondary storage:
extension of main memory that provides large nonvolatile storage capacity.
The next statement a) immediately stops processing the current record b) go to the next record c) both (a) and (b) d) none of the mentioned
What is the output of this program? #! /usr/bin/awk -f BEGIN { a=5 while (a<5) { print "google" a++; } } a) nothing will print b) "google" will print 5 times c) program will generate syntax error d) none of the mentioned
What is the output of this program? #! /usr/bin/awk -f BEGIN { a=6 do { print "google" a++ } while (a<5) } a) nothing will print b) "google" will print 5 times c) "google" will print 4 times d) "google" will print only 1 time
What is the output of this program? #! /usr/bin/awk -f BEGIN { for(i=0;i<=5;i++) { print i i++ } } a) 0,2,4 will print b) 1,3,5 will print c) 1,2,3,4,5 will print d) syntax error because i is not initialised
What is the output of this program? #! /usr/bin/awk -f BEGIN { a=0 do { print "google" a++ } while (a<5) } a) "google" will print 4 times b) "google" will print 5 times c) nothing will print d) syntax error
The command "awk '{if ("9″>"10″) print "google" else print "linux"}'" a) will print "google" b) will print "linux" c) will generate syntax error d) none of the mentioned
Tell me which components of Linux provides pre-written code that a developer can use?
Tell me which Linux service is used as a database server?
Tell me which Linux service is used to turn a Linux system in proxy server?
What Linux service is used to provide network file storage?