├── LICENSE ├── README.md └── all_company_interview.ipynb /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Data-Science-interview-questions- 2 | data science interview questions company wise which include the data analyst , junior data scientist , machine learning engineer etc. position questions with their answers 3 | -------------------------------------------------------------------------------- /all_company_interview.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "code", 5 | "execution_count": null, 6 | "metadata": {}, 7 | "outputs": [], 8 | "source": [ 9 | "Company: Google\n", 10 | "\n", 11 | "Role: Data Scientist\n", 12 | "\n", 13 | " \n", 14 | "\n", 15 | "Why do you use feature selection?\n", 16 | "What is the effect on the coefficients of logistic regression if two 3. predictors are highly correlated?\n", 17 | "What are the confidence intervals of the coefficients?\n", 18 | "What’s the difference between Gaussian Mixture Model and K-Means?\n", 19 | "How do you pick k for K-Means?\n", 20 | "How do you know when Gaussian Mixture Model is applicable?\n", 21 | "Assuming a clustering model’s labels are known, how do you evaluate the performance of the model?\n", 22 | "\n", 23 | "\n", 24 | "\n", 25 | "Company: Uber\n", 26 | "\n", 27 | "Role: Data Scientist\n", 28 | "\n", 29 | " \n", 30 | "\n", 31 | "Pick any product or app that you really like and describe how you would improve it.\n", 32 | "How would you find an anomaly in a distribution ?\n", 33 | "How would you go about investigating if a certain trend in a distribution is due to an anomaly?\n", 34 | "How would you estimate the impact Uber has on traffic and driving conditions?\n", 35 | "What metrics would you consider using to track if Uber’s paid advertising strategy to acquire new customers actually works? How would you then approach figuring out an ideal customer acquisition cost?\n", 36 | " \n", 37 | "\n", 38 | "Company: TCS\n", 39 | "\n", 40 | "Role: Data Scientist\n", 41 | "\n", 42 | " \n", 43 | "\n", 44 | "Explain about Time series models you have used?\n", 45 | "SQL Questions - Group by Top 2 Salaries for Employees - use Row num and Partition\n", 46 | "Pandas find Numeric and Categorical Columns. For Numeric columns in Data frame, find the mean of the entire column and add that mean value to each row of those numeric columns.\n", 47 | "What is Gradient Descent? What is Learning Rate and Why we need to reduce or increase? Why Global minimum is reached and Why it doesn’t improve when increasing the LR after that point?\n", 48 | "What is Log-Loss and ROC-AUC?\n", 49 | "What is Multi-collinearity? How will you choose one features if there are 2 highly correlated features? Give Examples with the techniques used.\n", 50 | "VIF – Variance Inflation Factor – Explain.\n", 51 | "Do you know to use Amazon SageMaker for MLOPS?\n", 52 | "Explain your Projects end to end (15-20mins).\n", 53 | " \n", 54 | "\n", 55 | "Company: Capital One\n", 56 | "\n", 57 | "Role: Data Scientist\n", 58 | "\n", 59 | " \n", 60 | "\n", 61 | "How would you build a model to predict credit card fraud?\n", 62 | "How do you handle missing or bad data?\n", 63 | "How would you derive new features from features that already exist?\n", 64 | "If you’re attempting to predict a customer’s gender, and you only have 100 data points, what problems could arise?\n", 65 | "Suppose you were given two years of transaction history. What features would you use to predict credit risk?\n", 66 | "Design an AI program for Tic-tac-toe\n", 67 | "Explain overfitting and what steps you can take to prevent it.\n", 68 | "Why does SVM need to maximize the margin between support vectors? \n", 69 | "\n", 70 | "\n", 71 | "\n", 72 | "Company: Latentview Analytics\n", 73 | "\n", 74 | "Role: Data Scientist\n", 75 | "\n", 76 | "Experience: 2 years\n", 77 | "\n", 78 | " \n", 79 | "\n", 80 | "What is mean and median\n", 81 | "Difference between normal and gaussian\n", 82 | "distribution\n", 83 | "\n", 84 | "What is central limit theorem\n", 85 | "What is null hypothesis\n", 86 | "What is confidence interval\n", 87 | "What is covariance and correlation and how will u\n", 88 | "interpret it.\n", 89 | "\n", 90 | "How will you find out the outliers in the dataset\n", 91 | "and is it always to remove outliers\n", 92 | "\n", 93 | "Explain about Machine Learning\n", 94 | "Explain the algorithm of your choice\n", 95 | "Different methods of missing values imputation\n", 96 | "Explain me your ml project\n", 97 | "How did you handle imbalance dataset\n", 98 | "What is stratified samplings\n", 99 | "Difference between standard scalar and normal\n", 100 | "scalar\n", 101 | "\n", 102 | "Company: Verizon\n", 103 | "\n", 104 | "Role: Data Scientist\n", 105 | "\n", 106 | " \n", 107 | "\n", 108 | " How many cars are there in Chennai? How do u structurally approach coming up with that number?\n", 109 | " Multiple Linear Regression?\n", 110 | " OLS vs MLE?\n", 111 | " R2 vs Adjusted R2? During Model Development which one do we consider?\n", 112 | " Lift chart, drift chart\n", 113 | " Sigmoid Function in Logistic regression\n", 114 | " ROC what is it? AUC and Differentiation?\n", 115 | " Linear Regression from Multiple Linear Regression\n", 116 | " P-Value what is it and its significance? What does P in P-Value stand for? What is Hypothesis Testing? Null hypothesis vs Alternate Hypothesis?\n", 117 | "Bias Variance Trade off?\n", 118 | "Over fitting vs Underfitting in Machine learning?\n", 119 | "Estimation of Multiple Linear Regression\n", 120 | "Forecasting vs Prediction difference? Regression vs Time Series?\n", 121 | "p,d,q values in ARIMA models\n", 122 | "\n", 123 | "\n", 124 | "\n", 125 | "Company: Fractal\n", 126 | "\n", 127 | "Role: Data Scientist\n", 128 | "\n", 129 | " \n", 130 | "\n", 131 | "1.Difference between array and list\n", 132 | "\n", 133 | "2.Map function\n", 134 | "\n", 135 | "Scenario,\n", 136 | "if coupon distributed randomly to customers of swiggy, how to check there buying behavior.\n", 137 | "\n", 138 | "Use segmenting customers\n", 139 | "\n", 140 | "Compare customers who got coupon and who did not\n", 141 | "\n", 142 | "Which is faster dictionary or list for look up\n", 143 | "How to merge two arrays\n", 144 | "How much time svm takes to complete if 1 iteration takes 10sec for 1st class.\n", 145 | "And there are 4 classes.\n", 146 | "\n", 147 | "Kernals in svm, there difference\n", 148 | "\n", 149 | "\n", 150 | "\n", 151 | "\n", 152 | "Company name: Infosys\n", 153 | "\n", 154 | "Role: Data scientist\n", 155 | "\n", 156 | " \n", 157 | "\n", 158 | "1) curse of dimensionality? How would you handle it?\n", 159 | "\n", 160 | "2) How to find the multi collinearity in the data set\n", 161 | "\n", 162 | "3)Explain the difference ways to treat multi collinearity!\n", 163 | "\n", 164 | "4) How you decide which feature to keep and which feature to eliminate after performing multi collinearity test?\n", 165 | "\n", 166 | "5)Explain logistic regression\n", 167 | "\n", 168 | "6)we have sigmoid function which gives us the probabilty between 0-1 then what is the need of logloss in logistic regression?\n", 169 | "\n", 170 | "7) P value and its significance in statistical testing?\n", 171 | "\n", 172 | "8) How do you split the time series data and evaluation metrics for time series data\n", 173 | "\n", 174 | "9) How did you deploy your model in production? How often do you retrain it?\n", 175 | "\n", 176 | "\n", 177 | "\n", 178 | "\n", 179 | "Company: Wipro\n", 180 | "\n", 181 | "Role: Data Scientist\n", 182 | "\n", 183 | " \n", 184 | "\n", 185 | "Difference between WHERE and HAVING in SQL\n", 186 | "Basics of Logistics Regression\n", 187 | "How do you treat outliers ?\n", 188 | "Explain confusion matrix ?\n", 189 | "Explain PCA (Wanted me to explain the co-variance matrix and eigen vectors and values and the mathematical expression and mathematical derivation for co-variance matrix)\n", 190 | "How do you cut a cake into 8 equal parts using only 3 straight cuts ?\n", 191 | "Explain kmeans clustering\n", 192 | "How is KNN different from k-means clustering?\n", 193 | "What would be your strategy to handle a situation indicating an imbalanced dataset?\n", 194 | "Stock market prediction: You would like to predict whether or not a certain company will declare bankruptcy within the next 7 days (by training on data of similar companies that had previously been at risk of bankruptcy). Would you treat this as a classification or a regression problem?\n", 195 | "\n", 196 | "\n", 197 | "\n", 198 | "Company: Accenture\n", 199 | "\n", 200 | "Role: Data Scientist\n", 201 | "\n", 202 | " \n", 203 | "\n", 204 | "What is difference between K-NN and K-Means clustering?\n", 205 | "How to handle missing data? What imputation techniques can be used?\n", 206 | "Explain topic modelling in NLP and various methods in performing topic modeling.\n", 207 | "Explain how you would find and tackle an outlier in the dataset.\n", 208 | "Follow up: What about inlier?\n", 209 | "Explain back propagation in few words and its variants?\n", 210 | "Is interpretability important for machine learning model? If so, ways to achieve interpretability for a machine learning models?\n", 211 | "Is interpretability important for machine learning model? If so, ways to achieve interpretability for a machine learning models?\n", 212 | "How would you design a data science pipeline?\n", 213 | "Explain bias - variance trade off. How does this affect the model?\n", 214 | "What does a statistical test do?\n", 215 | "How to determine if a coin is biased? Hint: Hypothesis testing \n", 216 | "\n", 217 | "\n", 218 | "\n", 219 | "\n", 220 | "Company: Tiger Analytics\n", 221 | "\n", 222 | "Role: Senior Analyst\n", 223 | "\n", 224 | " \n", 225 | "\n", 226 | "What is deep learning, and how does it contrast with other machine learning algorithms?\n", 227 | "2.When should you use classification over regression?\n", 228 | "\n", 229 | "3.Using Python how do you find Rank, linear and tensor equations for an given array of elements? Explain your approach.\n", 230 | "\n", 231 | "4.What exactly do you know about Bias-Variance decomposition? 5.What is the best recommendation technique you have learnt and what type of recommendation technique helps to predict ratings? 6.How can you assess a good logistic model?\n", 232 | "\n", 233 | "7.How to you read the text from an image? Explain?\n", 234 | "\n", 235 | "8.What are all the options to convert speech to text? Explain and name few available tools to implement the same?\n", 236 | "\n", 237 | "\n", 238 | "\n", 239 | "\n", 240 | "\n", 241 | "My checklist before going for an SQL round of interview:\n", 242 | "\n", 243 | " \n", 244 | "\n", 245 | "WHERE , AND, OR, NOT, IN\n", 246 | "ORDER BY, ASC, DESC\n", 247 | "IS NULL\n", 248 | "LIMIT\n", 249 | "MIN, MAX, COUNT, AVG, SUM\n", 250 | "LIKE, WILDCARDS\n", 251 | "IN BETWEEN\n", 252 | "INNER JOIN\n", 253 | "LEFT JOIN\n", 254 | "Subqueries(most important)\n", 255 | "UNION\n", 256 | "GROUP BY\n", 257 | "HAVING\n", 258 | "LEFT, RIGHT, MID, CONCAT\n", 259 | "PARTITION BY, OVER\n", 260 | "LEAD,LAG\n", 261 | "RANK, DENSE_RANK, PERCENT_RANK\n", 262 | "ROW_NUMBER, CUME_DIST\n", 263 | "FIRST_VALUE, LAST_VALUE\n", 264 | "AS\n", 265 | "\n", 266 | "\n", 267 | "\n", 268 | "Company Name : Tata IQ\n", 269 | "\n", 270 | "Role: Data Analyst\n", 271 | "\n", 272 | " \n", 273 | "\n", 274 | "Why data science as a career?\n", 275 | "\n", 276 | "Stats:\n", 277 | "\n", 278 | "What is p value?\n", 279 | "\n", 280 | "What is histograms?\n", 281 | "\n", 282 | "What is confidence interval?\n", 283 | "\n", 284 | "You are a Sr data analyst at a new Online Cab booking Startups\n", 285 | "\n", 286 | "How you will do data collection and how you will leverage the data to give useful insights to the Company?\n", 287 | "\n", 288 | "Guestimate: No Of cabs booking per day in Ranchi\n", 289 | "\n", 290 | "You are product head manager(not remember exactly) at a NBFC which gives a Secured loans what factors will you consider giving loan to ?\n", 291 | "\n", 292 | "Inventory Database based on that have to do basic pandas/sql query? Joins / merge to get avg sales, its chart?\n", 293 | "\n", 294 | "You have a list of 3 numbers return the min diff. Can use any python/sql\n", 295 | "\n", 296 | "What is Big Data?\n", 297 | "\n", 298 | "\n", 299 | "\n", 300 | "\n", 301 | "Role: Junior Data Scientist\n", 302 | "\n", 303 | " \n", 304 | "\n", 305 | "1) Explain the architecture of CNN\n", 306 | "\n", 307 | "2)If we put a 3×3 filter over 6×6 image what will be the size of the output image\n", 308 | "\n", 309 | "3) What will you do to reduce overfitting In deep learning models\n", 310 | "\n", 311 | "3) Can you write a program for inverted star program in python\n", 312 | "\n", 313 | "4)Write a program to create a dataframe and remove elements from it\n", 314 | "\n", 315 | "5) I have 2 guns with 6 holes in each, and I load a single bullet In each gun, what is the probability that if I fire the guns simultaneously atleast 1 gun will fire (atleast means one or more than one)\n", 316 | "\n", 317 | "5) There are 2 groups g1 and g2, g1 will ask g2 members to give them 1 member so thay they both will be equal in number, g2 will ask g1 members to give them 1 member so thay they will be double of g1, how many members are there in the groups (I'm not sure of this question as I tried to solve but didnt get correct answer)\n", 318 | "\n", 319 | "\n", 320 | "\n", 321 | "\n", 322 | "Some Data Science Companies(not ranked) for Job Hunting:\n", 323 | "\n", 324 | " \n", 325 | "\n", 326 | "Genpact\n", 327 | "Tredence Analytics\n", 328 | "Fractal Analytics\n", 329 | "Tiger Analytics\n", 330 | "Bridgei2i\n", 331 | "Ugam\n", 332 | "Latent View\n", 333 | "Brillio\n", 334 | "Abzooba\n", 335 | "AbsolutData\n", 336 | "Gramemer\n", 337 | "BluePi\n", 338 | "Knowledge Foundry\n", 339 | "Wipro\n", 340 | "TCS\n", 341 | "Accenture\n", 342 | "Purplle\n", 343 | "AbsoluteData\n", 344 | "Hansa CEquity\n", 345 | "Lymbyc\n", 346 | "IBM\n", 347 | "PwC\n", 348 | "EY\n", 349 | "KPMG\n", 350 | "Sibia\n", 351 | "ZS\n", 352 | "ZF\n", 353 | "TechVantage\n", 354 | "L&T Infotech\n", 355 | "Cognizant\n", 356 | "Amazon\n", 357 | "Microsoft\n", 358 | "Walmart\n", 359 | "Philips\n", 360 | "Ford\n", 361 | "JP Morgan\n", 362 | "Deloitte\n", 363 | "Shell\n", 364 | "Mu Sigma\n", 365 | "Postman\n", 366 | "Altrix\n", 367 | "HP\n", 368 | "HCL\n", 369 | "Dell\n", 370 | "Paypal\n", 371 | "Fidelity Investments\n", 372 | "Rakuten\n", 373 | "Infosys\n", 374 | "Flipkart\n", 375 | "Myntra\n", 376 | "\n", 377 | "\n", 378 | "\n", 379 | "Company: Mindtree\n", 380 | "\n", 381 | "Role: Data Scientist\n", 382 | "\n", 383 | " \n", 384 | "\n", 385 | "What is central tendency\n", 386 | "Which central tendency method is used If there exists any outliers\n", 387 | "Central limit theorem\n", 388 | "Chi-Square test\n", 389 | "A/B testing\n", 390 | "Difference between Z and t distribution (Linked to A/B testing)\n", 391 | "Outlier treatment method\n", 392 | "ANOVA test\n", 393 | "Cross validation\n", 394 | "How will you work in a machine learning project if there is a huge imbalance in the data\n", 395 | "Formula of sigmoid function\n", 396 | "Can we use sigmoid function in case of multiple classification\n", 397 | "What is Area under the curve\n", 398 | "Which metric is used to split a node in Decision Tree\n", 399 | "What is ensemble learning\n", 400 | "3 situation based questions\n", 401 | "\n", 402 | "\n", 403 | "\n", 404 | "Company: Genpact\n", 405 | "\n", 406 | "Role: Data Scientist\n", 407 | "\n", 408 | " \n", 409 | "\n", 410 | "Why do we select validation data other than test data?\n", 411 | "Difference between linear logistic regression?\n", 412 | "Why do we take such a complex cost function for logistic?\n", 413 | "Difference between random forest and decision tree?\n", 414 | "How would you decide when to stop splitting the tree?\n", 415 | "Measures of central tendency\n", 416 | "What is the requirement of k means algorithm\n", 417 | "Which clustering technique uses combining of clusters\n", 418 | "Which is the oldest probability distribution\n", 419 | "What all values does a random variable can take\n", 420 | "Types of random variables\n", 421 | "Normality of residuals\n", 422 | "\n", 423 | "\n", 424 | "\n", 425 | "\n", 426 | "Company: Ford\n", 427 | "\n", 428 | "Role: Data Scientist\n", 429 | "\n", 430 | " \n", 431 | "\n", 432 | "How would you check if the model is suffering from multi Collinearity?\n", 433 | "What is transfer learning? Steps you would take to perform transfer learning.\n", 434 | "Why is CNN architecture suitable for image classification? Not an RNN?\n", 435 | "What are the approaches for solving class imbalance problem?\n", 436 | "When sampling what types of biases can be inflected? How to control the biases?\n", 437 | "Explain concepts of epoch, batch, iteration in machine learning.\n", 438 | "What type of performance metrics would you choose to evaluate the different classification models and why?\n", 439 | "What are some of the types of activation functions and specifically when to use them? \n", 440 | "What are the conditions that should be satisfied for a time series to be stationary?\n", 441 | "What is the difference between Batch and Stochastic Gradient Descent?\n", 442 | "What is difference between K-NN and K-Means clustering?\n", 443 | "\n", 444 | "\n", 445 | "\n", 446 | "Company: Quantiphi\n", 447 | "\n", 448 | "Role: Machine Learning Engineer\n", 449 | "\n", 450 | " \n", 451 | "\n", 452 | "What happens when neural nets are too small? What happens when they are large enough?\n", 453 | "Why do we need pooling layer in CNN? Common pooling methods?\n", 454 | "Are ensemble models better than individual models? Why/why - not?\n", 455 | "Use Case - Consider you are working for pen manufacturing company. How would you help sales team with leads using Data analysis?\n", 456 | "Assume you were given access to a website google analytics data.\n", 457 | "In order to increase conversions, how do you perform A/B testing to identify best page design.\n", 458 | "How is random forest different from Gradient boosting algorithm, given both are tree-based algorithm?\n", 459 | "Describe steps involved in creating a neural network?\n", 460 | "In brief, how would you perform the task of sentiment analysis? \n", 461 | "\n", 462 | "\n", 463 | "\n", 464 | "Company: TheMathCompany\n", 465 | "\n", 466 | "Role: Analyst (Data Science)\n", 467 | "\n", 468 | " \n", 469 | "\n", 470 | "Central limit theorem\n", 471 | "Hypotheses testing\n", 472 | "P value\n", 473 | "T-test\n", 474 | "Assumptions of linear regression.\n", 475 | "Correlation and covariance.\n", 476 | "How to identify & treat outliers and missing values.\n", 477 | "Explain Box and whisker plot.\n", 478 | "Explain any unsupervised learning algorithm.\n", 479 | "Explain Random forest.\n", 480 | "Business and technical questions related to your project.\n", 481 | "Explain any scope of improvement in your project.\n", 482 | "Questions based on case studies.\n", 483 | "Write SQL query to find employee with highest salary in each department.\n", 484 | "Write SQL query to find unique email domain name & their respective count\n", 485 | "Solve question (17) using Python.\n", 486 | " \n", 487 | "\n", 488 | "Rounds:\n", 489 | "\n", 490 | "Technical Test (Python, SQL, Statistics) (Coding+MCQ) (90 min).\n", 491 | "Telephonic interview (10 min).\n", 492 | "Technical interview (45 min).\n", 493 | "Fitment interview (25 min).\n", 494 | "HR interview (30 min).\n", 495 | "\n", 496 | "\n", 497 | "\n", 498 | "\n", 499 | "Company: Cognizant\n", 500 | "\n", 501 | "Role: Data Scientist\n", 502 | "\n", 503 | " \n", 504 | "\n", 505 | "SQL question on inner join and cross join\n", 506 | "SQL question on group-by\n", 507 | "Case study question on customer optimization of records for different marketing promotional offers\n", 508 | "Tuple and list\n", 509 | "Linear regression\n", 510 | "Logistic regression steps and process\n", 511 | "Tell me about your passion for data science? Or What brought you to this field?\n", 512 | "What is the most common problems you face whilst working on data science projects?\n", 513 | "Describe the steps to take to forecast quarterly sales trends. What specific models are most appropriate in this case?\n", 514 | "What is the difference between gradient and slope, differentiation and integration?\n", 515 | "When to use deep learning instead of machine learning. Advantages, Disadvantages of using deep learning?\n", 516 | "What are vanishing and exploding gradients in neural networks?\n", 517 | "\n", 518 | "\n", 519 | "\n", 520 | "Company: Husqvarna Group\n", 521 | "\n", 522 | "Role: Data Scientist\n", 523 | "\n", 524 | " \n", 525 | "\n", 526 | "Telecom Customer Churn Prediction. Explain the project end to end?\n", 527 | "Data Pre-Processing Steps used.\n", 528 | "Sales forecasting how is it done using Statistical vs DL models - Efficiency.\n", 529 | "Logistic Regression - How much percent of Customer has churned and how much have not churned? \n", 530 | "What are the Evaluation Metric parameters for testing Logistic Regression? \n", 531 | "What packages in Python can be used for ML? Why do we prefer one over another?\n", 532 | "Numpy vs Pandas basic difference.\n", 533 | "Feature on which this Imputation was done, and which method did we use there?\n", 534 | "Tuple vs Dictionary. Where do we use them?\n", 535 | "What is NER - Named Entity Recognition?\n", 536 | "\n", 537 | "\n", 538 | "\n", 539 | "\n", 540 | "Company: Deloitte\n", 541 | "\n", 542 | "Role: Data Scientist\n", 543 | "\n", 544 | " \n", 545 | "\n", 546 | "Conditional Probability\n", 547 | "Can Linear Regression be used for Classification? If Yes, why if No why?\n", 548 | "Hypothesis Testing. Null and Alternate hypothesis\n", 549 | "Derivation of Formula for Linear and logistic Regression\n", 550 | "Why use Decision Trees?\n", 551 | "PCA Advantages and Disadvantages?\n", 552 | "What is Naive Bayes Theorem? Multinomial, Bernoulli, Gaussian Naive Bayes.\n", 553 | "Central Limit Theorem? \n", 554 | "Scenario based question on when to use which ML model?\n", 555 | "Over Sampling and Under Sampling\n", 556 | "Over Fitting and Under Fitting\n", 557 | "Core Concepts behind Each ML model mentioned in my Resume.\n", 558 | "Genie Index Vs Entropy\n", 559 | "how to deal with imbalance data in classification modelling?\n", 560 | "\n", 561 | "\n", 562 | "\n", 563 | "Company: Wipro\n", 564 | "\n", 565 | "Role: Data Scientist\n", 566 | "\n", 567 | " \n", 568 | "\n", 569 | "What is a Python Package, and Have you created your own Python Package?\n", 570 | "Explain about Time series models you have used?\n", 571 | "SQL Questions - Group by Top 2 Salaries for Employees - use Row num and Partition\n", 572 | "Pandas find Numeric and Categorical Columns. For Numeric columns in Data frame, find the mean of the entire column and add that mean value to each row of those numeric columns.\n", 573 | "What is Gradient Descent? What is Learning Rate and Why we need to reduce or increase? Why Global minimum is reached and Why it doesn’t improve when increasing the LR after that point?\n", 574 | "Two Logistic Regression Models - Which one will you choose - One is trained on 70% and other on 80% data. Accuracy is almost same.\n", 575 | "What is Log-Loss and ROC-AUC?\n", 576 | "Do you know to use Amazon SageMaker for MLOPS?\n", 577 | "Explain your Projects end to end (15-20mins).\n", 578 | "\n", 579 | "\n", 580 | "\n", 581 | "\n", 582 | "Company: Infosys\n", 583 | "\n", 584 | "Role: Data Scientist\n", 585 | "\n", 586 | " \n", 587 | "\n", 588 | "1) Measures of central tendency\n", 589 | "\n", 590 | "2) What is the requirement of k means algorithm\n", 591 | "\n", 592 | "3) Which clustering technique uses combining of clusters\n", 593 | "\n", 594 | "4) Which is the oldest probability distribution\n", 595 | "\n", 596 | "5) What all values does a random variable can take\n", 597 | "\n", 598 | "6) Types of random variables\n", 599 | "\n", 600 | "7) Normality of residuals\n", 601 | "\n", 602 | "8) Probability questions\n", 603 | "\n", 604 | "9) Sensitivity and specificity etc.\n", 605 | "\n", 606 | "10) Explain bias - variance trade off. How does this affect the model? \n", 607 | "\n", 608 | "11) What is multi collinearity? How to identify and remove it.\n", 609 | "\n", 610 | "\n", 611 | "\n", 612 | "\n", 613 | "Company: Tiger Analytics\n", 614 | "\n", 615 | "Role: Data Scientist\n", 616 | "\n", 617 | " \n", 618 | "\n", 619 | "What are the projects done by you.\n", 620 | "Suppose there is a client who wants to know if giving discounts is beneficial or not. How would you approach this problem?\n", 621 | "The same client want to know how much discount he should give in the next month for maximum profits.\n", 622 | "Can you have a modeling approach to say in last year what mistakes client did in giving discounts. Meaning if they should have have a different discount and increased sales.\n", 623 | "What feature engineering techniques you used in past projects.\n", 624 | "What models you used and selected the final model.\n", 625 | "\n", 626 | "\n", 627 | "\n", 628 | "Company: Genpact\n", 629 | "\n", 630 | "Role: Data Scientist\n", 631 | "\n", 632 | " \n", 633 | "\n", 634 | "What makes you feel that you would be suitable for this role, since you come from a different background?\n", 635 | "What is an imbalanced data set??\n", 636 | "What are the factors you will consider in order to predict the population of a city in the future?\n", 637 | "Basic statistics questions?\n", 638 | "What are the approaches for treating the missing values?\n", 639 | "Evaluation metrics for Classification?\n", 640 | "Bagging vs Boosting with examples\n", 641 | "Handling of imbalanced datasets\n", 642 | "What are your career aspirations?\n", 643 | "10.What's the graph of y = |x|-2\n", 644 | "\n", 645 | "esstimate on no. Of petrol cars in Delhi\n", 646 | "12.Case study on opening a retail store\n", 647 | "\n", 648 | "13.Order of execution of SQL\n", 649 | "\n", 650 | "\n", 651 | "\n", 652 | "\n", 653 | "\n", 654 | "Company: Ericsson\n", 655 | "\n", 656 | "Role: Data Scientist\n", 657 | "\n", 658 | " \n", 659 | "\n", 660 | "Round No: 1st Round\n", 661 | "\n", 662 | " \n", 663 | "\n", 664 | "How to reverse a linked list\n", 665 | "\n", 666 | " \n", 667 | "\n", 668 | "Give a logistic regression model in production, how would you find out the coefficients of different input features.\n", 669 | "\n", 670 | " \n", 671 | "\n", 672 | "What is the p- value in OLS regression\n", 673 | "\n", 674 | " \n", 675 | "\n", 676 | "What's the reason for high bias or variance\n", 677 | "\n", 678 | " \n", 679 | "\n", 680 | "Which models are generally high biased or high variance\n", 681 | "\n", 682 | " \n", 683 | "\n", 684 | "Write code to find the 8 highest value in the DataFrame\n", 685 | "\n", 686 | " \n", 687 | "\n", 688 | "What's difference between array and list\n", 689 | "\n", 690 | " \n", 691 | "\n", 692 | "Whats the difference between Gradient boosting and Xgboost\n", 693 | "\n", 694 | " \n", 695 | "\n", 696 | "Is XOR data linearly separable\n", 697 | "\n", 698 | " \n", 699 | "\n", 700 | "How do we classify XOR data using logistic regression\n", 701 | "\n", 702 | " \n", 703 | "\n", 704 | "Some questions from my previous projects\n", 705 | "\n", 706 | " \n", 707 | "\n", 708 | "Given a sand timer of 4 and 7 mins how would you calculate 10 mins duration.\n", 709 | "\n", 710 | " \n", 711 | "\n", 712 | "What's the angle between hour and minute hand in clock as 3:15\n", 713 | "\n", 714 | "\n", 715 | "\n", 716 | "\n", 717 | "\n", 718 | "Company: FISERVE\n", 719 | "\n", 720 | "Role: Data Scientist\n", 721 | "\n", 722 | " \n", 723 | "\n", 724 | "How would you check if the model is suffering from multi Collinearity?\n", 725 | "What is transfer learning? Steps you would take to perform transfer learning.\n", 726 | "Why is CNN architecture suitable for image classification? Not an RNN?\n", 727 | "What are the approaches for solving class imbalance problem?\n", 728 | "When sampling what types of biases can be inflected? How to control the biases?\n", 729 | "Explain concepts of epoch, batch, iteration in machine learning.\n", 730 | "What type of performance metrics would you choose to evaluate the different classification models and why?\n", 731 | "What are some of the types of activation functions and specifically when to use them? \n", 732 | "What is the difference between Batch and Stochastic Gradient Descent?\n", 733 | "What is difference between K-NN and K-Means clustering?\n", 734 | "How to handle missing data? What imputation techniques can be used?\n", 735 | "\n", 736 | "\n", 737 | "\n", 738 | "\n", 739 | "Company: Landmark group\n", 740 | "\n", 741 | "Role: Data Scientist\n", 742 | "\n", 743 | " \n", 744 | "\n", 745 | "Use Case - Consider you are working for pen manufacturing company. How would you help sales team with leads using Data analysis?\n", 746 | "Interviewers ask about scenarios or use-case based questions to know interviewee thought process and problem-solving skills.\n", 747 | "Assume you were given access to a website google analytics data.\n", 748 | "In order to increase conversions, how do you perform A/B testing to identify best page design.\n", 749 | "How is random forest different from Gradient boosting algorithm, given both are tree-based algorithm?\n", 750 | "Describe steps involved in creating a neural network?\n", 751 | "LSTM solves the vanishing gradient problem, that RNN primarily have. How?\n", 752 | "In brief, how would you perform the task of sentiment analysis?\n", 753 | "\n", 754 | "\n", 755 | "\n", 756 | "\n", 757 | "Company: Axtria\n", 758 | "\n", 759 | "------------\n", 760 | "\n", 761 | "1.RNN, NN and CNN difference.\n", 762 | "\n", 763 | "Supervised, unsupervised and reinforcement learning with there algo example.\n", 764 | "Difference between ai, ml and dl\n", 765 | "How u do dimentionality reduction.\n", 766 | "What is Multicollinearity\n", 767 | "Parameters of random forest\n", 768 | "7 . Parameters of deep learning algos\n", 769 | "\n", 770 | "Different feature selection methods\n", 771 | "Confusion matrix\n", 772 | "\n", 773 | "\n", 774 | "\n", 775 | "Company: Latentview Analytics\n", 776 | "\n", 777 | "Role: Data Scientist\n", 778 | "\n", 779 | "Experience: 2 years\n", 780 | "\n", 781 | " \n", 782 | "\n", 783 | "What is mean and median\n", 784 | "Difference between normal and gaussian\n", 785 | "distribution\n", 786 | "\n", 787 | "What is central limit theorem\n", 788 | "What is null hypothesis\n", 789 | "What is confidence interval\n", 790 | "What is covariance and correlation and how will u\n", 791 | "interpret it.\n", 792 | "\n", 793 | "How will you find out the outliers in the dataset\n", 794 | "and is it always to remove outliers\n", 795 | "\n", 796 | "Explain about Machine Learning\n", 797 | "Explain the algorithm of your choice\n", 798 | "Different methods of missing values imputation\n", 799 | "Explain me your ml project\n", 800 | "How did you handle imbalance dataset\n", 801 | "What is stratified samplings\n", 802 | "Difference between standard scalar and normal\n", 803 | "scalar\n", 804 | "\n", 805 | "Different type of visualization in Dl project\n", 806 | "What architecture have you used\n", 807 | "Why have u not used RNN in your nlp project\n", 808 | "Why we don't prefer CNN in nlp based project\n", 809 | "19 What is exploding gradient and vanishing gradient and how to rectify it\n", 810 | "\n", 811 | "Difference between LSTM and GRU\n", 812 | "What is precision and recall\n", 813 | "22 What is auc metic\n", 814 | "\n", 815 | "What if your precision and recall are same\n", 816 | "\n", 817 | "\n", 818 | "\n", 819 | "\n", 820 | "What is Bias Variance Trade Off?\n", 821 | "\n", 822 | "\n", 823 | "\n", 824 | "\n", 825 | "Company: Bridgei2i\n", 826 | "\n", 827 | "Role: Senior Analytics Consultant\n", 828 | "\n", 829 | " \n", 830 | "\n", 831 | "1) What is the difference between Cluster and Systematic Sampling?\n", 832 | "\n", 833 | "2) Differentiate between a multi-label classification problem and a multi-class classification problem.\n", 834 | "\n", 835 | "3) How can you iterate over a list and also retrieve element indices at the same time?\n", 836 | "\n", 837 | "4) What is Regularization and what kind of problems does regularization solve?\n", 838 | "\n", 839 | "5) If the training loss of your model is high and almost equal to the validation loss, what does it mean? What should you do?\n", 840 | "\n", 841 | "6) Explain evaluation protocols for testing your models? Compare hold-out vs k-fold cross validation vs iterated k-fold cross-validation methods of testing.\n", 842 | "\n", 843 | "7) Can you cite some examples where a false positive is important than a false negative?\n", 844 | "\n", 845 | "8) What is the advantage of performing dimensionality reduction before fitting an SVM?\n", 846 | "\n", 847 | "9) How will you find the correlation between a categorical variable and a continuous variable ?\n", 848 | "\n", 849 | "10) How will you calculate the accuracy of a model using a confusion matrix?\n", 850 | "\n", 851 | "11) You are given a dataset with 1500 observations and 15 features. How many observations you will select in each decision tree in a random forest?\n", 852 | "\n", 853 | "12) Given that you let the models run long enough, will all gradient descent algorithms lead to the same model when working with Logistic or Linear regression problems?\n", 854 | "\n", 855 | "13) What do you understand by statistical power of sensitivity and how do you calculate it?\n", 856 | "\n", 857 | "14) What is pruning, entropy and information gain in decision tree algorithm?\n", 858 | "\n", 859 | "15) What are the types of biases that can occur during sampling?\n", 860 | "\n", 861 | "\n", 862 | "\n", 863 | "\n", 864 | "Company: Prodapt Solutions\n", 865 | "\n", 866 | "Role: Data Scientist\n", 867 | "\n", 868 | " \n", 869 | "\n", 870 | " Telecom Customer Churn Prediction. Explain the project end to end?\n", 871 | " Data Pre-Processing Steps used.\n", 872 | " Sales forecasting how is it done using Statistical vs DL models - Efficiency.\n", 873 | " Logistic Regression - How much percent of Customer has churned and how much have not churned? \n", 874 | " What are the Evaluation Metric parameters for testing Logistic Regression? \n", 875 | " What packages in Python can be used for ML? Why do we prefer one over another?\n", 876 | " Numpy vs Pandas basic difference.\n", 877 | " Feature on which this Imputation was done, and which method did we use there?\n", 878 | " Tuple vs Dictionary. Where do we use them?\n", 879 | "What is NER - Named Entity Recognition?\n", 880 | "\n", 881 | "\n", 882 | "\n", 883 | "Company: Landmark group\n", 884 | "\n", 885 | "Role: Data Scientist\n", 886 | "\n", 887 | " \n", 888 | "\n", 889 | " SQL question on inner join and cross join\n", 890 | " SQL question on group-by\n", 891 | " Case study question on customer optimization of records for different marketing promotional offers\n", 892 | " Tuple and list\n", 893 | " Linear regression\n", 894 | " Logistic regression steps and process\n", 895 | " Tell me about your passion for data science? Or What brought you to this field?\n", 896 | " What is the most common problems you face whilst working on data science projects?\n", 897 | " Describe the steps to take to forecast quarterly sales trends. What specific models are most appropriate in this case?\n", 898 | " What is the difference between gradient and slope, differentiation and integration?\n", 899 | " When to use deep learning instead of machine learning. Advantages, Disadvantages of using deep learning?\n", 900 | " What are vanishing and exploding gradients in neural networks?\n", 901 | " What happens when neural nets are too small? What happens when they are large enough?\n", 902 | " Why do we need pooling layer in CNN? Common pooling methods?\n", 903 | " Are ensemble models better than individual models? Why/why - not?\n", 904 | "\n", 905 | "\n", 906 | "\n", 907 | "Company: Mindtree\n", 908 | "\n", 909 | "Role: Data Scientist\n", 910 | "\n", 911 | " \n", 912 | "\n", 913 | "What is central tendency\n", 914 | "Which central tendency method is used If there exists any outliers\n", 915 | "Central limit theorem\n", 916 | "Chi-Square test\n", 917 | "A/B testing\n", 918 | "Difference between Z and t distribution (Linked to A/B testing)\n", 919 | "Outlier treatment method\n", 920 | "ANOVA test\n", 921 | "Cross validation\n", 922 | "How will you work in a machine learning project if there is a huge imbalance in the data\n", 923 | "Formula of sigmoid function\n", 924 | "Can we use sigmoid function in case of multiple classification (I said no)\n", 925 | "Then which function is used\n", 926 | "What is Area under the curve\n", 927 | "Which metric is used to split a node in Decision Tree\n", 928 | "What is ensemble learning\n", 929 | "3 situation based questions\n", 930 | "\n", 931 | "\n", 932 | "\n", 933 | "Company: CodeBase Solutions\n", 934 | "\n", 935 | "Role: Data Scientist\n", 936 | "\n", 937 | " \n", 938 | "\n", 939 | " What are the ML techniques you've used in projects?\n", 940 | " Very first question was PCA? Why use PCA?\n", 941 | " Types of Clustering techniques (Not algorithms)? Which Clustering techniques will you use in which Scenario - example with a Program?\n", 942 | " OCR - What type of OCR did you use in your project - Graphical or Non - Graphical?\n", 943 | " OCR - What is a Noise? What types of noise will you face when performing OCR? Handwritten can give more than 70% accuracy when I wrote in 2012 but you're saying 40%.\n", 944 | " Logistic Regression vs Linear Regression with a real-life example - explain?\n", 945 | " Is Decision tree Binary or multiple why use them?\n", 946 | " Do you know Map Reduce and ETL concepts?\n", 947 | " What is a Dictionary or Corpus in NLP and how do you build it? \n", 948 | "How do you basically build a Dictionary, Semantic Engine, Processing Engine in a NLP project, where does all the Synonyms (Thesaurus words go).\n", 949 | "What are the Types of Forecasting? What are the ML and DL models for forecasting (He said Fast-forwarding models as example) other than Statistical (ARIMA) models you've used in your projects?\n", 950 | "What is a Neural Network? Types of Neural Networks you know?\n", 951 | "Write a Decision Tree model with a Python Program.\n", 952 | "How do you build an AZURE ML model? What are all the Azure products you've used? I said Azure ML Studio.\n", 953 | "Cibil score is an example for Fuzzy model and not a Classification model.\n", 954 | "What is an outlier give a real life example? how do you find them and eliminate them? I gave an example of calculating Average salary of an IT employee. \n", 955 | "\n", 956 | "\n", 957 | "\n", 958 | "Company: Deloitte\n", 959 | "\n", 960 | "Role: Data Scientist\n", 961 | "\n", 962 | " \n", 963 | "\n", 964 | " G values, P values, T values\n", 965 | " Conditional Probability\n", 966 | " Central Values of Tendency\n", 967 | " Can Linear Regression be used for Classification? If Yes, why if No why?\n", 968 | " Hypothesis Testing. Null and Alternate hypothesis\n", 969 | " Derivation of Formula for Linear and logistic Regression\n", 970 | " Where to start a Decision Tree. Why use Decision Trees?\n", 971 | " PCA Advantages and Disadvantages?\n", 972 | " Why Bayes theorem? DB Bayes and Naïve Bayes Theorem?\n", 973 | "Central Limit Theorem? \n", 974 | "R packages in and out? For us it's Python Packages in and out.\n", 975 | "Scenario based question on when to use which ML model?\n", 976 | "Over Sampling and Under Sampling\n", 977 | "Over Fitting and Under Fitting\n", 978 | "Core Concepts behind Each ML model.\n", 979 | "Genie Index Vs Entropy\n", 980 | "how to deal with imbalance data in classification modelling? SMOTHE techniques\n", 981 | "\n", 982 | "\n", 983 | "\n", 984 | "Verizon Data Science Interview Questions\n", 985 | "\n", 986 | " \n", 987 | "\n", 988 | " How many cars are there in Chennai? How do u structurally approach coming up with that number?\n", 989 | " Multiple Linear Regression?\n", 990 | " OLS vs MLE?\n", 991 | " R2 vs Adjusted R2? During Model Development which one do we consider?\n", 992 | " Lift chart, drift chart\n", 993 | " Sigmoid Function in Logistic regression\n", 994 | " ROC what is it? AUC and Differentiation?\n", 995 | " Linear Regression from Multiple Linear Regression\n", 996 | " P-Value what is it and its significance? What does P in P-Value stand for? What is Hypothesis Testing? Null hypothesis vs Alternate Hypothesis?\n", 997 | "Bias Variance Trade off?\n", 998 | "Over fitting vs Underfitting in Machine learning?\n", 999 | "Estimation of Multiple Linear Regression\n", 1000 | "Forecasting vs Prediction difference? Regression vs Time Series?\n", 1001 | "p,d,q values in ARIMA models\n", 1002 | " What will happen if d=0\n", 1003 | " What is the meaning of p,d,q values?\n", 1004 | "Is your data for Forecasting Uni or multi-dimensional?\n", 1005 | "How to find the nose to start with in a Decision tree.\n", 1006 | "TYPES of Decision trees - CART vs C4.5 vs ID3\n", 1007 | "Genie index vs entropy\n", 1008 | "Linear vs Logistic Regression\n", 1009 | "Decision Trees vs Random Forests\n", 1010 | "Questions on liner regression, how it works and all\n", 1011 | "Asked to write some SQL queries\n", 1012 | "Asked about past work experience\n", 1013 | "Some questions on inferential statistics (hypothesis testing, sampling techniques)\n", 1014 | "Some questions on table (how to filter, how to add calculated fields etc)\n", 1015 | "Why do u use Licensed Platform when other Open source packages are available?\n", 1016 | "What certification Have u done?\n", 1017 | "What is a Confidence Interval?\n", 1018 | "What are Outliers? How to Detect Outliers?\n", 1019 | "How to Handle Outliers?\n", 1020 | " \n", 1021 | "\n", 1022 | "Company: L&T Financial Services\n", 1023 | "\n", 1024 | "Role: Data Scientist\n", 1025 | "\n", 1026 | " \n", 1027 | "\n", 1028 | "Explain your Projects\n", 1029 | "Assumptions in Multiple linear regression\n", 1030 | "Decision tree algorithm\n", 1031 | "Gini index\n", 1032 | "Entropy\n", 1033 | "Formulas of gini and entropy\n", 1034 | "Random forest algorithm\n", 1035 | "XGBoost Algorithm\n", 1036 | "Central Limit theorem\n", 1037 | "R2\n", 1038 | "Adj R2\n", 1039 | "VIF\n", 1040 | "Different Methods to measure Accuracy\n", 1041 | "Explain Bagging and Boosting\n", 1042 | "Difference Between Bagging and Boosting\n", 1043 | "Various Ensemble techniques\n", 1044 | "P value and it’s significance\n", 1045 | "F1 Score\n", 1046 | "Type 1 and Type II error\n", 1047 | "Logical questions for Type 1 and Type II error\n", 1048 | "Logical questions for Null and alternate Hypothesis\n", 1049 | "\n", 1050 | "\n", 1051 | "\n", 1052 | "Role: Data Scientist\n", 1053 | "\n", 1054 | " \n", 1055 | "\n", 1056 | "Decorators in Python\n", 1057 | "- Live Example\n", 1058 | "\n", 1059 | "Generators in Python\n", 1060 | "- Live Example\n", 1061 | "\n", 1062 | " \n", 1063 | "\n", 1064 | "SQL Questions\n", 1065 | " \n", 1066 | "\n", 1067 | "3.1 Group by Top 2 Salaries for Employees\n", 1068 | "\n", 1069 | "3.2 use Row num and Partition\n", 1070 | "\n", 1071 | " \n", 1072 | "\n", 1073 | "Pandas find Numeric and Categorical Columns.\n", 1074 | "4.1 For Numeric columns, find the mean of the entire column and add that value to each row of the column.\n", 1075 | "\n", 1076 | " \n", 1077 | "\n", 1078 | "What is Gradient Descent?\n", 1079 | "5.1 What is Learning Rate and Why is it reduce sometimes\n", 1080 | "\n", 1081 | " \n", 1082 | "\n", 1083 | "Two Logistic Regression Models - Which one will you choose - One is trained on 70% and other on 80% data. Accuracy is almost same.\n", 1084 | "What is LogLoss ?\n", 1085 | " \n", 1086 | "\n", 1087 | "Explain your Projects end to end.(15-20mins)\n", 1088 | "\n", 1089 | "\n", 1090 | "\n", 1091 | "\n", 1092 | "\n", 1093 | "Role: Data Science Intern\n", 1094 | "\n", 1095 | " \n", 1096 | "\n", 1097 | "Tell me about your journey as a Data Science aspirant\n", 1098 | "What was the one challenging project or task that you did in this domain and why was it challenging?\n", 1099 | "What model did you use for that? I replied Random Forests\n", 1100 | "What is Random Forest and how is it used?\n", 1101 | "How are Random Forest different from Decision Trees and what problems do they solve that decision trees can't?\n", 1102 | "Multi class Classification and which metric is preferred for it\n", 1103 | "Given a banking scenario to predict Loan Defaulters, which metric will you use?\n", 1104 | "How will you handle the class imbalance in this case?\n", 1105 | "\n", 1106 | "\n", 1107 | "\n", 1108 | "\n", 1109 | "\n", 1110 | "Company: Latentview Analytics\n", 1111 | "\n", 1112 | " \n", 1113 | "\n", 1114 | "What is mean and median\n", 1115 | "Difference between normal and gaussian\n", 1116 | "distribution\n", 1117 | "\n", 1118 | "What is central limit theorem\n", 1119 | "What is null hypothesis\n", 1120 | "What is confidence interval\n", 1121 | "What is covariance and correlation and how will u\n", 1122 | "interpret it.\n", 1123 | "\n", 1124 | "How will you find out the outliers in the dataset\n", 1125 | "and is it always to remove outliers\n", 1126 | "\n", 1127 | "Explain about Machine Learning\n", 1128 | "Explain the algorithm of your choice\n", 1129 | "Different methods of missing values imputation\n", 1130 | "Explain me your ml project\n", 1131 | "How did you handle imbalance dataset\n", 1132 | "What is stratified samplings\n", 1133 | "Difference between standard scalar and normal\n", 1134 | "scalar\n", 1135 | "\n", 1136 | "Different type of visualization in Dl project\n", 1137 | "What architecture have you used\n", 1138 | "Why have u not used RNN in your nlp project\n", 1139 | "Why we don't prefer CNN in nlp based project\n", 1140 | "19 What is exploding gradient and vanishing gradient and how to rectify it\n", 1141 | "\n", 1142 | "Difference between LSTM and GRU\n", 1143 | "What is precision and recall\n", 1144 | "22 What is auc metic\n", 1145 | "\n", 1146 | "What if your precision and recall are same\n", 1147 | "\n", 1148 | "\n", 1149 | "\n", 1150 | "Data Science Interview Questions\n", 1151 | "\n", 1152 | " \n", 1153 | "\n", 1154 | "Naive bayes assumptions\n", 1155 | "What are the approaches for solving class imbalance problem?\n", 1156 | "When sampling what types of biases can be inflected? How to control the biases?\n", 1157 | "GRU is faster compared to LSTM. Why?\n", 1158 | "What is difference between K-NN and K-Means clustering ?\n", 1159 | "How to determine if a coin is biased ? Hint: Hypothesis testing\n", 1160 | "How will u present the statistical inference of a particular numerical column?\n", 1161 | "How would you design a data science pipeline ?\n", 1162 | "Explain back propagation in few words and it’s variants?\n", 1163 | "Explain topic modeling in NLP and various methods in performing topic modeling.\n", 1164 | "\n", 1165 | "\n", 1166 | "\n", 1167 | "Company: Myntra\n", 1168 | "\n", 1169 | "Role: Data Analyst\n", 1170 | "\n", 1171 | " \n", 1172 | "\n", 1173 | "Introduce yourself.\n", 1174 | "\n", 1175 | " \n", 1176 | "\n", 1177 | "One complex sql query- 2 table are there, Table1(cust_id,Name) Table2(cust_id,Transaction_amt)\n", 1178 | "\n", 1179 | "Write a query to return the name of customers with 8th highest lifetime purchase.\n", 1180 | "\n", 1181 | " \n", 1182 | "\n", 1183 | "Achieve the same using python.\n", 1184 | "\n", 1185 | " \n", 1186 | "\n", 1187 | "ML questions:\n", 1188 | "\n", 1189 | " \n", 1190 | "\n", 1191 | "What's the problem in having multi collinearity in data set.\n", 1192 | "\n", 1193 | "If there is business requirement to keep two corelated features in model, what would you do.\n", 1194 | "\n", 1195 | "How would you deal with feature of 4 categories and 20% null values\n", 1196 | "\n", 1197 | " \n", 1198 | "\n", 1199 | "Some questions based on my project.\n", 1200 | "\n", 1201 | "\n", 1202 | "\n", 1203 | "\n", 1204 | "Company: Nira Finance\n", 1205 | "\n", 1206 | "Role: Data Scientist\n", 1207 | "\n", 1208 | " \n", 1209 | "\n", 1210 | "Asked to explain my project.\n", 1211 | "\n", 1212 | "Have you not done any classification problem as your Resume only mentions regression tasks.\n", 1213 | "\n", 1214 | " \n", 1215 | "\n", 1216 | "Explain the working of Gradient boosting.\n", 1217 | "\n", 1218 | "Difference between boosting and bagging.\n", 1219 | "\n", 1220 | " \n", 1221 | "\n", 1222 | "What would you do when output is imbalanced.\n", 1223 | "\n", 1224 | "What is more preferred over sampling or under sampling.\n", 1225 | "\n", 1226 | "In what case under sampling a non harmful approach.\n", 1227 | "\n", 1228 | " \n", 1229 | "\n", 1230 | "How would you measure the performance of models built on imbalanced dataset.\n", 1231 | "\n", 1232 | "Whats the meaning of precision and recall.\n", 1233 | "\n", 1234 | " \n", 1235 | "\n", 1236 | "Tell me about a task you did and are very proud of.\n", 1237 | "\n", 1238 | "Do you have any questions for me\n", 1239 | "\n", 1240 | " \n", 1241 | "\n", 1242 | "Post interview I was given a ML assignment to solve and submit within next 2 weeks.\n", 1243 | "\n", 1244 | "\n", 1245 | "\n", 1246 | "\n", 1247 | "Company: Myntra\n", 1248 | "\n", 1249 | "Role: Data Analyst\n", 1250 | "\n", 1251 | "Round type: Use case Round\n", 1252 | "\n", 1253 | " \n", 1254 | "\n", 1255 | "Problem Statement:\n", 1256 | "\n", 1257 | " \n", 1258 | "\n", 1259 | "Given 2 teams of Myntra namely:\n", 1260 | "\n", 1261 | " \n", 1262 | "\n", 1263 | "Finance Team: They focus to take decisions which are Money driven.\n", 1264 | " \n", 1265 | "\n", 1266 | "Customer Experience Team : They focus to improve the Customer Experience with Myntra.\n", 1267 | " \n", 1268 | "\n", 1269 | "Whenever Customer places a refund request Myntra can process it in 2 different ways:\n", 1270 | "\n", 1271 | " \n", 1272 | "\n", 1273 | "Directly accept the Return request.\n", 1274 | " \n", 1275 | "\n", 1276 | "Put the request on hold and verify the product for damages or manhandling by customer. Only if the products are found to be in proper state, accept the return.\n", 1277 | " \n", 1278 | "\n", 1279 | "Now, there is a conflict of opinion between these two teams.\n", 1280 | "\n", 1281 | "Finance Team likes the 2nd option as it minimize the chances of loss.\n", 1282 | "\n", 1283 | " \n", 1284 | "\n", 1285 | "But Customer Experience teams likes the 1st option as their main aim is to improve Customer Experience.\n", 1286 | "\n", 1287 | " \n", 1288 | "\n", 1289 | "Now suppose you are part of the Customer Experience team. How would you convince the Finance team to follow the 1st step.\n", 1290 | "\n", 1291 | " \n", 1292 | "\n", 1293 | "What kind of Data you would be looking for solving this task.\n", 1294 | "\n", 1295 | " \n", 1296 | "\n", 1297 | "Is there any need for model building for this use case.\n", 1298 | "\n", 1299 | "\n", 1300 | "\n", 1301 | "\n", 1302 | "\n", 1303 | "Company: Ericsson\n", 1304 | "\n", 1305 | "Role: Data Scientist\n", 1306 | "\n", 1307 | " \n", 1308 | "\n", 1309 | "Round No: 1st Round\n", 1310 | "\n", 1311 | " \n", 1312 | "\n", 1313 | "How to reverse a linked list\n", 1314 | "\n", 1315 | " \n", 1316 | "\n", 1317 | "Give a logistic regression model in production, how would you find out the coefficients of different input features.\n", 1318 | "\n", 1319 | " \n", 1320 | "\n", 1321 | "What is the p- value in OLS regression\n", 1322 | "\n", 1323 | " \n", 1324 | "\n", 1325 | "What's the reason for high bias or variance\n", 1326 | "\n", 1327 | " \n", 1328 | "\n", 1329 | "Which models are generally high biased or high variance\n", 1330 | "\n", 1331 | " \n", 1332 | "\n", 1333 | "Write code to find the 8 highest value in the DataFrame\n", 1334 | "\n", 1335 | " \n", 1336 | "\n", 1337 | "What's difference between array and list\n", 1338 | "\n", 1339 | " \n", 1340 | "\n", 1341 | "Whats the difference between Gradient boosting and Xgboost\n", 1342 | "\n", 1343 | " \n", 1344 | "\n", 1345 | "Is XOR data linearly separable\n", 1346 | "\n", 1347 | " \n", 1348 | "\n", 1349 | "How do we classify XOR data using logistic regression\n", 1350 | "\n", 1351 | " \n", 1352 | "\n", 1353 | "Some questions from my previous projects\n", 1354 | "\n", 1355 | " \n", 1356 | "\n", 1357 | "Given a sand timer of 4 and 7 mins how would you calculate 10 mins duration.\n", 1358 | "\n", 1359 | " \n", 1360 | "\n", 1361 | "What's the angle between hour and minute hand in clock as 3:15\n", 1362 | "\n", 1363 | "\n", 1364 | "\n", 1365 | "\n", 1366 | "\n", 1367 | "\n", 1368 | "Company: Legato Health Technologies\n", 1369 | "\n", 1370 | "Role: MLOps Engineer\n", 1371 | "\n", 1372 | "Experience: 2-3 years\n", 1373 | "\n", 1374 | " \n", 1375 | "\n", 1376 | "Round 2:\n", 1377 | "\n", 1378 | "Complete ML technical stack used in project?\n", 1379 | "\n", 1380 | "Different activation function?\n", 1381 | "\n", 1382 | "How do you handle imbalance data ?\n", 1383 | "\n", 1384 | "Difference between sigmoid and softmax ?\n", 1385 | "\n", 1386 | "Explain about optimizers ?\n", 1387 | "\n", 1388 | "Precision-Recall Trade off ?\n", 1389 | "\n", 1390 | "How do you handle False Positives ?\n", 1391 | "\n", 1392 | "Explain LSTM architecture by taking example of 2 sentences and how it will be processed?\n", 1393 | "\n", 1394 | "Decision Tree Parameters?\n", 1395 | "\n", 1396 | "Bagging and boosting ?\n", 1397 | "\n", 1398 | "Explain bagging internals\n", 1399 | "\n", 1400 | "Write a program by taking an url and give a rough code approach how you will pass payload and make a post request?\n", 1401 | "\n", 1402 | "Different modules used in python ?\n", 1403 | "\n", 1404 | "Another coding problem of checking balanced parentheses?\n", 1405 | "\n", 1406 | "\n", 1407 | "\n", 1408 | "\n", 1409 | "\n", 1410 | "Role: Junior Data Scientist\n", 1411 | "\n", 1412 | " \n", 1413 | "\n", 1414 | "1) Explain the architecture of CNN\n", 1415 | "\n", 1416 | "2)If we put a 3×3 filter over 6×6 image what will be the size of the output image\n", 1417 | "\n", 1418 | "3) What will you do to reduce overfitting In deep learning models\n", 1419 | "\n", 1420 | "3) Can you write a program for inverted star program in python\n", 1421 | "\n", 1422 | "4)Write a program to create a dataframe and remove elements from it\n", 1423 | "\n", 1424 | "5) I have 2 guns with 6 holes in each, and I load a single bullet In each gun, what is the probability that if I fire the guns simultaneously atleast 1 gun will fire (atleast means one or more than one)\n", 1425 | "\n", 1426 | "5) There are 2 groups g1 and g2, g1 will ask g2 members to give them 1 member so thay they both will be equal in number, g2 will ask g1 members to give them 1 member so thay they will be double of g1, how many members are there in the groups (I'm not sure of this question as I tried to solve but didnt get correct answer)\n", 1427 | "\n", 1428 | "\n", 1429 | "\n", 1430 | "\n", 1431 | "Data Science Interview Questions:\n", 1432 | "\n", 1433 | " \n", 1434 | "\n", 1435 | "How do check the Normality of a dataset?\n", 1436 | "Difference Between Sigmoid and Softmax functions?\n", 1437 | "Can logistic regression use for more than 2 classes?\n", 1438 | "What are Loss Function and Cost Functions? Explain the key Difference Between them?\n", 1439 | "What is F1 score? How would you use it?\n", 1440 | "In a neural network, what if all the weights are initialized with the same value?\n", 1441 | "Why should we use Batch Normalization?\n", 1442 | "In a CNN, if the input size 5 X 5 and the filter size is 7 X 7, then what would be the size of the output?\n", 1443 | "What do you mean by exploding and vanishing gradients?\n", 1444 | "What are the applications of transfer learning in Deep Learning?\n", 1445 | "Why does a Convolutional Neural Network (CNN) work better with image data?\n", 1446 | "\n", 1447 | "\n", 1448 | "\n", 1449 | "\n", 1450 | "Data Science Interview Questions:\n", 1451 | "\n", 1452 | " \n", 1453 | "\n", 1454 | "What is the Central Limit Theorem and why is it important?\n", 1455 | "What is the difference between type I vs type II error?\n", 1456 | "Tell me the difference between an inner join, left join/right join, and union.\n", 1457 | "Explain the 80/20 rule, and tell me about its importance in model validation.\n", 1458 | "What is one way that you would handle an imbalanced data set that’s being used for prediction (i.e., vastly more negative classes than positive classes)?\n", 1459 | "Is it better to spend five days developing a 90-percent accurate solution or 10 days for 100-percent accuracy?\n", 1460 | "Most common characteristics used in descriptive statistics?\n", 1461 | "What do you mean by degree of freedom?\n", 1462 | "Why is the t-value same for 90% two tail and 95% one tail test?\n", 1463 | "What does it mean if a model is heteroscedastic? what about homoscedastic?\n", 1464 | "You roll a biased coin (p(head)=0.8) five times. What’s the probability of getting three or more heads?\n", 1465 | "What does interpolation and extrapolation mean? Which is generally more accurate?\n", 1466 | "\n", 1467 | "\n", 1468 | "\n", 1469 | "\n", 1470 | "\n", 1471 | "Data Science Interview Questions:\n", 1472 | "\n", 1473 | " \n", 1474 | "\n", 1475 | "What the aim of conducting A/B Testing?\n", 1476 | "Explain p-value.\n", 1477 | "Explain how a ROC curve works?\n", 1478 | "What is pruning in Decision Tree?\n", 1479 | "How will you define the number of clusters in a clustering algorithm?\n", 1480 | "When to use Precision and when to use Recall?\n", 1481 | "What are the assumptions required for linear regression? What if some of these assumptions are violated?\n", 1482 | "How are covariance and correlation different from one another?\n", 1483 | "How can we relate standard deviation and variance?\n", 1484 | "Explain the phrase \"Curse of Dimensionality\".\n", 1485 | "What does the term Variance Inflation Factor mean?\n", 1486 | "What is the significance of Gamma and Regularization in SVM?\n", 1487 | "\n", 1488 | "\n", 1489 | "\n", 1490 | "\n", 1491 | "Data Science Interview questions:\n", 1492 | "\n", 1493 | " \n", 1494 | "\n", 1495 | "How will you calculate the Sensitivity of machine learning models?\n", 1496 | "\n", 1497 | "What do you mean by cluster sampling and systematic sampling?\n", 1498 | "\n", 1499 | "Explain Eigenvectors and Eigenvalues.\n", 1500 | "\n", 1501 | "Explain Gradient Descent.\n", 1502 | "\n", 1503 | "How does Backpropagation work? Also, it states its various variants.\n", 1504 | "\n", 1505 | "What do you know about Autoencoders?\n", 1506 | "\n", 1507 | "What is Dropout in Neural Networks?\n", 1508 | "\n", 1509 | "What is the difference between Batch and Stochastic Gradient Descent?\n", 1510 | "\n", 1511 | "What are the different kinds of Ensemble learning?\n", 1512 | "\n", 1513 | "What is entropy, information gain and gini index in decision tree classifier and regression?\n", 1514 | "\n", 1515 | "\n", 1516 | "\n", 1517 | "\n", 1518 | "\n", 1519 | "\n", 1520 | "\n", 1521 | "Role: Data Scientist\n", 1522 | "\n", 1523 | " \n", 1524 | "\n", 1525 | "What is central tendency\n", 1526 | "Which central tendency method is used If there exists any outliers\n", 1527 | "Central limit theorem\n", 1528 | "Chi-Square test\n", 1529 | "A/B testing\n", 1530 | "Difference between Z and t distribution (Linked to A/B testing)\n", 1531 | "Outlier treatment method\n", 1532 | "ANOVA test\n", 1533 | "Cross validation\n", 1534 | "How will you work in a machine learning project if there is a huge imbalance in the data\n", 1535 | "Formula of sigmoid function\n", 1536 | "Can we use sigmoid function in case of multiple classification (I said no)\n", 1537 | "Then which function is used\n", 1538 | "What is Area under the curve\n", 1539 | "Which metric is used to split a node in Decision Tree\n", 1540 | "What is ensemble learning\n", 1541 | "\n", 1542 | "\n", 1543 | "\n", 1544 | "My Statistics Checklist before going for a Data Science Interview:\n", 1545 | "\n", 1546 | " \n", 1547 | "\n", 1548 | "Inferential and descriptive Statistics\n", 1549 | "Sample\n", 1550 | "Population\n", 1551 | "Random variables\n", 1552 | "Probability Distribution Function\n", 1553 | "Probability Mass Function\n", 1554 | "Cumulative Distribution Function\n", 1555 | "Expectation and Variance\n", 1556 | "Binomial Distribution\n", 1557 | "Bernoulli Distribution\n", 1558 | "Normal Distribution\n", 1559 | "Z-score\n", 1560 | "Central Limit Theorem\n", 1561 | "Hypothesis Testing\n", 1562 | "Confidence Interval\n", 1563 | "Chi Square Test\n", 1564 | "Anova Test\n", 1565 | "F-Stats\n", 1566 | "\n", 1567 | "\n", 1568 | "\n", 1569 | "Role: Data Scientist\n", 1570 | "\n", 1571 | " \n", 1572 | "\n", 1573 | "What is central tendency\n", 1574 | "Which central tendency method is used If there exists any outliers\n", 1575 | "Central limit theorem\n", 1576 | "Chi-Square test\n", 1577 | "A/B testing\n", 1578 | "Difference between Z and t distribution (Linked to A/B testing)\n", 1579 | "Outlier treatment method\n", 1580 | "ANOVA test\n", 1581 | "Cross validation\n", 1582 | "How will you work in a machine learning project if there is a huge imbalance in the data\n", 1583 | "Formula of sigmoid function\n", 1584 | "Can we use sigmoid function in case of multiple classification (I said no)\n", 1585 | "Then which function is used\n", 1586 | "What is Area under the curve\n", 1587 | "Which metric is used to split a node in Decision Tree\n", 1588 | "What is ensemble learning\n", 1589 | "3 situation based questions\n", 1590 | "\n", 1591 | "\n", 1592 | "\n", 1593 | "\n", 1594 | "ompany: Legato Health Technologies\n", 1595 | "\n", 1596 | "Role: MLOps Engineer\n", 1597 | "\n", 1598 | " \n", 1599 | "\n", 1600 | "Round 2:\n", 1601 | "\n", 1602 | "Complete ML technical stack used in project?\n", 1603 | "\n", 1604 | "Different activation function?\n", 1605 | "\n", 1606 | "How do you handle imbalance data ?\n", 1607 | "\n", 1608 | "Difference between sigmoid and softmax ?\n", 1609 | "\n", 1610 | "Explain about optimisers ?\n", 1611 | "\n", 1612 | "Precision-Recall Trade off ?\n", 1613 | "\n", 1614 | "How do you handle False Positives ?\n", 1615 | "\n", 1616 | "Explain LSTM architecture by taking example of 2 sentences and how it will be processed?\n", 1617 | "\n", 1618 | "Decision Tree Parameters?\n", 1619 | "\n", 1620 | "Bagging and boosting ?\n", 1621 | "\n", 1622 | "Explain bagging internals\n", 1623 | "\n", 1624 | "Write a program by taking an url and give a rough code approach how you will pass payload and make a post request?\n", 1625 | "\n", 1626 | "Different modules used in python ?\n", 1627 | "\n", 1628 | "Another coding problem of checking balanced parentheses?\n", 1629 | "\n", 1630 | "\n", 1631 | "\n", 1632 | "\n", 1633 | "\n", 1634 | "Company: Cerence\n", 1635 | "\n", 1636 | "Role: NLU Developer\n", 1637 | "\n", 1638 | " \n", 1639 | "\n", 1640 | "Question1 :\n", 1641 | "\n", 1642 | "Write a function that take two strings as inputs and return true if they are anagrams of each other and false otherwise\n", 1643 | "\n", 1644 | "e.g.\n", 1645 | "\n", 1646 | "(hello, hlleo) --> true\n", 1647 | "\n", 1648 | "(hello, helo) --> false\n", 1649 | "\n", 1650 | " \n", 1651 | "\n", 1652 | "Question 2 :\n", 1653 | "\n", 1654 | "Write a function that take an array of strings \"A\" and an integer \"n\",\n", 1655 | "\n", 1656 | "that return the list of all strings of length \"n\" from the array \"A\" that can be constructed\n", 1657 | "\n", 1658 | "as the concatenation of two strings from the same array \"A\"\n", 1659 | "\n", 1660 | "e.g.\n", 1661 | "\n", 1662 | "A = [dog, tail, sky, or, hotdog, tailor, hot] and n=6\n", 1663 | "\n", 1664 | "output should be \"hotdog\" and \"tailor\"\n", 1665 | "\n", 1666 | " \n", 1667 | "\n", 1668 | "Question 3 :\n", 1669 | "\n", 1670 | "Given an array \"arr\" of numbers and a starting number \"x\",\n", 1671 | "\n", 1672 | "Find \"x\" such that the running sums of \"x\" and the elements of the array \"arr\" are never lower than 1.\n", 1673 | "\n", 1674 | "e.g.\n", 1675 | "\n", 1676 | "arr = [-2, 3, 1, -5].\n", 1677 | "\n", 1678 | "The running sums will be x-2, x-2+3, x-2+3+1 and x-2+3+1-5.\n", 1679 | "\n", 1680 | "So, the output should be 4.\n", 1681 | "\n", 1682 | "\n", 1683 | "\n", 1684 | "\n", 1685 | "\n", 1686 | "Company: GEOTAB\n", 1687 | "\n", 1688 | " \n", 1689 | "\n", 1690 | "Python :\n", 1691 | "\n", 1692 | "Is python a language that follows pass by value, or pass by reference or pass by object reference\n", 1693 | "What are lambda functions and how to use them\n", 1694 | "Difference between mutable and immutable objects with example.\n", 1695 | "What are Python decorators? Why do we use them\n", 1696 | " \n", 1697 | "\n", 1698 | "SQL :\n", 1699 | "\n", 1700 | "What is the difference between Inner join and left inner join ?\n", 1701 | "What are window functions ?\n", 1702 | "What is the use of groupby ?\n", 1703 | " \n", 1704 | "\n", 1705 | "SQL Round\n", 1706 | "\n", 1707 | "3 tables given as below:\n", 1708 | "\n", 1709 | " \n", 1710 | "\n", 1711 | "TRIPS\n", 1712 | "\n", 1713 | "trip_id\n", 1714 | "\n", 1715 | "vehicle_id\n", 1716 | "\n", 1717 | "start_time\n", 1718 | "\n", 1719 | "stop_time\n", 1720 | "\n", 1721 | " \n", 1722 | "\n", 1723 | "VEHICLE_MAKE\n", 1724 | "\n", 1725 | "vehicle_id\n", 1726 | "\n", 1727 | "make_id\n", 1728 | "\n", 1729 | " \n", 1730 | "\n", 1731 | "MAKES\n", 1732 | "\n", 1733 | "make_id\n", 1734 | "\n", 1735 | "make_name\n", 1736 | "\n", 1737 | " \n", 1738 | "\n", 1739 | "There is a table which contains vehicle trips. Trips are not necessarily in order.\n", 1740 | "\n", 1741 | " \n", 1742 | "\n", 1743 | "There is a table which contains vehicle makes. Makes are not necessarily known.\n", 1744 | "\n", 1745 | " \n", 1746 | "\n", 1747 | "PROBLEM: Write SQL code that provides the number of trips that started on September 1st, 2020 for each vehicle with a KNOWN make. \n", 1748 | "\n", 1749 | "Order the results by the trip count.\n", 1750 | "\n", 1751 | " \n", 1752 | "\n", 1753 | "op\n", 1754 | "\n", 1755 | " vehicle_id | trip_count \n", 1756 | "\n", 1757 | " 4 | 2\n", 1758 | "\n", 1759 | " 1 | 1\n", 1760 | "\n", 1761 | " 2 | 1\n", 1762 | "\n", 1763 | "\n", 1764 | "\n", 1765 | "\n", 1766 | "\n", 1767 | "\n", 1768 | "Role: MLOps Engineer\n", 1769 | "\n", 1770 | " \n", 1771 | "\n", 1772 | "1st round:-\n", 1773 | "\n", 1774 | "Introduction\n", 1775 | "\n", 1776 | "Current NLP architecture used in my project\n", 1777 | "\n", 1778 | "How will you identify Data Drift? Once identified how would you automate the handling of Data Drift\n", 1779 | "\n", 1780 | "Data Pipeline used\n", 1781 | "\n", 1782 | "Fasttext word embedding vs word2vec\n", 1783 | "\n", 1784 | "When should we use Tf-IDF and when predictive based word embedding will be advantageous over Tf-IDF\n", 1785 | "\n", 1786 | "Metrics used to validate our model\n", 1787 | "\n", 1788 | "In MongoDB write a query to find employee names from a collection\n", 1789 | "\n", 1790 | "In Python write a program to separate 0s and 1s from an array- (0,1,0,1,1,0,1,0)\n", 1791 | "\n", 1792 | "\n", 1793 | "\n", 1794 | "\n", 1795 | "\n", 1796 | "Company: Latentview.\n", 1797 | "\n", 1798 | " \n", 1799 | "\n", 1800 | "Initial they had asked for the explaining the project which I had done. I explained the Customer prediction case . Then I was asked with python questions by sharing my screen.\n", 1801 | "\n", 1802 | " \n", 1803 | "\n", 1804 | "How do you handle the correlated variables without removing them\n", 1805 | "Explain the SMOTE, ADAYSN technique\n", 1806 | "What is stratified sampling technique\n", 1807 | "Explain the working of random forest and xgboost\n", 1808 | "How do you optimise the Recall of your output\n", 1809 | "What are chisquare and ANOVA test\n", 1810 | "In python they asked for LOC,ILOC, how do you remove duplicate,How to unique values in column,\n", 1811 | "In SQL they asked for the query for having matches between different teams\n", 1812 | "\n", 1813 | "\n", 1814 | "\n", 1815 | "\n", 1816 | "Company: Myntra\n", 1817 | "\n", 1818 | "Role: Data Analyst\n", 1819 | "\n", 1820 | " \n", 1821 | "\n", 1822 | "Introduce yourself.\n", 1823 | "\n", 1824 | " \n", 1825 | "\n", 1826 | "One complex sql query- 2 table are there, Table1(cust_id,Name) Table2(cust_id,Transaction_amt)\n", 1827 | "\n", 1828 | "Write a query to return the name of customers with 8th highest lifetime purchase.\n", 1829 | "\n", 1830 | " \n", 1831 | "\n", 1832 | "Achieve the same using python.\n", 1833 | "\n", 1834 | " \n", 1835 | "\n", 1836 | "ML questions:\n", 1837 | "\n", 1838 | " \n", 1839 | "\n", 1840 | "What's the problem in having multi collinearity in data set.\n", 1841 | "\n", 1842 | "If there is business requirement to keep two corelated features in model, what would you do.\n", 1843 | "\n", 1844 | "How would you deal with feature of 4 categories and 20% null values.\n", 1845 | "\n", 1846 | "\n", 1847 | "\n", 1848 | "\n", 1849 | "\n", 1850 | "\n", 1851 | "Company: Enquero Global\n", 1852 | "\n", 1853 | "Role: Data Scientist\n", 1854 | "\n", 1855 | " \n", 1856 | "\n", 1857 | "Previous job role and responsibilities\n", 1858 | "\n", 1859 | "Problem statement of your project and How do you overcome challenges\n", 1860 | "\n", 1861 | "How do you handle feature which had many categories.\n", 1862 | "\n", 1863 | "When to use precision and recall.\n", 1864 | "\n", 1865 | "What are outliers & how do you handle them\n", 1866 | "\n", 1867 | "Joins, self joins, said me to write sql queries on self joins\n", 1868 | "\n", 1869 | "How good your with python\n", 1870 | "\n", 1871 | "Logic for reverse string.\n", 1872 | "\n", 1873 | "Data collection- how do you collect data and data preprocessing.\n", 1874 | "\n", 1875 | "Focused on EDA part\n", 1876 | "\n", 1877 | "Have you deveployed any project in cloud if you which cloud you had used and how do you do that.\n", 1878 | "\n", 1879 | "How do you interact with domain expertise and business analytics people.\n", 1880 | "\n", 1881 | "How do you replace Missing values for continuous variables.\n", 1882 | "\n", 1883 | "What is your largest data set you have handled till now and tell me size of dataset.\n", 1884 | "\n", 1885 | "Overall Mostly focused on SQL, DATA COLLECTION, EDA, feature engineering and selection.\n", 1886 | "\n", 1887 | "\n", 1888 | "\n", 1889 | "\n", 1890 | "\n", 1891 | "A continuous variable is having missing values, so how will you decide that the missing values should be imputed by mean or median?\n", 1892 | "\n", 1893 | "What is PCA and what each component means? Also, what is the maximum value for number of components?\n", 1894 | "\n", 1895 | "What is test of independence? How do you calculate Chi-square value?\n", 1896 | "\n", 1897 | "When precision is preferred over recall or vice-versa?\n", 1898 | "\n", 1899 | "Advantages and disadvantages of Random forest over Decision Tree?\n", 1900 | "\n", 1901 | "What is the c hyperparameter in SVM algorithm and how it affects bias variance tradeoff?\n", 1902 | "\n", 1903 | "What are the assumptions of linear regression?\n", 1904 | "\n", 1905 | "Difference between Stemming and Lemmatization?\n", 1906 | "\n", 1907 | "Difference between Correlation and Regression?\n", 1908 | "\n", 1909 | "What is p-value and confidence interval?\n", 1910 | "\n", 1911 | "What is multicollinearity and how do you deal with multicollinearity? What is VIF?\n", 1912 | "\n", 1913 | "What is the difference between apply, applymap and map function in python?\n", 1914 | "\n", 1915 | "\n", 1916 | "\n", 1917 | "\n", 1918 | "\n", 1919 | "\n", 1920 | "Deloitte Interview :\n", 1921 | "\n", 1922 | " \n", 1923 | "\n", 1924 | "Role: Data Scientist\n", 1925 | "\n", 1926 | "Candidate Name: Wanted to remain anonymous\n", 1927 | "\n", 1928 | "ROUND 1 :\n", 1929 | "\n", 1930 | " \n", 1931 | "\n", 1932 | "Introduction\n", 1933 | "\n", 1934 | " \n", 1935 | "\n", 1936 | "- Started with Classification particularly Imbalance , oversampling.\n", 1937 | "\n", 1938 | "Which class should i oversample etc.\n", 1939 | "\n", 1940 | "Telecom Churn Case Study Questions like Evaluation metric for imbalance data\n", 1941 | "\n", 1942 | "what threshold to choose to diving the classes (0.5 in case of balanced else sensitivity / Specifivity etc.\n", 1943 | "\n", 1944 | "What if i don't use SMOTE() for handling imbalance how should i select the threshold now (messed up by me, roc , auc etc) Ans = Presion - Recall Curve\n", 1945 | "\n", 1946 | " \n", 1947 | "\n", 1948 | "- NLP Questions\n", 1949 | "\n", 1950 | "Sentiment analysis, preprocessing like (TFID, BOW), Embeddings, stemming, Lemmatization\n", 1951 | "\n", 1952 | "libraries in know : nltk, spacy\n", 1953 | "\n", 1954 | " \n", 1955 | "\n", 1956 | "- Regression Preprocessing\n", 1957 | "\n", 1958 | "answered outlier, missing value immputation, Distribution, dummies, multicolinearity etc\n", 1959 | "\n", 1960 | "You have two highy co-related columns which one will you drop? : \"Based on Business Problem i will see accordingly.\", \n", 1961 | "\n", 1962 | " \n", 1963 | "\n", 1964 | "- Naive Bayes Explanation , Drawback of Naive Bayes(couln't answere drawback of Naive Bayes, 'Assume all are independent', him)\n", 1965 | "\n", 1966 | "- Hand Gesture Recognition Techniques (End to End)\n", 1967 | "\n", 1968 | "- Resource Timesheet Forecasting . (What is it?? what you do on this?, \" Explained with a story based on what i do in TCS\".\n", 1969 | "\n", 1970 | " \n", 1971 | "\n", 1972 | "- Do you know any Boosting Algorithms : YES\n", 1973 | "\n", 1974 | "where have you used?? in Telecom Churn and Healthcare Analytics by AV\n", 1975 | "\n", 1976 | " \n", 1977 | "\n", 1978 | "- Gradient Descent (How it works)\n", 1979 | "\n", 1980 | " \n", 1981 | "\n", 1982 | "- KNN related. How do we choose value of K ??\n", 1983 | "\n", 1984 | "\n", 1985 | "\n", 1986 | "\n", 1987 | "- Stastical Computing:\n", 1988 | "\n", 1989 | "Type 1 and Type 2 error\n", 1990 | "\n", 1991 | "Alternate name of Type 1 error (couldn't answer alternate name of Type 1 error, 'False +ive, him)\n", 1992 | "\n", 1993 | "What is p-Value (Explaiend with the example of Linear Regression from statsmodel)\n", 1994 | "\n", 1995 | " \n", 1996 | "\n", 1997 | "- Do you have exposure of TimeSeires analysis : NO (didn't ask anything and seems fine with him)\n", 1998 | "\n", 1999 | "\n", 2000 | "\n", 2001 | "\n", 2002 | "\n" 2003 | ] 2004 | } 2005 | ], 2006 | "metadata": { 2007 | "kernelspec": { 2008 | "display_name": "Python 3", 2009 | "language": "python", 2010 | "name": "python3" 2011 | }, 2012 | "language_info": { 2013 | "codemirror_mode": { 2014 | "name": "ipython", 2015 | "version": 3 2016 | }, 2017 | "file_extension": ".py", 2018 | "mimetype": "text/x-python", 2019 | "name": "python", 2020 | "nbconvert_exporter": "python", 2021 | "pygments_lexer": "ipython3", 2022 | "version": "3.7.6" 2023 | } 2024 | }, 2025 | "nbformat": 4, 2026 | "nbformat_minor": 4 2027 | } 2028 | --------------------------------------------------------------------------------