COMPUTER DYNASTY

The content related to Computer Science and Engineering.


COMPUTER DYNASTY

What is the result of logical or relational expression in C?

1 year ago | [YT] | 0

COMPUTER DYNASTY

Functions in C Language are always _________

1 year ago | [YT] | 0

COMPUTER DYNASTY

Which is valid C expression?

1 year ago | [YT] | 0

COMPUTER DYNASTY

What is the result of following python code snippet?
print(5//2)
print(-5//2)

1 year ago | [YT] | 0

COMPUTER DYNASTY

What will be the result of the following code snippet?
#include <stdio.h>
void solve()
{
char ch[5] = "fghij";
int ans = 0;
for(int i = 0; i < 5; i++)
{
ans += (ch[i] - 'a');
}
printf("%d", ans);
}
int main()
{
solve();
return 0;
}

1 year ago | [YT] | 0

COMPUTER DYNASTY

What is #include <stdio.h>?

1 year ago | [YT] | 0

COMPUTER DYNASTY

Which technology is often used to process and analyze large-scale datasets in Data Science

1 year ago | [YT] | 0

COMPUTER DYNASTY

Machine learning is a subset of which of the following.

1 year ago | [YT] | 0

COMPUTER DYNASTY

What is the output for this python code
arr=[10,20,30,40,50,60]
print(arr[-1])
print(arr[0])

1 year ago | [YT] | 0

COMPUTER DYNASTY

Find the output of this program?
main()
{
int a=68, b=100;
printf("%c%c", a,b);
}

1 year ago | [YT] | 0