Previous 10 Questions — JECA MCA 2024
Nearest first
1
2
3
4
5
6
7
8
9
10
What is the output of following C code? int main(){ int x=2, y=1; x *= x + y; printf("%d", x); }
Topic: JECA MCA 2024
In DMA transfers, the required signals and addresses are given by the ____.
Topic: JECA MCA 2024
What is the purpose of the confusion matrix in machine learning?
Topic: JECA MCA 2024
The _____ is an asymmetric key cryptographic algorithm.
Topic: JECA MCA 2024
What is the output of the following C-program?\n#include\n#define CUBE(x) (x*x*x)\nint main() { int a, b=3; a = CUBE(b+…
Topic: JECA MCA 2024
Regression is a type of:
Topic: JECA MCA 2024
Which of the following should not have transitive dependency?
Topic: JECA MCA 2024
Which C keyword is used to extend the visibility of variables?
Topic: JECA MCA 2024
How can you display a list of all files including the hidden files?
Topic: JECA MCA 2024
What is the output of the following C-program?#includeint main() { const int a=10; printf("%d", +a); ret…
Topic: JECA MCA 2024
Next 10 Questions — JECA MCA 2024
Ascending by ID
1
2
3
4
5
6
7
8
9
10
If there are 32 segments each of size 1K bytes, then the logical address should have
Topic: JECA MCA 2024
In software engineering the tester does not know the internal designs of the software application in case of _____ test…
Topic: JECA MCA 2024
What is the output of the following code snippet? #include int main(){ int x; x = 5 > 8 ? 10 : 1 != 2 < 5 ? 20 : 30; pr…
Topic: JECA MCA 2024
_____ is a measure of the degree of interdependence between modules.
Topic: JECA MCA 2024
The permission -rwx r-- r-- represented in octal expression will be
Topic: JECA MCA 2024
What will be the output of the C code? #include int main(){ int a=1; if(a--) printf("True"); if(a++) printf("False"); }
Topic: JECA MCA 2024
Which command changes a file's group owner?
Topic: JECA MCA 2024
Which of the following is an example of a classification problem?
Topic: JECA MCA 2024
What is the output of the C-program? int main(){ int i=0; int x=i++; int y=++i; printf("%d %d", x,y); }
Topic: JECA MCA 2024
What is the difference between supervised and unsupervised learning?
Topic: JECA MCA 2024