Company: CARS24_30oct
Difficulty: medium
What will be the output of the following Python code? print(4+2*3//30) 0 3 7 77 How does Retrieval-Augmented Generation (RAG) improve AI-generated responses? It reduces the number of training steps needed for fine-tuning. It retrieves and incorporates relevant external information to generate more accurate responses. It allows models to self-correct errors in real-time. It increases the number of parameters in the model to store more knowledge. You need to arrange object hierarchies such that the client code can access both the individual objects and compositions in a uniform manner. Which design pattern would be most suitable? Adapter Design Pattern Composite Adapter Design Pattern Composite Design Pattern Composite Factory Design Pattern Which one of the following is the recurrence equation for the worst-case time complexity of the Quicksort algorithm for sorting n numbers? In the recurrence equations given in the options below, c is a constant. T(n) = T(n/2) + cn T(n) = T(n - 1) + T