88 views

Please log in or register to answer this question.

Position:
Show:

Related questions

1 1 vote
1 1 answer
130
130 views
PRASHANT_RANJAN asked Jun 30
130 views
When the OS loads a program from the hard disk into the main memory, is it called a process or program ? Or does it become a process only when the CPU starts executing it...
8 8 votes
3 3 answers
346
346 views
GO Classes asked Jun 25
346 views
What is the output of the following code?#include <stdio.h int main() { int x = 10; int *p = &x; int q = &p; q = q + 4; *p = *p + 1; printf("%d %d", x, q); return 0; ...
1 1 vote
1 1 answer
99
99 views
GO Classes asked Jun 20
99 views
Consider the following Python code:t = ("GATE", 2027, "DA", 3.5) single = ("AI",) print(t[0], t[-2], t[1:3], len(single))What is the output of the code above?GATE 2027 ('...