LTI Interview Questions | Real Experience - Part 2
Which is your favorite cricket player? - Virat Kohli
Why Virat Kohli is your favorite? (As I told Virat Kohli as my favorite player)
- He is counted amongst the top sportsmen in India. Virat Kohli is an inspiration and a role model for the youth today. We have seen his growing maturity, his consistency, and his leadership abilities.Why did India lose the first test match against Australia?
The lack of wicket-taking prowess of the Indian bowling unit has been the major reasonWhat feature do you like to add to WhatsApp?
- Polls, Blur faces before sending images
Message reactions, Scheduled messages
Leave WhatsApp group without notifying other membersWhat is data structure?
- A data structure is a particular way of organizing data in a computer so that it can be used effectively.
- Array, Pointer, Structure, Linked List, Stack, Queue, Graph, Searching, SortingWhat is a stack?
- Stack is a linear data structure which follows a particular order in which the operations are performed. The order may be LIFO(Last In First Out) or FILO(First In Last Out).How much do you know Python?
IntermediateDo you know any trending technology?
AI ML BlockchainDid you do any courses on that technology?
YesTell me about the file storage and data storage?
(At last)Any questions for me?
Blockchain
- Blockchain is a system of recording information in a way that makes it difficult or impossible to change, hack, or cheat the system. A blockchain is essentially a digital ledger of transactions that is duplicated and distributed across the entire network of computer systems on the blockchain.
Select *from employee group by salary order by salary desc limit 1,1;
2nd largest sal
SELECT MAX(SALARY) FROM Employee WHERE SALARY < (SELECT MAX(SALARY) FROM Employee);
SELECT MAX(SALARY) FROM Employee; - ForHigh Sal