Which is not a basic approach to the problem of conflict resolution in a production system? Correct Answer: D A Assigning a preference based on the […]
Question 424 Match the 5 CMM Maturity levels/CMMI staged representations in List-I with their characterizations in List-II : List-I List-II (a) Initial (i) Processes are improved […]
What is the time complexity of the following recursive function? int CompuFun (int n) { if(n<=2) return else return (CompuFun (floor(sqrt(n)))+n); } Correct Answer: D Question […]