Programming World👨💻
Open in Telegram
All programming language tutorials,courses and more..! For HTML: @html_web_learn For CSS: @CSS_web_learn For JS: @JavaScript_js_learn For PHP: @learn_php_web For Programming courses @Programmingworld_dev For CEH,Cybersec: @technical_stark
Show moreThe country is not specifiedTechnologies & Applications34 732
1 412
Subscribers
No data24 hours
-57 days
-1330 days
Posts Archive
1 412
The part of machine level instruction, which tells the central processor what has to be done, is
1 412
Which of the following is NOT a basic element of all versions of the E-R model?
1 412
#include
using namespace std;
int main () { int cin; cin >> cin; cout << "cin" << cin; return 0; }
1 412
Find out the correct statement for the following program.
#include
int * gPtr; int main() { int * lPtr = NULL; if(gPtr == lPtr) { printf("Equal!"); } else { printf("Not Equal"); } return 0; }
1 412
What is recurrence for WC of QS and what is the time complexity in WC?
WC - Worst Case
QS - Quick Sort
1 412
Software Engneering:
Which one of the following models is not suitable for accommodating any change?
1 412
OS:
Round robin scheduling falls under the category of ____________
1 412
Java:
While finding the correct location for saving key value pair, how many times the key is hashed?
1 412
Java:
When you pass an array to a method, the method receives______.
1 412
JAVA:
Which of these standard collection classes implements a dynamic array?
1 412
A process executes the code
fork();
fork(); fork(); The total number of child processes created are
1 412
C:
What will be the output of the following C program segment? char inchar = 'A'; switch (inchar) { case 'A' : printf ("choice A n") ; case 'B' : printf ("choice B ") ; case 'C' : case 'D' : case 'E' : default: printf ("No Choice") ; }
