Search Interview Questions | More than 3000 questions in repository. There are more than 900 unanswered questions. Click here and help us by providing the answer. Have a video suggestion. Click Correct / Improve and please let us know. |
|
| ||||
Design - Interview Questions and Answers for 'Canopy tax' - 4 question(s) found - Order By Newest | ||||
Frequently asked in face to face interviews. | ||||
| ||||
Ans. int count = 15; int[] fibonacci = new int[count]; fibonacci[0] = 0; fibonacci[1] = 1; for(int x=2; x < count; x++){ fibonacci[x] = fibonacci[x-1] + fibonacci[x-2]; } for(int x=0; x< count; x++){ System.out.print(fibonacci[x] + " "); } | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  ebay   fibonacci series Asked in 66 Companies basic   frequent | ||||
| ||||
This question was recently asked at 'Canopy Tax'.This question is still unanswered. Can you please provide an answer. | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve   Asked in 1 Companies expert | ||||
| ||||
This question was recently asked at 'Canopy Tax'.This question is still unanswered. Can you please provide an answer. | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve   Asked in 1 Companies | ||||
Library Management System has always been the favorite question. This questions is asked irrespective of level. | ||||
| ||||
Ans. Following could be the business sub domains or database schemas in such a system 1. Users / Members 2. Sourcing 3. Inventory Management 4. Operations Following services end points could be there 1. Users - addNewUser ( put ), removeUser ( post ) 2. Sourcing - addSupplier ( put ), removeSupplier ( post ) 3. Inventory Management - getInventory ( get ) 4. Operations - checkIn ( post ), checkout ( post ) There could be following Tables in Database 1. Users / Members - MEMBER, MEMBERSHIP_TYPE 2. Sourcing - SUPPLIER, SUPPLIER_PRODUCT, PRODUCT_REORDER_LEVELS 3. Inventory Management - INVENTORY,PRODUCTS 4. Operations - TRANSACTION | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  database  architecture  design Asked in 1 Companies | ||||