Previous 10 Questions — JECA MCA 2024
Nearest first
1
2
3
4
5
6
7
8
9
10
What is the output of the following code snippet? int main(){ int i,k=5; if(i=k){ printf("YES"); } else { printf("NO");…
Topic: JECA MCA 2024
_____ specification is also known as the SRS document.
Topic: JECA MCA 2024
Identify the incorrect constructor type:
Topic: JECA MCA 2024
What is the output of the C-program? int main(){ int i=0; while(i=0) printf("True"); printf("False"); }
Topic: JECA MCA 2024
In an ER diagram, an entity set is represented by a
Topic: JECA MCA 2024
If a file has read and write permission for the owner, then the octal representation of the permissions will be:
Topic: JECA MCA 2024
Which of the following feature is shown by function overriding?
Topic: JECA MCA 2024
What is the difference between supervised and unsupervised learning?
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
Which of the following is an example of a classification problem?
Topic: JECA MCA 2024
Next 10 Questions — JECA MCA 2024
Ascending by ID
1
2
3
4
5
6
7
8
9
10
Given an unsorted array where each element is at most k distance from its position in a sorted array. Which sorting alg…
Topic: JECA MCA 2024
Which one of the following is a synchronization tool?
Topic: JECA MCA 2024
When a process is in a "Blocked" state waiting for some I/O service, once completed it goes to the ____.
Topic: JECA MCA 2024
A process is thrashing if ____.
Topic: JECA MCA 2024
_____ is not among the eight principles followed by the Software Code of Ethics and Professional Practice.
Topic: JECA MCA 2024
Making class members inaccessible to nonmember functions is an example of:
Topic: JECA MCA 2024
In a relational database, what does the term "ACID" stand for?
Topic: JECA MCA 2024
Which of the given statement is the correct recurrence for the worst case of Binary Search?
Topic: JECA MCA 2024
Which of the following statements about primary key in a database table is true?
Topic: JECA MCA 2024
Which of the following data structure is required to convert an arithmetic expression in infix form to its equivalent p…
Topic: JECA MCA 2024