⟩ What is a Real-Time System?
A real time process is a process that must respond to the events within a certain time period. A real time operating system is an operating system that can run real time processes successfully
A real time process is a process that must respond to the events within a certain time period. A real time operating system is an operating system that can run real time processes successfully
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?
Which Linux services provides network printing?
What platform of Linux was originally created to run on?
What is the mean of GPL?