Spaces:
Sleeping
Sleeping
File size: 70,948 Bytes
1eabbf4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 | email,password,full_name,department,cgpa,semester_records,backlogs,programming_languages,tools_technologies,certifications,soft_skills,typing_speed,projects,internships,portfolio_links,hackathons,coding_ratings,competitive_exams,detailed_certifications,competitions,publications,patents,preferred_roles,preferred_industry,preferred_location,higher_studies,aptitude_score,mock_interview,english_fluency,personality_type,strengths,weaknesses,faculty_feedback
pranit.chilbule@example.com,5eccb825edc768e8702618f3c7047f994df24e3f81d51186188f9a787a3cb4ac,Pranit Chilbule,Computer Science and Engineering,9.2,"Sem 1: 8.5
Sem 2: 9.0
Sem 3: 9.1
Sem 4: 9.3
Sem 5: 9.4
Sem 6: 9.2",0,"Python (Expert), Java (Intermediate), C++ (Intermediate), JavaScript (Beginner)","Docker, Git, AWS, React, Node.js, MongoDB, MySQL, TensorFlow","AWS Certified Developer
Google Cloud Associate Engineer
Microsoft AI Fundamentals","Communication, Leadership, Teamwork, Time Management",70,,,,,,,,,,,,,,,,,,,, ,
jillrhodes@miller.com,af738b28e0a93deae4483d186d93ab0ae1300f80dbd1bf73b8b367a58cb3cb4b,Allison Hill,Computer Science and Engineering,6.59,"Sem 1: 7.46
Sem 2: 7.28
Sem 3: 9.08
Sem 4: 8.87
Sem 5: 9.62
Sem 6: 6.8",1,"Python (Beginner), Ruby (Beginner), Go (Expert)","Git, AWS, React, Node.js, GCP","Google Cloud Associate
AWS Certified Developer","Problem-Solving, Leadership",47 WPM,Ago current practice nation determine operation speak according.,Wolfe LLC,https://www.bernard.com/,0.0,LeetCode: 753,None,Here grow gas enough.,2.0,1.0,0.0,Data Scientist,Finance,Bangalore,Yes,74.0,Yes,Medium,ISFJ,"Persistence, Analytical Thinking",Shyness,Role movie win.
janetwilliams@gmail.com,cdfeaee88ad132f0b2488c09e4ad862ad1b21c30c6fe78eecc1b06dd6ec80315,Juan Calderon,Computer Science and Engineering,9.91,"Sem 1: 7.82
Sem 2: 8.43
Sem 3: 9.4
Sem 4: 8.66
Sem 5: 9.52
Sem 6: 8.52",2,"Python (Intermediate), Ruby (Beginner), Java (Beginner)","Docker, Node.js, Kubernetes, AWS, MySQL","AWS Certified Developer
Google Cloud Associate","Leadership, Communication",47 WPM,Talk term herself law.,Martin-Kelly,https://www.reid.info/,0.0,LeetCode: 2595,GRE,Establish understand read detail food shoulder.,4.0,2.0,0.0,Data Scientist,Research,Chennai,No,90.0,Yes,Low,ISFJ,"Analytical Thinking, Empathy",Perfectionism,Director allow firm environment.
dianafoster@hotmail.com,abb346954e29a8141c8cb94eddfb8190b61b3051dfa0b4ec95d5e29d93e182d8,Tommy Walter,Electronics and Communication Engineering,7.9,"Sem 1: 6.73
Sem 2: 9.7
Sem 3: 8.49
Sem 4: 9.01
Sem 5: 7.24
Sem 6: 8.25",2,"JavaScript (Beginner), Java (Beginner), C++ (Expert)","MongoDB, GCP, React, MySQL, AWS","Oracle Java Certification
Google Cloud Associate","Leadership, Communication",38 WPM,Cause seat much section investment.,"Ross, Robinson and Bright",https://www.callahan.com/,3.0,LeetCode: 472,GATE,Others his other life edge network.,0.0,0.0,0.0,AI Researcher,IT,Chennai,No,88.0,No,Low,ISFJ,"Analytical Thinking, Persistence",Perfectionism,Quite boy those.
amoore@hotmail.com,3ba35621a8b4afa459ab7703717f87ac6aeb485d2bf446f0edf6ff01a8189425,Patricia Peterson,Electronics and Communication Engineering,9.19,"Sem 1: 7.69
Sem 2: 7.53
Sem 3: 7.05
Sem 4: 6.51
Sem 5: 9.03
Sem 6: 9.02",2,"Ruby (Beginner), Java (Expert), C# (Intermediate)","MongoDB, AWS, Docker, Kubernetes, Node.js","Oracle Java Certification
AWS Certified Developer","Leadership, Teamwork",31 WPM,Will seven medical blood personal.,"Romero, Gonzalez and Brooks",http://www.nguyen.com/,0.0,LeetCode: 1586,TOEFL,Around there water beat magazine.,1.0,0.0,0.0,Software Developer,IT,Chennai,Yes,98.0,Yes,High,ESFP,"Creativity, Empathy",Shyness,Within mouth call process.
sarahcampos@hotmail.com,e3198d6aa62a6f5cdfa33a496c69e0eb63025e5dfa19f687b567eca45e45c535,Carmen Rose,Information Technology,9.75,"Sem 1: 9.14
Sem 2: 8.91
Sem 3: 9.0
Sem 4: 7.9
Sem 5: 8.85
Sem 6: 7.81",2,"JavaScript (Beginner), Python (Beginner), Java (Intermediate)","Git, AWS, GCP, Docker, MongoDB","AWS Certified Developer
Oracle Java Certification","Teamwork, Communication",32 WPM,Human public health tonight later.,Walker LLC,http://www.robinson.com/,2.0,LeetCode: 390,GRE,Town teacher audience draw.,2.0,2.0,1.0,Data Scientist,Education,Chennai,Yes,100.0,No,Medium,ENTP,"Analytical Thinking, Empathy",Shyness,Democrat car very number line six space.
uowens@gmail.com,e8afd9f6742d8cbd469f04cb79a1fdf3f3e96b4039d40c22657a37d745b4da5a,Brent Jordan,Electronics and Communication Engineering,7.98,"Sem 1: 8.13
Sem 2: 9.05
Sem 3: 8.86
Sem 4: 9.94
Sem 5: 6.84
Sem 6: 7.91",1,"Ruby (Beginner), Python (Beginner), Java (Expert)","MySQL, Kubernetes, AWS, Docker, MongoDB","Google Cloud Associate
AWS Certified Developer","Communication, Teamwork",65 WPM,Art rock song body.,Lee Group,http://ramirez.com/,0.0,LeetCode: 307,GATE,Space task better present music address.,0.0,0.0,0.0,AI Researcher,Research,Chennai,Yes,75.0,Yes,High,ESFP,"Analytical Thinking, Creativity",Procrastination,Unit support coach magazine.
gallowayjoseph@yahoo.com,7b308ffa1ed446a0ed87fe1a06770e0a1c8231fca309d82603740e5e551c63a1,James Brown,Mechanical Engineering,7.5,"Sem 1: 8.94
Sem 2: 9.06
Sem 3: 9.24
Sem 4: 8.82
Sem 5: 8.2
Sem 6: 7.16",0,"Python (Beginner), C# (Expert), Go (Intermediate)","Git, MongoDB, GCP, AWS, Node.js","Oracle Java Certification
AWS Certified Developer","Communication, Leadership",35 WPM,Product main couple design around save article.,Brown-Silva,http://www.miller.com/,1.0,LeetCode: 380,GATE,Build three east organization people information.,5.0,0.0,1.0,Software Developer,Education,Bangalore,Yes,76.0,No,Medium,ENTP,"Persistence, Analytical Thinking",Procrastination,North first end prove fire enter capital population.
khowell@jones.net,8b124a42d3eeb70314712b3e1cd4bb408059dce0dc3e35c34b552b69d04e9512,Timothy Walls,Mechanical Engineering,6.96,"Sem 1: 8.76
Sem 2: 8.1
Sem 3: 9.75
Sem 4: 9.78
Sem 5: 6.53
Sem 6: 8.67",2,"Python (Beginner), Ruby (Expert), C# (Intermediate)","Kubernetes, React, Git, Docker, MongoDB","Google Cloud Associate
AWS Certified Developer","Problem-Solving, Leadership",49 WPM,Thing these hard citizen street region.,"Riggs, Roman and Rice",https://www.baker.net/,0.0,LeetCode: 2835,TOEFL,Evening painting response data.,5.0,0.0,0.0,System Engineer,IT,Bangalore,Yes,67.0,No,Low,ENTP,"Persistence, Analytical Thinking",Procrastination,Measure economy traditional anything plant.
evan78@patterson.com,1d2befd06e8cdfcab58bad1e92ab198690b719f637ad0fa3bb3ceb974d7f308c,Amanda Cook,Mechanical Engineering,7.38,"Sem 1: 9.68
Sem 2: 6.68
Sem 3: 8.72
Sem 4: 9.4
Sem 5: 6.65
Sem 6: 7.67",0,"Go (Expert), C++ (Intermediate), Java (Expert)","Node.js, Git, MySQL, MongoDB, Docker","Oracle Java Certification
AWS Certified Developer","Leadership, Problem-Solving",65 WPM,Old challenge camera final together someone.,Nolan and Sons,http://www.deleon-henson.biz/,1.0,LeetCode: 1860,GRE,See understand door class son computer include conference.,0.0,1.0,1.0,Software Developer,Finance,Hyderabad,Yes,92.0,Yes,Medium,ESFP,"Creativity, Analytical Thinking",Impatience,Site in prove same easy city.
jamessellers@yahoo.com,7f60cf721e511eef5351c189352e0ee5be7f6a533bb83a2ab79ab6e609167674,Janet Williams,Information Technology,9.58,"Sem 1: 6.59
Sem 2: 9.08
Sem 3: 7.66
Sem 4: 9.76
Sem 5: 9.31
Sem 6: 9.52",0,"C++ (Intermediate), Java (Beginner), Python (Intermediate)","AWS, MongoDB, Node.js, MySQL, Kubernetes","Google Cloud Associate
AWS Certified Developer","Teamwork, Communication",42 WPM,Development process huge everything attorney.,Bell-Hicks,https://www.wiley.com/,3.0,LeetCode: 1444,TOEFL,While enter board its rock finish paper memory.,0.0,1.0,1.0,AI Researcher,Finance,Bangalore,Yes,66.0,Yes,Low,ISFJ,"Analytical Thinking, Empathy",Shyness,Tonight couple and job mind southern.
ryan59@alvarado-martinez.com,cbe87f8efe32c9cbf55a062d264727891280c501822e38ad9494585c7c7cb228,Teresa Mclaughlin,Electronics and Communication Engineering,9.05,"Sem 1: 7.6
Sem 2: 8.62
Sem 3: 8.29
Sem 4: 7.85
Sem 5: 8.52
Sem 6: 7.39",2,"JavaScript (Expert), Python (Expert), C# (Expert)","AWS, React, MongoDB, Git, Kubernetes","Oracle Java Certification
Google Cloud Associate","Communication, Leadership",49 WPM,For recent never court professor here.,"Orr, Gilbert and Turner",http://clark-floyd.org/,2.0,LeetCode: 2831,None,Let kind degree list top somebody.,2.0,1.0,1.0,Data Scientist,Education,Chennai,No,93.0,Yes,Low,ISFJ,"Empathy, Persistence",Perfectionism,Probably exist professional people.
lindsayhernandez@gmail.com,0764349837af5adb7f6fa800b376f8e2ca7728e21d8834d1453d5c6d7cb1c1a6,Trevor Young,Electronics and Communication Engineering,7.5,"Sem 1: 8.0
Sem 2: 8.53
Sem 3: 8.79
Sem 4: 8.13
Sem 5: 8.05
Sem 6: 7.25",1,"Ruby (Expert), Go (Beginner), Java (Intermediate)","MongoDB, React, Git, Docker, Kubernetes","AWS Certified Developer
Oracle Java Certification","Teamwork, Communication",32 WPM,Particularly shoulder lay though offer responsibility himself.,Sanchez-Douglas,http://www.robinson-brock.net/,1.0,LeetCode: 2046,GATE,Anyone eat summer lead soon property write.,3.0,1.0,0.0,AI Researcher,Research,Chennai,Yes,59.0,Yes,High,ESFP,"Creativity, Analytical Thinking",Shyness,Fish sense kind spring throughout interview trade knowledge.
katie87@allen.com,e7c152f3f5b21b0cf642ded735cf7ce8a99da8e54f2a8a495641c850c2c63610,Scott Cole,Computer Science and Engineering,8.45,"Sem 1: 9.71
Sem 2: 6.92
Sem 3: 6.97
Sem 4: 8.13
Sem 5: 8.36
Sem 6: 8.46",1,"Ruby (Expert), JavaScript (Expert), C# (Intermediate)","MongoDB, MySQL, Docker, React, AWS","Google Cloud Associate
Oracle Java Certification","Teamwork, Leadership",47 WPM,Throw ball character him check degree.,Russell-Daniels,https://www.wall.org/,3.0,LeetCode: 2667,GRE,Task she herself.,2.0,1.0,0.0,System Engineer,Education,Pune,No,70.0,Yes,High,ENTP,"Creativity, Empathy",Impatience,Wall fear hope.
brobinson@johnson-rogers.biz,eb09451244f742eb9e9105ed978643bbc39ed50a7e95bdb0c69a1245e95748ba,Sara Medina,Information Technology,6.72,"Sem 1: 7.93
Sem 2: 8.4
Sem 3: 7.96
Sem 4: 7.22
Sem 5: 7.97
Sem 6: 9.67",2,"Go (Intermediate), Python (Intermediate), C# (Beginner)","React, GCP, Node.js, AWS, MongoDB","Oracle Java Certification
AWS Certified Developer","Problem-Solving, Communication",47 WPM,Try wonder move trade option production base.,Taylor-Murray,http://murphy-gibson.com/,3.0,LeetCode: 2089,GATE,Everything week instead strong like see.,3.0,1.0,1.0,Data Scientist,Research,Hyderabad,Yes,75.0,Yes,High,ESFP,"Creativity, Empathy",Impatience,Yourself glass practice.
maryhowell@martinez.com,c1750f794cfd4331404689b4e3bfbf535a28bd6727abf160ef0500b0e2ccee53,Marissa Webster,Computer Science and Engineering,7.41,"Sem 1: 7.65
Sem 2: 8.09
Sem 3: 7.68
Sem 4: 9.58
Sem 5: 7.47
Sem 6: 9.83",1,"C++ (Beginner), Python (Expert), JavaScript (Expert)","Git, React, Docker, MySQL, MongoDB","Oracle Java Certification
AWS Certified Developer","Communication, Problem-Solving",42 WPM,Let eight hard paper white.,"Wilson, Weiss and Oconnell",http://www.johnston-odonnell.biz/,0.0,LeetCode: 2644,GRE,Walk cup option store drug recent.,1.0,0.0,1.0,Software Developer,Education,Chennai,No,99.0,No,High,INTJ,"Creativity, Empathy",Perfectionism,Sure outside building worker site.
atkinsonlynn@gmail.com,6004a866b561f50b4e7bb207f0d5bbd71727dbff8d9716ef7df8c46ba88c9469,Jeffrey Wood,Computer Science and Engineering,9.75,"Sem 1: 8.52
Sem 2: 9.68
Sem 3: 7.81
Sem 4: 9.8
Sem 5: 7.19
Sem 6: 8.57",2,"Java (Expert), Python (Expert), C++ (Beginner)","Git, React, GCP, AWS, Kubernetes","AWS Certified Developer
Google Cloud Associate","Communication, Teamwork",61 WPM,Player stock religious itself safe whole.,Gilbert-Gillespie,https://petersen-vargas.com/,0.0,LeetCode: 1875,TOEFL,Store beautiful think during let.,5.0,1.0,0.0,AI Researcher,Education,Pune,No,79.0,No,Low,ISFJ,"Persistence, Analytical Thinking",Perfectionism,Property from management foot maintain great election evidence.
allenrichard@chang.info,036a80ebc72d5fe8a411d0c8b47e6927b900115a2ac56d2ef22f7ec5757b245a,Sheryl Peters,Electronics and Communication Engineering,9.59,"Sem 1: 7.35
Sem 2: 8.13
Sem 3: 8.64
Sem 4: 7.83
Sem 5: 6.6
Sem 6: 9.48",0,"JavaScript (Intermediate), Java (Intermediate), C++ (Intermediate)","GCP, Git, MongoDB, Docker, MySQL","AWS Certified Developer
Google Cloud Associate","Problem-Solving, Leadership",45 WPM,Behavior develop reality.,Beck-Wood,https://pierce.com/,3.0,LeetCode: 2745,None,Discover return firm sea week.,3.0,0.0,0.0,System Engineer,Education,Chennai,Yes,69.0,No,Medium,ISFJ,"Empathy, Persistence",Procrastination,Course school everybody operation.
jeremy24@erickson.com,7b3643054ba803a56c0b0f5ca25db9192d884965688e4ff5de04960eede9f144,Linda Hooper,Electronics and Communication Engineering,8.96,"Sem 1: 7.45
Sem 2: 7.38
Sem 3: 6.92
Sem 4: 7.17
Sem 5: 6.92
Sem 6: 8.38",2,"Java (Expert), Ruby (Intermediate), Go (Intermediate)","MongoDB, GCP, Git, Docker, Kubernetes","AWS Certified Developer
Google Cloud Associate","Teamwork, Problem-Solving",30 WPM,Network recently call.,Garcia-Smith,https://alexander-lopez.com/,1.0,LeetCode: 1223,GATE,Wait local state husband available.,0.0,2.0,1.0,Data Scientist,Research,Bangalore,Yes,86.0,No,Medium,ESFP,"Empathy, Creativity",Impatience,Rather charge specific we be easy newspaper indicate.
tkerr@hotmail.com,89d53b7c08a9e4647d314edf073f68f7bd257329609a71759cd9a5994fb48986,Lisa Rowe,Computer Science and Engineering,7.38,"Sem 1: 9.52
Sem 2: 6.9
Sem 3: 6.73
Sem 4: 8.22
Sem 5: 8.52
Sem 6: 8.9",0,"Java (Beginner), C# (Beginner), C++ (Beginner)","MongoDB, Node.js, GCP, MySQL, React","AWS Certified Developer
Google Cloud Associate","Problem-Solving, Teamwork",49 WPM,Notice art whether between several.,"Clark, Guerrero and Moore",http://www.smith.org/,3.0,LeetCode: 1350,GATE,Fact discuss religious reflect law reach under.,4.0,2.0,0.0,Data Scientist,Education,Pune,Yes,60.0,Yes,High,INTJ,"Creativity, Analytical Thinking",Shyness,Operation sound cup boy different chance enter central.
smartinez@yahoo.com,20ec3ecd328fc168a19f4f23112e037945b50254dccd306ad08ec88950fc686b,Ricky Larson,Mechanical Engineering,8.91,"Sem 1: 8.14
Sem 2: 6.61
Sem 3: 7.51
Sem 4: 7.49
Sem 5: 9.51
Sem 6: 6.75",0,"C++ (Expert), Go (Beginner), C# (Intermediate)","Docker, AWS, React, MongoDB, Kubernetes","AWS Certified Developer
Oracle Java Certification","Communication, Problem-Solving",49 WPM,Matter management ball always it.,Munoz-Johnson,http://www.underwood.com/,2.0,LeetCode: 1898,GATE,Million kind everything young job sport why.,3.0,2.0,1.0,AI Researcher,Finance,Chennai,No,55.0,Yes,Medium,ISFJ,"Persistence, Analytical Thinking",Perfectionism,Girl four prove tax form really explain.
edwardsmarcus@yahoo.com,3eff41ce850c8072eda343c62273462a658bcc33af0dd8b7800e10bb70906072,Robin Pierce,Information Technology,9.87,"Sem 1: 9.43
Sem 2: 8.51
Sem 3: 9.83
Sem 4: 10.0
Sem 5: 8.85
Sem 6: 7.44",0,"Ruby (Expert), Java (Expert), JavaScript (Intermediate)","GCP, Kubernetes, MongoDB, AWS, React","AWS Certified Developer
Google Cloud Associate","Leadership, Teamwork",51 WPM,Price my including.,Stone PLC,https://harris.com/,2.0,LeetCode: 2844,GATE,Just recognize building win participant.,1.0,1.0,1.0,AI Researcher,Finance,Chennai,Yes,79.0,Yes,Medium,ISFJ,"Persistence, Analytical Thinking",Shyness,Report financial add impact different.
scantu@thornton.info,2fed9bbb717ad2b2fcdd17a4841291513fcc7f4cc724d2b7122f8b3206e6f0be,Ashley Valentine,Computer Science and Engineering,8.8,"Sem 1: 8.4
Sem 2: 7.95
Sem 3: 7.16
Sem 4: 7.77
Sem 5: 9.15
Sem 6: 8.69",0,"Java (Beginner), C++ (Intermediate), C# (Intermediate)","MySQL, Docker, Git, React, GCP","AWS Certified Developer
Oracle Java Certification","Leadership, Problem-Solving",30 WPM,Certain course out second carry attorney significant.,Morgan-French,https://www.barber-monroe.org/,3.0,LeetCode: 481,GRE,Tend land machine forward several help usually.,0.0,1.0,0.0,Data Scientist,Research,Pune,No,76.0,No,Medium,ENTP,"Empathy, Persistence",Impatience,Wonder draw him task improve.
ymcneil@hotmail.com,a58290097f5067812a6168ba609dd1d3273ad0afd99a165b04e9d2eccb3efdc9,John Mcintyre,Mechanical Engineering,7.17,"Sem 1: 8.6
Sem 2: 9.11
Sem 3: 6.98
Sem 4: 6.74
Sem 5: 9.2
Sem 6: 9.49",1,"Ruby (Beginner), C# (Intermediate), C++ (Expert)","GCP, MySQL, Node.js, Docker, AWS","Oracle Java Certification
Google Cloud Associate","Leadership, Teamwork",65 WPM,Who call whole forward beyond suddenly between.,Smith-Thomas,http://www.harrington-baker.org/,3.0,LeetCode: 1965,TOEFL,Power system system teacher here first.,1.0,2.0,0.0,AI Researcher,Education,Chennai,Yes,70.0,No,Low,ESFP,"Empathy, Persistence",Impatience,Their along attention piece TV young section.
tjackson@williams.com,8def98a6abbdab0199fa812c7bf02ffc8a4c052178b1ffcada8c924115990337,Brett Schultz,Mechanical Engineering,9.88,"Sem 1: 6.94
Sem 2: 9.88
Sem 3: 7.66
Sem 4: 6.85
Sem 5: 9.46
Sem 6: 6.85",1,"Python (Intermediate), Go (Expert), Java (Beginner)","Docker, MySQL, Node.js, Kubernetes, React","Oracle Java Certification
Google Cloud Associate","Communication, Teamwork",64 WPM,Certainly most not society color bad.,Harvey-Allen,http://www.little-stevens.com/,3.0,LeetCode: 1397,None,Top quality citizen kid generation onto police.,4.0,0.0,0.0,Data Scientist,Finance,Hyderabad,Yes,77.0,Yes,Low,INTJ,"Empathy, Analytical Thinking",Procrastination,Real lead few yourself table blood.
spencedominique@yahoo.com,e9efb46293d2710e363c4552d8a85551f4146852adb291103a9f1d37ef7980f5,Ian Phillips,Computer Science and Engineering,6.66,"Sem 1: 9.29
Sem 2: 7.53
Sem 3: 7.81
Sem 4: 7.01
Sem 5: 8.36
Sem 6: 8.48",0,"Java (Expert), Ruby (Intermediate), Python (Expert)","AWS, MySQL, GCP, Docker, React","Google Cloud Associate
Oracle Java Certification","Problem-Solving, Teamwork",30 WPM,Treat seat strategy.,Parsons-Hall,https://www.lee.com/,3.0,LeetCode: 1278,GRE,Best physical always small almost half capital travel.,0.0,1.0,1.0,System Engineer,Research,Pune,No,69.0,Yes,Medium,ESFP,"Analytical Thinking, Empathy",Shyness,Section compare car much will most.
julie51@yahoo.com,b2f8deb6bb969668fbdfc8f3364852aa0924c93e1b3698d0e8f67345d690f5cf,Sandra Scott,Electronics and Communication Engineering,8.51,"Sem 1: 9.97
Sem 2: 7.53
Sem 3: 9.92
Sem 4: 8.8
Sem 5: 7.46
Sem 6: 8.48",2,"Ruby (Expert), Go (Expert), Python (Intermediate)","GCP, AWS, MongoDB, Kubernetes, Docker","Oracle Java Certification
AWS Certified Developer","Leadership, Problem-Solving",38 WPM,Senior difficult put purpose.,Coffey-Ballard,https://www.smith-herrera.info/,0.0,LeetCode: 2670,GATE,Pull public once state wait board.,2.0,1.0,0.0,System Engineer,Education,Bangalore,No,70.0,No,High,ENTP,"Creativity, Persistence",Procrastination,Likely people wall foreign particular.
cwilson@gmail.com,47e707b039ca66c11f453b03ab7669a83292e4326b9208d4d0cbfedd3f5b8125,Madison Marshall,Electronics and Communication Engineering,9.41,"Sem 1: 7.4
Sem 2: 9.39
Sem 3: 8.19
Sem 4: 9.32
Sem 5: 9.11
Sem 6: 7.69",0,"JavaScript (Beginner), Python (Expert), Java (Expert)","Node.js, React, Git, AWS, MongoDB","Google Cloud Associate
AWS Certified Developer","Problem-Solving, Teamwork",46 WPM,Break doctor Mr home he we recent.,"Barnes, Newton and Moore",https://www.gilbert-crosby.com/,3.0,LeetCode: 2715,TOEFL,Real describe know.,0.0,2.0,0.0,AI Researcher,IT,Pune,Yes,91.0,Yes,Low,ESFP,"Persistence, Empathy",Shyness,Talk between rate name within.
ndavis@fowler.com,4ecbc040643a6a382ec7098e4300a5011509b65c71916da02fcb47d9f0810d2d,James Lopez,Computer Science and Engineering,6.99,"Sem 1: 9.81
Sem 2: 7.57
Sem 3: 8.22
Sem 4: 6.84
Sem 5: 9.61
Sem 6: 6.97",1,"C++ (Intermediate), Go (Expert), C# (Expert)","Kubernetes, Node.js, React, Git, AWS","Oracle Java Certification
Google Cloud Associate","Leadership, Communication",53 WPM,Skin day stop never.,"Robinson, Kane and Murphy",http://www.garrison-thomas.com/,1.0,LeetCode: 1916,None,Economy company produce ago address so draw.,1.0,1.0,0.0,System Engineer,Finance,Bangalore,No,67.0,Yes,High,ESFP,"Analytical Thinking, Persistence",Impatience,Administration enter camera inside box as.
soniawilliams@hotmail.com,56bac80050c404a1944f07c6217a1e7352a7ac9c217a1a621675636ce0218836,Ivan Wheeler,Computer Science and Engineering,6.68,"Sem 1: 7.67
Sem 2: 9.96
Sem 3: 9.25
Sem 4: 7.22
Sem 5: 9.4
Sem 6: 8.44",2,"Java (Beginner), Ruby (Expert), C++ (Beginner)","GCP, Kubernetes, Docker, MongoDB, MySQL","AWS Certified Developer
Oracle Java Certification","Communication, Problem-Solving",30 WPM,Poor all your suggest international blue Republican.,Jones-Miller,http://www.hill.org/,2.0,LeetCode: 1074,TOEFL,Republican herself our far measure involve soldier.,0.0,0.0,1.0,Software Developer,Education,Chennai,Yes,97.0,Yes,Medium,ESFP,"Persistence, Empathy",Perfectionism,Table prepare shoulder result.
uross@gmail.com,38194021fce0308395c68a3b1c38fff5b94e40b33f74c5d2c775bf790b6821bf,Jesse Perez,Mechanical Engineering,8.26,"Sem 1: 9.81
Sem 2: 6.65
Sem 3: 9.24
Sem 4: 9.53
Sem 5: 8.33
Sem 6: 8.1",0,"Python (Intermediate), JavaScript (Expert), Go (Beginner)","MySQL, MongoDB, Git, Node.js, Kubernetes","Oracle Java Certification
AWS Certified Developer","Communication, Problem-Solving",47 WPM,Professor hear check type attack story.,Reynolds Ltd,https://www.brown.com/,2.0,LeetCode: 1660,TOEFL,Government program seek test return why.,3.0,2.0,1.0,Software Developer,IT,Hyderabad,No,78.0,Yes,Medium,ISFJ,"Empathy, Creativity",Shyness,Fine billion medical choice lot suggest glass news.
lynchdiane@hotmail.com,aef4cf6b6228c34a0e24f45d02b3d9d9b320e64b6a27019787aa25c9b0fb55b0,Donald Perez,Computer Science and Engineering,7.59,"Sem 1: 7.59
Sem 2: 7.39
Sem 3: 9.84
Sem 4: 8.9
Sem 5: 8.16
Sem 6: 6.82",0,"Python (Expert), JavaScript (Expert), Ruby (Intermediate)","Kubernetes, Git, GCP, Node.js, React","Google Cloud Associate
AWS Certified Developer","Problem-Solving, Teamwork",57 WPM,Event several TV go.,Kane PLC,https://www.figueroa.com/,0.0,LeetCode: 1278,TOEFL,Democrat information game have return since nothing.,2.0,0.0,0.0,Data Scientist,Research,Hyderabad,Yes,72.0,No,High,ISFJ,"Creativity, Empathy",Perfectionism,Third choose senior anyone.
wnelson@hotmail.com,70544bee5e638d035f39d0d0eb7bf96367b57f5e24261b8092c8bc4517999118,Jeremy Coleman,Electronics and Communication Engineering,6.6,"Sem 1: 7.46
Sem 2: 9.17
Sem 3: 9.73
Sem 4: 7.73
Sem 5: 7.13
Sem 6: 7.0",2,"JavaScript (Expert), Python (Expert), Java (Beginner)","Docker, AWS, MySQL, Node.js, React","Google Cloud Associate
AWS Certified Developer","Leadership, Teamwork",50 WPM,Book question or money final determine.,"Brown, Harris and Dougherty",http://murphy-smith.biz/,0.0,LeetCode: 315,GRE,Can mouth discover next.,1.0,2.0,0.0,Software Developer,Finance,Chennai,No,81.0,No,Medium,ISFJ,"Creativity, Persistence",Perfectionism,Author technology amount affect TV television.
darius05@gmail.com,d3bf3444caea8d869fcfdf779d2d4ce0aff0e73d7a25b58bf3909d52f822852e,Laura Mckinney,Electronics and Communication Engineering,8.0,"Sem 1: 7.49
Sem 2: 8.87
Sem 3: 8.2
Sem 4: 8.83
Sem 5: 6.66
Sem 6: 7.88",2,"Python (Intermediate), Ruby (Beginner), Java (Beginner)","GCP, MongoDB, Kubernetes, Git, React","Google Cloud Associate
Oracle Java Certification","Teamwork, Communication",54 WPM,Least ready gun join black job hundred bad.,Reese-Walker,http://www.schultz.com/,1.0,LeetCode: 2149,TOEFL,Road standard spring door chair culture.,0.0,1.0,0.0,AI Researcher,IT,Chennai,Yes,70.0,No,Low,ESFP,"Empathy, Creativity",Perfectionism,Check service away week physical less nor often.
edward17@yahoo.com,f7db3801e31dc141e04bd6d3b7b79ab5e3b653a1b653b6e4178b4cf3aa1679b4,Sonia Day,Mechanical Engineering,6.57,"Sem 1: 7.64
Sem 2: 9.3
Sem 3: 8.66
Sem 4: 9.41
Sem 5: 9.72
Sem 6: 6.81",0,"Java (Intermediate), JavaScript (Expert), C# (Beginner)","Node.js, GCP, React, Kubernetes, Docker","Google Cloud Associate
AWS Certified Developer","Communication, Leadership",70 WPM,Option goal avoid left also.,Decker-Jones,http://carpenter-best.com/,0.0,LeetCode: 2273,GRE,Training occur could painting may whatever late.,2.0,1.0,0.0,Data Scientist,IT,Hyderabad,No,62.0,Yes,Low,ENTP,"Analytical Thinking, Empathy",Shyness,Word base position always remain yard.
vortiz@hotmail.com,aa7c17f25d23948083b96211859e6dd044f884139df13c23dfe28fbedc92828e,Lisa Cox,Mechanical Engineering,9.14,"Sem 1: 9.16
Sem 2: 8.07
Sem 3: 9.73
Sem 4: 8.48
Sem 5: 8.72
Sem 6: 8.69",2,"C++ (Beginner), Java (Intermediate), JavaScript (Intermediate)","GCP, MongoDB, MySQL, Git, Kubernetes","Oracle Java Certification
AWS Certified Developer","Leadership, Teamwork",58 WPM,Positive at behind question exist rich prevent trade.,Cook PLC,http://ponce-hale.biz/,0.0,LeetCode: 333,TOEFL,Organization visit finally heavy.,2.0,0.0,0.0,AI Researcher,Research,Bangalore,No,86.0,Yes,Medium,ESFP,"Creativity, Analytical Thinking",Shyness,Spend prove stock school rate money.
henry35@yahoo.com,56e72a8119a84d8ee703f3e014af3e2d5cab70a46dd1059332176b3fb6d15c59,Jessica Cox,Computer Science and Engineering,9.34,"Sem 1: 9.43
Sem 2: 9.94
Sem 3: 6.8
Sem 4: 8.76
Sem 5: 6.64
Sem 6: 8.98",1,"C# (Beginner), Ruby (Intermediate), Go (Intermediate)","GCP, Node.js, AWS, Kubernetes, MongoDB","AWS Certified Developer
Google Cloud Associate","Communication, Teamwork",36 WPM,Choice fast small medical.,"Conley, Stephenson and Johnson",https://www.bennett.org/,3.0,LeetCode: 1263,TOEFL,Return analysis hair rest.,5.0,2.0,0.0,System Engineer,IT,Hyderabad,No,69.0,No,High,INTJ,"Persistence, Empathy",Shyness,Particular sell six doctor dream whole.
xhammond@yahoo.com,221356491746203cb305d390ea47dccaab3b304f1a76b9d860655b3ba1a94def,Stephanie Lee,Electronics and Communication Engineering,9.35,"Sem 1: 8.85
Sem 2: 9.4
Sem 3: 9.09
Sem 4: 8.9
Sem 5: 8.34
Sem 6: 8.76",1,"C# (Intermediate), C++ (Intermediate), Python (Beginner)","AWS, React, Node.js, MongoDB, Docker","AWS Certified Developer
Oracle Java Certification","Teamwork, Communication",48 WPM,Whom stage soon catch economic political.,Spencer-Garcia,http://hines.info/,0.0,LeetCode: 2179,GATE,Challenge join watch develop later glass ago.,5.0,1.0,0.0,AI Researcher,Education,Hyderabad,Yes,94.0,Yes,Low,ESFP,"Analytical Thinking, Creativity",Procrastination,How hear history.
lacey20@lowery-kennedy.com,bf1be9868e36ca698f76c50aaebfddb51e5148d7efcd3b75a71c568ebae1d54e,Danny Flores,Information Technology,9.89,"Sem 1: 8.64
Sem 2: 9.13
Sem 3: 9.24
Sem 4: 7.32
Sem 5: 7.34
Sem 6: 9.88",1,"Ruby (Expert), Java (Expert), C++ (Intermediate)","MySQL, GCP, Node.js, AWS, MongoDB","Oracle Java Certification
Google Cloud Associate","Teamwork, Communication",68 WPM,Large accept bad eight strong nature road.,"Henderson, Parsons and Young",http://www.barnes.info/,1.0,LeetCode: 1124,GATE,Book toward others administration.,5.0,1.0,1.0,Software Developer,IT,Pune,Yes,98.0,Yes,Medium,ESFP,"Creativity, Empathy",Perfectionism,Offer responsibility fact ability good number cost.
cmarks@hughes.com,69e02d5b6ffd5af1e251574d723596bf1921b95e6e0f5ab247d473a8f8f3af19,Kelly Ward,Information Technology,9.36,"Sem 1: 9.6
Sem 2: 9.76
Sem 3: 7.95
Sem 4: 7.89
Sem 5: 7.81
Sem 6: 7.85",0,"C++ (Intermediate), Java (Beginner), Python (Expert)","React, Kubernetes, Docker, Git, MySQL","Google Cloud Associate
AWS Certified Developer","Problem-Solving, Teamwork",69 WPM,Drop price billion old series card.,Payne-Li,http://mendoza.info/,0.0,LeetCode: 424,GATE,Fall analysis current.,2.0,0.0,0.0,AI Researcher,IT,Pune,Yes,69.0,Yes,High,ENTP,"Empathy, Persistence",Shyness,Firm financial huge.
michael05@martinez-richardson.biz,372711d6646e3cedd5706b39c52780c499a37abb65e9e322f6158e54fd3efea4,Kara Johnson,Computer Science and Engineering,6.89,"Sem 1: 9.67
Sem 2: 8.59
Sem 3: 6.56
Sem 4: 8.3
Sem 5: 7.35
Sem 6: 7.0",1,"Python (Beginner), C# (Expert), C++ (Intermediate)","Kubernetes, Docker, GCP, MongoDB, Git","Oracle Java Certification
AWS Certified Developer","Problem-Solving, Teamwork",32 WPM,Fund cost reality happen something entire.,Acosta Inc,https://www.carter.com/,3.0,LeetCode: 1629,TOEFL,Knowledge response coach know language.,5.0,0.0,1.0,Software Developer,Finance,Hyderabad,Yes,99.0,No,High,INTJ,"Persistence, Empathy",Procrastination,Past itself police social arm provide.
thomascathy@johnson-jones.com,18091453e151613cb3736a7aa601b5e805479a48b1bd910b92bd7c2501963db1,Jose Brady,Information Technology,9.41,"Sem 1: 8.9
Sem 2: 9.93
Sem 3: 8.17
Sem 4: 7.14
Sem 5: 6.97
Sem 6: 9.01",1,"Python (Beginner), C++ (Beginner), Java (Beginner)","React, GCP, MySQL, AWS, Node.js","Google Cloud Associate
Oracle Java Certification","Communication, Leadership",42 WPM,Allow check last he know baby case.,Sanders-Banks,http://www.fitzgerald.net/,2.0,LeetCode: 1562,GATE,Trial brother simple region Democrat partner.,5.0,1.0,1.0,Software Developer,Finance,Chennai,No,97.0,No,Medium,ISFJ,"Creativity, Empathy",Shyness,Customer career available common require young specific.
patricia22@hicks-martinez.com,002d519f44238c5132b4012b02b65cb0c00b4beb5fa4b2b6632a96b4626521e4,Victoria Contreras,Electronics and Communication Engineering,9.74,"Sem 1: 8.32
Sem 2: 9.3
Sem 3: 9.04
Sem 4: 6.78
Sem 5: 8.61
Sem 6: 9.38",2,"C++ (Beginner), Ruby (Intermediate), Python (Expert)","GCP, MongoDB, AWS, MySQL, Node.js","AWS Certified Developer
Google Cloud Associate","Leadership, Teamwork",32 WPM,So ago network hard sound.,"Anderson, Henson and Jones",https://jenkins.com/,2.0,LeetCode: 2618,None,Politics last quite general there sister.,2.0,2.0,0.0,Software Developer,Research,Pune,Yes,51.0,Yes,Low,ESFP,"Analytical Thinking, Empathy",Perfectionism,Consider whom item treat area buy check clearly.
kingcynthia@hotmail.com,cbc76f1468ed01edd05bdc3e6453ffd28acb1c481e23c660602f85c490cab343,Michael Reed,Information Technology,9.22,"Sem 1: 7.78
Sem 2: 7.84
Sem 3: 8.49
Sem 4: 8.62
Sem 5: 8.88
Sem 6: 9.82",1,"JavaScript (Beginner), Python (Expert), C# (Intermediate)","Node.js, React, MySQL, Kubernetes, Docker","AWS Certified Developer
Oracle Java Certification","Teamwork, Problem-Solving",63 WPM,Field move maybe collection walk child probably result.,"Morgan, Bradshaw and Williams",http://www.fry.com/,3.0,LeetCode: 2400,GATE,Short indicate police marriage phone.,2.0,1.0,1.0,Data Scientist,Finance,Chennai,Yes,57.0,Yes,High,ESFP,"Creativity, Persistence",Shyness,Politics few each southern image.
vmarshall@hotmail.com,ae637135d5c320d9b916c10b7252f9eba017b3c7c4d2ce15b667a30a906fabae,Michael Moore,Computer Science and Engineering,9.34,"Sem 1: 9.89
Sem 2: 9.95
Sem 3: 8.84
Sem 4: 8.98
Sem 5: 8.42
Sem 6: 7.52",1,"Ruby (Intermediate), Java (Expert), Go (Beginner)","Docker, AWS, Node.js, MongoDB, React","Google Cloud Associate
AWS Certified Developer","Leadership, Problem-Solving",66 WPM,Safe team wish candidate have no.,Allen-Martinez,https://www.davis.biz/,2.0,LeetCode: 2014,GRE,Industry while total spend value return couple city.,4.0,0.0,0.0,System Engineer,Research,Chennai,No,99.0,No,Low,INTJ,"Creativity, Empathy",Perfectionism,Level these market bed hotel lead drive.
amanda16@gmail.com,9b23be4dcfb3a5a1b7a4c4ba8ff4f17c30c047b627cb3e84a6aa504202588316,Amber Campbell,Mechanical Engineering,8.13,"Sem 1: 8.31
Sem 2: 6.95
Sem 3: 9.4
Sem 4: 8.43
Sem 5: 8.56
Sem 6: 9.19",0,"JavaScript (Beginner), C# (Expert), Python (Beginner)","GCP, Kubernetes, Docker, MySQL, Node.js","Google Cloud Associate
Oracle Java Certification","Communication, Teamwork",42 WPM,Shake hand hundred now crime network.,Hughes Group,https://www.hester.com/,2.0,LeetCode: 612,TOEFL,Newspaper hand certain own husband American.,4.0,2.0,0.0,Data Scientist,Education,Hyderabad,No,86.0,Yes,High,INTJ,"Analytical Thinking, Persistence",Procrastination,Case four listen.
francisco94@hotmail.com,b79acdf5afca82a5ac6c77181214ab05681c5255aa9e566b02aac0b44adb995b,Larry Robertson,Information Technology,9.18,"Sem 1: 7.96
Sem 2: 8.74
Sem 3: 8.24
Sem 4: 8.7
Sem 5: 7.51
Sem 6: 9.85",1,"Java (Intermediate), Go (Intermediate), JavaScript (Beginner)","Git, Kubernetes, AWS, Node.js, React","Google Cloud Associate
AWS Certified Developer","Leadership, Problem-Solving",39 WPM,Mother remember feel staff happy purpose woman.,"Parker, Roach and Wiggins",http://coffey-patton.org/,2.0,LeetCode: 1407,TOEFL,Dinner anything lose modern return simple herself.,3.0,0.0,1.0,Software Developer,Finance,Hyderabad,No,57.0,No,Medium,ENTP,"Creativity, Analytical Thinking",Perfectionism,All way body affect finish.
thorntonapril@hotmail.com,965ba874764988a2d924436c4bb5230eee9995bbb17b0abb6a61a92812472843,Michael Jenkins,Electronics and Communication Engineering,9.81,"Sem 1: 9.52
Sem 2: 7.96
Sem 3: 9.87
Sem 4: 9.66
Sem 5: 9.35
Sem 6: 9.77",2,"C++ (Intermediate), Java (Expert), Go (Intermediate)","MySQL, GCP, AWS, Git, React","Google Cloud Associate
Oracle Java Certification","Teamwork, Communication",67 WPM,Moment finish community treatment garden great sign.,"Becker, Lara and Baker",https://www.ramirez.com/,2.0,LeetCode: 299,GATE,Side relate real major look.,2.0,1.0,1.0,System Engineer,IT,Bangalore,No,58.0,No,Low,ISFJ,"Empathy, Creativity",Perfectionism,Value somebody event business quality here woman.
robertsjennifer@yahoo.com,88610e29d42c5e88dd640075251cd071d675b12ecf4d06539937d8c5bc6e9413,Tina Ballard,Mechanical Engineering,6.68,"Sem 1: 8.47
Sem 2: 7.77
Sem 3: 7.51
Sem 4: 7.85
Sem 5: 8.08
Sem 6: 8.42",2,"Go (Beginner), C# (Beginner), Python (Intermediate)","React, MongoDB, GCP, Kubernetes, Docker","AWS Certified Developer
Google Cloud Associate","Communication, Problem-Solving",32 WPM,Section degree still even no.,Taylor-Gilbert,http://www.santiago.com/,1.0,LeetCode: 1464,None,Appear including response beyond side.,4.0,1.0,0.0,Data Scientist,Finance,Pune,Yes,75.0,No,Low,ISFJ,"Empathy, Persistence",Procrastination,Who within citizen.
manuel01@andrews.com,28db82072eb8f01aadde28cd56b3ea4559588547eab5ea4adb3125da332ad540,Shirley Alvarez,Mechanical Engineering,9.36,"Sem 1: 7.79
Sem 2: 8.86
Sem 3: 9.93
Sem 4: 8.54
Sem 5: 9.29
Sem 6: 9.04",2,"Go (Intermediate), Python (Intermediate), C# (Expert)","AWS, Git, GCP, MongoDB, Docker","Oracle Java Certification
Google Cloud Associate","Teamwork, Leadership",45 WPM,Individual study value already.,French-Lopez,https://www.evans.com/,0.0,LeetCode: 2445,GATE,Expect writer myself management voice surface.,1.0,0.0,1.0,System Engineer,Research,Hyderabad,No,94.0,Yes,Medium,ESFP,"Analytical Thinking, Persistence",Impatience,Evening speak former room possible responsibility add.
cherylfowler@wilcox-robertson.com,d881043311ef3b6db037d6656cd033f7e89d49a69a9c5663744e49e02970fdb8,Edward Craig,Information Technology,8.46,"Sem 1: 9.99
Sem 2: 8.17
Sem 3: 7.82
Sem 4: 9.85
Sem 5: 8.11
Sem 6: 8.37",2,"C++ (Expert), Go (Intermediate), Ruby (Beginner)","AWS, GCP, MySQL, Kubernetes, Docker","Google Cloud Associate
Oracle Java Certification","Teamwork, Leadership",61 WPM,Continue cell food easy.,Reyes-Griffin,https://aguilar-berry.com/,2.0,LeetCode: 2065,TOEFL,Realize artist brother fill if maybe.,4.0,2.0,1.0,System Engineer,IT,Chennai,No,72.0,Yes,Medium,INTJ,"Persistence, Empathy",Perfectionism,Real police wait happen determine.
emiles@hotmail.com,f7a6b6df3b8c2e3cb4e77cea718b44a48b04b586023019c57744f537b3177d03,Karen Gibson,Electronics and Communication Engineering,9.73,"Sem 1: 8.8
Sem 2: 9.12
Sem 3: 7.25
Sem 4: 9.4
Sem 5: 7.45
Sem 6: 8.47",1,"Java (Expert), Python (Expert), C# (Beginner)","AWS, Git, React, GCP, Docker","Oracle Java Certification
AWS Certified Developer","Communication, Problem-Solving",56 WPM,Seven quite other skin moment.,"Padilla, Miller and Elliott",http://www.herrera.info/,2.0,LeetCode: 2034,GATE,Quite response major together.,5.0,0.0,0.0,Data Scientist,Research,Chennai,No,91.0,Yes,Medium,ISFJ,"Persistence, Empathy",Perfectionism,Speak law message lead around left southern.
williamsmelvin@weaver.com,ec3152388fdb28c35d993726866f7724654551d2323f6ca0872ccbdb125a1318,Jennifer Velasquez,Computer Science and Engineering,8.78,"Sem 1: 7.31
Sem 2: 9.09
Sem 3: 9.48
Sem 4: 6.63
Sem 5: 9.73
Sem 6: 7.96",0,"Python (Beginner), JavaScript (Expert), Go (Intermediate)","Git, MongoDB, Kubernetes, GCP, React","AWS Certified Developer
Google Cloud Associate","Leadership, Teamwork",64 WPM,All important shoulder she within position inside.,West-Stark,https://vega.net/,3.0,LeetCode: 649,None,President girl condition Mr.,2.0,0.0,0.0,System Engineer,Education,Chennai,No,95.0,Yes,High,ISFJ,"Persistence, Empathy",Impatience,Camera without strong series without leg rest.
eric31@gmail.com,1b6c70ffcdff997148095b8d12d36741df350b7ed8276a18116df126cc30e888,James Hall,Information Technology,8.64,"Sem 1: 8.74
Sem 2: 7.92
Sem 3: 8.0
Sem 4: 7.65
Sem 5: 7.9
Sem 6: 6.83",0,"JavaScript (Beginner), C++ (Intermediate), Java (Intermediate)","AWS, MySQL, Node.js, Kubernetes, React","Google Cloud Associate
AWS Certified Developer","Leadership, Problem-Solving",53 WPM,Past view threat drive attack order.,Harper-Warner,http://www.williams.com/,1.0,LeetCode: 354,GATE,Mean eye staff rule.,3.0,1.0,0.0,AI Researcher,Finance,Bangalore,No,73.0,Yes,High,ENTP,"Empathy, Analytical Thinking",Shyness,Officer significant stand down then worry.
dpeters@david-powers.net,0d2f8a1ea0b456331f211200548edfdb61e7f89ecc1ed0c30ece12e4e5cecf52,Jennifer Hill,Electronics and Communication Engineering,7.96,"Sem 1: 8.42
Sem 2: 8.15
Sem 3: 8.38
Sem 4: 8.82
Sem 5: 7.26
Sem 6: 7.37",2,"Ruby (Intermediate), Python (Expert), C# (Expert)","React, Docker, GCP, Git, MongoDB","Oracle Java Certification
AWS Certified Developer","Teamwork, Communication",50 WPM,Impact feel contain Mrs drive different.,"Thomas, Ford and Brown",https://moreno.com/,3.0,LeetCode: 576,GRE,Two suggest begin right.,5.0,2.0,1.0,Software Developer,Research,Bangalore,No,58.0,No,Medium,INTJ,"Empathy, Persistence",Procrastination,Appear help painting always authority.
vclark@krueger-smith.com,00c8c6b46635800246724d11c19c7c44fd29582bb8adb24ec65e402efc6bbc8c,Laurie Powers,Computer Science and Engineering,7.89,"Sem 1: 9.36
Sem 2: 9.11
Sem 3: 8.52
Sem 4: 6.66
Sem 5: 7.71
Sem 6: 6.72",0,"Python (Intermediate), JavaScript (Intermediate), Ruby (Beginner)","Kubernetes, Node.js, MongoDB, AWS, React","Google Cloud Associate
Oracle Java Certification","Communication, Leadership",64 WPM,Section senior trial receive.,"Harris, Herman and Arnold",https://ferguson-howard.com/,1.0,LeetCode: 2776,TOEFL,Mention market better wonder light style.,0.0,0.0,1.0,Data Scientist,Education,Bangalore,Yes,69.0,No,Low,ESFP,"Empathy, Analytical Thinking",Impatience,Have including none determine certainly.
elijah53@yahoo.com,4c961514a4537b09daf6057cc17b2c3fd9ae30f95d777ae4f9e965d2364c47a8,Timothy Riley,Mechanical Engineering,7.71,"Sem 1: 7.46
Sem 2: 9.78
Sem 3: 9.04
Sem 4: 6.89
Sem 5: 9.33
Sem 6: 7.97",0,"Java (Beginner), Ruby (Expert), Python (Beginner)","MySQL, Git, Docker, React, MongoDB","Google Cloud Associate
Oracle Java Certification","Teamwork, Leadership",43 WPM,Material pressure range either start.,"May, Henry and Jackson",https://www.cortez.com/,0.0,LeetCode: 673,TOEFL,Wrong whatever model stuff avoid stand any.,1.0,2.0,1.0,System Engineer,Education,Pune,Yes,92.0,Yes,Medium,ISFJ,"Persistence, Analytical Thinking",Impatience,Include successful discuss.
williamsonelizabeth@hotmail.com,52260b17e66fb24a1d9453a9c0ba52d9de0f9fb38faeee3f972ad45b687788cb,Alexa Wagner,Mechanical Engineering,8.45,"Sem 1: 6.66
Sem 2: 7.71
Sem 3: 8.75
Sem 4: 7.83
Sem 5: 8.34
Sem 6: 8.94",1,"Java (Beginner), C++ (Expert), JavaScript (Intermediate)","AWS, MongoDB, Kubernetes, React, Docker","Google Cloud Associate
AWS Certified Developer","Problem-Solving, Teamwork",65 WPM,Administration mother in admit reveal movie expert.,"Li, Craig and Drake",http://www.warren.com/,1.0,LeetCode: 1690,GRE,Money spring environment however health image north wrong.,2.0,0.0,1.0,Software Developer,Research,Pune,Yes,84.0,Yes,High,ISFJ,"Empathy, Persistence",Perfectionism,Feel stock ball yard practice.
walshjacqueline@gmail.com,4dc29081a8ff8675c0dca05b29cbe37fa6464455891f18b5c723689967a58011,Jared Bennett,Computer Science and Engineering,7.16,"Sem 1: 9.17
Sem 2: 9.04
Sem 3: 8.46
Sem 4: 8.18
Sem 5: 9.54
Sem 6: 7.67",0,"Java (Expert), Ruby (Intermediate), Python (Beginner)","AWS, Node.js, Docker, GCP, Kubernetes","Google Cloud Associate
Oracle Java Certification","Problem-Solving, Leadership",52 WPM,Population former with wind thus try.,Lewis Ltd,https://glass.com/,2.0,LeetCode: 1171,TOEFL,Nor allow up fire which onto sell.,4.0,1.0,1.0,Software Developer,Research,Pune,Yes,73.0,No,Medium,INTJ,"Creativity, Persistence",Impatience,Up federal nor note support quality.
brian63@peterson.org,1aa4774c7cec3624b5bfac5f15a9cc73ea335186fb77f35fe1c9744eb81ad523,Janet Singh,Computer Science and Engineering,7.41,"Sem 1: 9.77
Sem 2: 8.53
Sem 3: 7.96
Sem 4: 7.03
Sem 5: 7.65
Sem 6: 7.83",0,"JavaScript (Intermediate), C# (Intermediate), C++ (Expert)","MySQL, MongoDB, Docker, React, Kubernetes","AWS Certified Developer
Oracle Java Certification","Problem-Solving, Communication",64 WPM,Ahead event yeah make green wait.,Lopez-Willis,https://www.phillips.com/,0.0,LeetCode: 2246,GATE,Here six child hope.,0.0,2.0,0.0,Software Developer,Research,Hyderabad,Yes,54.0,Yes,High,ENTP,"Empathy, Creativity",Perfectionism,Blood accept final growth especially car.
johnsonmichael@gmail.com,71f86bd9964867fae2402e9de0e041461b0cd177e674bd11e2f8764098788839,Jerry Peters,Mechanical Engineering,8.81,"Sem 1: 6.56
Sem 2: 8.36
Sem 3: 7.94
Sem 4: 6.56
Sem 5: 9.03
Sem 6: 8.38",1,"Python (Beginner), C# (Beginner), JavaScript (Beginner)","MongoDB, Kubernetes, Docker, Node.js, GCP","Oracle Java Certification
Google Cloud Associate","Leadership, Teamwork",55 WPM,Tell activity including single right nice.,Armstrong and Sons,https://www.adams.info/,0.0,LeetCode: 1628,None,As itself inside machine.,3.0,2.0,0.0,Data Scientist,Finance,Bangalore,Yes,55.0,No,Medium,ESFP,"Empathy, Analytical Thinking",Perfectionism,Guess want result many.
ncook@brock-rivera.com,e8fb86e82425719a03be05dacbd54e031c9beeee4af7e75780ded5c99dc5376c,Judith Taylor,Information Technology,6.79,"Sem 1: 9.46
Sem 2: 8.76
Sem 3: 7.66
Sem 4: 9.92
Sem 5: 9.91
Sem 6: 9.63",0,"Java (Intermediate), Ruby (Intermediate), C# (Beginner)","Docker, GCP, MySQL, Node.js, Git","AWS Certified Developer
Google Cloud Associate","Communication, Problem-Solving",67 WPM,Carry fly water cut fire who why fact.,"Chen, Faulkner and Casey",https://velasquez-long.com/,1.0,LeetCode: 1731,GATE,Customer young conference should agree road wall.,2.0,0.0,0.0,AI Researcher,Finance,Chennai,Yes,100.0,Yes,Low,ISFJ,"Analytical Thinking, Empathy",Shyness,Just fact realize standard somebody.
donna66@cole.info,e3922a22ab2eb77a4f77feffde7cee4ac4f73a8dc39d522794bbda148630cfc1,Jonathan Schultz,Information Technology,9.44,"Sem 1: 7.69
Sem 2: 9.19
Sem 3: 9.84
Sem 4: 7.89
Sem 5: 9.21
Sem 6: 6.6",1,"Ruby (Beginner), JavaScript (Intermediate), Go (Expert)","Node.js, MongoDB, Docker, React, GCP","Oracle Java Certification
Google Cloud Associate","Communication, Leadership",48 WPM,Media turn reality myself so growth time.,"Wheeler, Rocha and Rodriguez",http://holland.org/,1.0,LeetCode: 401,GATE,Whom former someone black better develop.,2.0,0.0,1.0,Data Scientist,Research,Pune,No,56.0,Yes,High,ISFJ,"Empathy, Creativity",Procrastination,Newspaper reach determine hear leg quickly real.
fknapp@gmail.com,4f9c13c9b0e39defddd0f1ab86f4aee8c6145c6be2fe006bad830eab93dcfb73,Zachary Webb,Computer Science and Engineering,6.96,"Sem 1: 7.16
Sem 2: 8.07
Sem 3: 8.44
Sem 4: 7.93
Sem 5: 6.59
Sem 6: 7.74",0,"C# (Intermediate), Ruby (Beginner), C++ (Intermediate)","Node.js, MongoDB, MySQL, Git, GCP","AWS Certified Developer
Oracle Java Certification","Problem-Solving, Communication",38 WPM,Give gas six miss.,Alvarez-Kim,https://evans.com/,2.0,LeetCode: 1333,TOEFL,Support possible quality.,3.0,0.0,0.0,Data Scientist,Research,Pune,No,69.0,No,High,ISFJ,"Persistence, Analytical Thinking",Shyness,Upon scientist might necessary.
jacobsandoval@yahoo.com,605bd6c2f9b01bc5bdbc83ffdfb7bd9ef8d523c5c3f006b659155e2d250c8f0b,Jeffery Murray,Information Technology,8.1,"Sem 1: 6.97
Sem 2: 6.52
Sem 3: 7.88
Sem 4: 9.45
Sem 5: 7.83
Sem 6: 9.52",1,"C++ (Beginner), JavaScript (Intermediate), C# (Intermediate)","AWS, MySQL, Kubernetes, Docker, MongoDB","Google Cloud Associate
Oracle Java Certification","Problem-Solving, Leadership",45 WPM,Third last involve above Democrat everything region somebody.,"Garcia, Wiggins and Lopez",https://www.wilson-lambert.info/,2.0,LeetCode: 1640,TOEFL,Whole finish home hotel box goal leader.,3.0,1.0,0.0,Data Scientist,Education,Bangalore,No,95.0,Yes,Medium,ISFJ,"Analytical Thinking, Creativity",Shyness,Sport relationship father pass.
whiteheather@hotmail.com,2930a09094a8d42998fdd105f021898c09b8dcb2ee65dffb76299e5f29144def,Cesar Wilson,Information Technology,8.72,"Sem 1: 7.35
Sem 2: 8.81
Sem 3: 9.0
Sem 4: 9.26
Sem 5: 6.76
Sem 6: 9.97",1,"C# (Expert), JavaScript (Expert), Ruby (Intermediate)","MongoDB, Git, Node.js, Kubernetes, GCP","Oracle Java Certification
AWS Certified Developer","Communication, Problem-Solving",52 WPM,Case himself control player really population yourself never.,Roberts-Lopez,https://www.crane-washington.com/,1.0,LeetCode: 2750,GATE,White measure manager range indeed style.,4.0,2.0,1.0,System Engineer,Research,Bangalore,Yes,56.0,No,High,ENTP,"Empathy, Creativity",Shyness,Cold not somebody determine allow different eye.
armstrongjoseph@hotmail.com,e49ce57cabf898d62d9a320ade7516a5027af4506df7b5c609fbbcc3b10e3cb2,Krystal Barton,Mechanical Engineering,9.2,"Sem 1: 8.56
Sem 2: 8.25
Sem 3: 7.71
Sem 4: 6.59
Sem 5: 6.87
Sem 6: 7.96",0,"Python (Intermediate), Go (Intermediate), Java (Intermediate)","MySQL, AWS, GCP, MongoDB, Kubernetes","Google Cloud Associate
AWS Certified Developer","Problem-Solving, Leadership",58 WPM,My series service kid despite interesting.,"Greer, Potter and Evans",http://bailey-montoya.info/,2.0,LeetCode: 375,TOEFL,Simply down specific onto.,0.0,2.0,0.0,Software Developer,Finance,Bangalore,Yes,97.0,Yes,Low,ENTP,"Creativity, Empathy",Shyness,Technology particular into pattern size spend.
tiffany44@adams.com,902527015e941225dba2d5a2a0d41f8b1dc2188493b585967cf153ebc754d320,Laura Patel,Mechanical Engineering,7.31,"Sem 1: 7.92
Sem 2: 7.15
Sem 3: 8.74
Sem 4: 8.01
Sem 5: 6.6
Sem 6: 8.65",0,"JavaScript (Intermediate), C# (Beginner), Ruby (Expert)","AWS, MongoDB, Kubernetes, React, Git","Oracle Java Certification
AWS Certified Developer","Teamwork, Problem-Solving",50 WPM,Try yeah term camera tend economic.,"Morris, Wright and Bridges",https://ray.biz/,1.0,LeetCode: 1974,GATE,Later plant they behavior middle everything.,2.0,2.0,1.0,System Engineer,Research,Chennai,Yes,72.0,No,Medium,ENTP,"Persistence, Empathy",Perfectionism,Lawyer maintain old than suggest behavior.
brobinson@simpson.com,83593749421757f1edcbc9d70d631978874f8d1955bf5e9435f281d654714909,Madison Terry,Information Technology,7.6,"Sem 1: 7.34
Sem 2: 6.91
Sem 3: 7.81
Sem 4: 6.99
Sem 5: 7.86
Sem 6: 8.59",2,"JavaScript (Intermediate), Ruby (Expert), Java (Expert)","Kubernetes, MongoDB, AWS, MySQL, Docker","AWS Certified Developer
Google Cloud Associate","Problem-Solving, Leadership",33 WPM,Candidate system small thus several animal phone.,Smith-Noble,http://smith-rubio.com/,2.0,LeetCode: 139,None,Think few themselves theory.,1.0,0.0,1.0,AI Researcher,Research,Chennai,No,95.0,No,Medium,ENTP,"Analytical Thinking, Persistence",Perfectionism,Pressure economy head tough.
trios@smith.com,000c88700161f93a05d033e9f6e09eb0b3e8b1504a3fa4b1024fc9aa58aee2fc,James Torres,Information Technology,7.52,"Sem 1: 7.46
Sem 2: 8.38
Sem 3: 7.09
Sem 4: 8.1
Sem 5: 9.1
Sem 6: 9.18",2,"C# (Beginner), Python (Intermediate), Ruby (Expert)","React, Git, Node.js, MongoDB, AWS","Oracle Java Certification
AWS Certified Developer","Problem-Solving, Communication",45 WPM,Mind knowledge account gas building.,Benson-Woods,http://cross.com/,2.0,LeetCode: 232,None,Happen federal him spend themselves political.,2.0,1.0,0.0,AI Researcher,IT,Hyderabad,Yes,97.0,No,Low,ESFP,"Creativity, Persistence",Impatience,Attention none particular clearly.
fheath@gmail.com,1c8a5a6effdff58b2b24536346821df5aade1ed4e7303edd88bbdb2971c6e618,Daniel Goodman,Information Technology,9.35,"Sem 1: 9.32
Sem 2: 8.5
Sem 3: 8.36
Sem 4: 8.59
Sem 5: 7.09
Sem 6: 9.93",1,"C++ (Expert), C# (Expert), Ruby (Beginner)","Kubernetes, Node.js, Git, MongoDB, Docker","Oracle Java Certification
AWS Certified Developer","Teamwork, Communication",50 WPM,Operation himself white fire.,Wright Ltd,http://www.burke.com/,1.0,LeetCode: 2869,None,Day parent country hot position.,3.0,0.0,1.0,AI Researcher,Research,Chennai,Yes,90.0,Yes,Medium,ISFJ,"Persistence, Creativity",Shyness,Manager both matter order month.
kvalencia@diaz-vega.info,ebd26a86db2ec2b6e74de5e8878acd4b8b1ddfa2e8178dd93618f1f48d536be4,Victoria Peck,Electronics and Communication Engineering,8.54,"Sem 1: 9.54
Sem 2: 9.47
Sem 3: 6.83
Sem 4: 9.9
Sem 5: 8.72
Sem 6: 8.94",0,"Ruby (Beginner), C# (Intermediate), JavaScript (Beginner)","MySQL, GCP, Kubernetes, Node.js, React","Oracle Java Certification
AWS Certified Developer","Problem-Solving, Teamwork",33 WPM,Admit attack energy always.,Fry Group,https://miles-miller.net/,0.0,LeetCode: 507,None,Pattern everyone finally memory data space movie.,0.0,0.0,0.0,AI Researcher,Research,Bangalore,No,62.0,Yes,Low,ISFJ,"Creativity, Empathy",Perfectionism,Only shake power poor financial join.
chavezchelsea@yahoo.com,39d5e5988d8aef599d3d3d5053adbfe3505af0862915a8c8137b44a5691c98df,Cynthia Sanchez,Electronics and Communication Engineering,7.38,"Sem 1: 7.8
Sem 2: 9.66
Sem 3: 7.08
Sem 4: 7.89
Sem 5: 7.57
Sem 6: 8.95",0,"JavaScript (Expert), Go (Beginner), Python (Beginner)","AWS, MySQL, Git, Docker, GCP","AWS Certified Developer
Google Cloud Associate","Communication, Problem-Solving",51 WPM,Budget remain reduce clearly.,Mills-Logan,https://www.martinez-norman.com/,0.0,LeetCode: 1829,GRE,Sign ahead southern evening.,3.0,0.0,0.0,AI Researcher,IT,Bangalore,Yes,70.0,No,Medium,ENTP,"Empathy, Analytical Thinking",Impatience,Enjoy window physical many.
eric19@sharp.com,c79140f46dd31ef71f0b3fbf2c29fe0357597ac2a632e3c080a3b93d1464e58e,Amy Villarreal,Computer Science and Engineering,8.36,"Sem 1: 6.53
Sem 2: 8.78
Sem 3: 8.04
Sem 4: 9.03
Sem 5: 8.7
Sem 6: 7.03",1,"C# (Beginner), Go (Beginner), JavaScript (Beginner)","Kubernetes, Docker, GCP, React, AWS","Google Cloud Associate
Oracle Java Certification","Leadership, Communication",45 WPM,Each line him.,White Inc,https://www.wright-moon.com/,2.0,LeetCode: 2740,GATE,Step number budget pull apply.,1.0,2.0,1.0,Software Developer,Finance,Hyderabad,Yes,97.0,No,Medium,INTJ,"Creativity, Empathy",Shyness,Source wonder west attention let.
woodkelly@yahoo.com,5cadfebe02ef8ac4870eb822786c818d2a0cef52166231bd62027405f8edf96b,Ryan Murphy,Computer Science and Engineering,7.34,"Sem 1: 8.73
Sem 2: 6.75
Sem 3: 9.61
Sem 4: 6.54
Sem 5: 7.76
Sem 6: 7.61",1,"Ruby (Intermediate), C# (Expert), JavaScript (Expert)","Kubernetes, MySQL, Node.js, Git, React","Oracle Java Certification
AWS Certified Developer","Communication, Teamwork",43 WPM,Less option management significant crime.,"Hodges, Sanchez and Smith",https://www.weaver.com/,0.0,LeetCode: 347,None,Ability price support road billion morning.,4.0,1.0,1.0,AI Researcher,Research,Bangalore,Yes,67.0,Yes,Medium,INTJ,"Creativity, Analytical Thinking",Procrastination,Information which win central evidence.
stephen19@gmail.com,dc5d81ee36d5ba800430055df19c1f1a3c57763040afdf0fd3011a221ffc09eb,David Bruce,Mechanical Engineering,8.55,"Sem 1: 9.17
Sem 2: 8.77
Sem 3: 8.75
Sem 4: 7.59
Sem 5: 8.03
Sem 6: 9.84",0,"Python (Intermediate), Java (Beginner), Ruby (Intermediate)","Git, GCP, React, Node.js, Docker","AWS Certified Developer
Oracle Java Certification","Teamwork, Leadership",30 WPM,Avoid nothing itself who door end.,Howe-Long,https://nelson-jones.com/,1.0,LeetCode: 2133,TOEFL,Sister once choice clearly.,4.0,2.0,1.0,Data Scientist,Finance,Hyderabad,No,96.0,Yes,High,ISFJ,"Empathy, Creativity",Perfectionism,Finish building group show later leg system.
marymurphy@dawson.biz,60acc8de30cbbcbad2ef448782735cd8da0ad3b396d3dc397125615eb48f3823,Robert Torres,Electronics and Communication Engineering,8.99,"Sem 1: 8.52
Sem 2: 6.77
Sem 3: 8.09
Sem 4: 7.76
Sem 5: 8.25
Sem 6: 8.48",1,"Java (Expert), C++ (Expert), Python (Expert)","Docker, AWS, React, GCP, Git","AWS Certified Developer
Oracle Java Certification","Teamwork, Communication",60 WPM,Employee wrong all identify laugh.,"Pierce, Davis and Garcia",http://www.brown.com/,2.0,LeetCode: 1668,GRE,Statement head piece popular old.,1.0,0.0,1.0,Data Scientist,Finance,Hyderabad,No,96.0,No,Medium,INTJ,"Persistence, Analytical Thinking",Perfectionism,True avoid young cup position.
williamssteven@gmail.com,ab278fb4a0a0853d2e14efe9c6e23ab895f2ca23b90b7000fbfb716ebb3e1fca,Anna Boone,Information Technology,7.28,"Sem 1: 8.31
Sem 2: 6.66
Sem 3: 7.9
Sem 4: 9.57
Sem 5: 9.53
Sem 6: 9.21",1,"C++ (Intermediate), Python (Beginner), C# (Intermediate)","AWS, GCP, MySQL, Kubernetes, Node.js","AWS Certified Developer
Google Cloud Associate","Leadership, Problem-Solving",61 WPM,Start house ahead raise common Democrat.,Hill Group,http://www.harvey.biz/,1.0,LeetCode: 2338,GRE,Look because him information poor something eat.,1.0,0.0,1.0,Software Developer,Education,Pune,Yes,71.0,Yes,Low,ESFP,"Persistence, Analytical Thinking",Impatience,Some writer site grow name machine tree.
anthonycochran@yahoo.com,64a02493d7c80999620a4f3b1a27892b1c1ad1d17b1586135c47b9132ca0dde5,Jasmine White,Information Technology,7.97,"Sem 1: 9.86
Sem 2: 9.9
Sem 3: 7.0
Sem 4: 7.48
Sem 5: 6.65
Sem 6: 7.31",2,"JavaScript (Intermediate), Go (Expert), C++ (Beginner)","Docker, Kubernetes, React, AWS, Git","Oracle Java Certification
AWS Certified Developer","Problem-Solving, Leadership",38 WPM,Morning short yourself wind beyond prevent entire.,"Brown, Davies and Robinson",https://thompson.com/,1.0,LeetCode: 1294,TOEFL,Trial agreement red way nor none.,2.0,1.0,1.0,System Engineer,Research,Pune,Yes,54.0,Yes,High,INTJ,"Creativity, Analytical Thinking",Impatience,Student special wife my compare.
nsmith@drake.com,4059d2dac86be43ca3a9bc71f84b1fb6577f9541be1d0fd18323ff1dc47156a5,Anthony Guzman,Mechanical Engineering,8.13,"Sem 1: 7.92
Sem 2: 8.38
Sem 3: 9.88
Sem 4: 7.23
Sem 5: 7.58
Sem 6: 7.43",0,"Python (Expert), Java (Expert), C++ (Expert)","Git, AWS, Node.js, Kubernetes, Docker","AWS Certified Developer
Oracle Java Certification","Leadership, Teamwork",62 WPM,Arrive challenge relate center book money.,Yu-Brooks,https://www.turner-taylor.com/,0.0,LeetCode: 2873,TOEFL,Social whether power company why really.,2.0,0.0,0.0,AI Researcher,Research,Hyderabad,Yes,79.0,Yes,High,INTJ,"Analytical Thinking, Empathy",Impatience,Skin development open compare fill read camera rock.
carriemccall@walker.com,53a6b5dce6247ac7e8dc091e485dfcdd135d9db46e182ee610e87dc59526612c,Tiffany Myers,Information Technology,7.19,"Sem 1: 7.9
Sem 2: 8.9
Sem 3: 9.78
Sem 4: 6.79
Sem 5: 8.55
Sem 6: 9.71",0,"Python (Expert), Ruby (Intermediate), Java (Beginner)","Docker, React, Git, Node.js, AWS","AWS Certified Developer
Oracle Java Certification","Problem-Solving, Leadership",55 WPM,Draw word collection those.,Underwood Ltd,https://baker.com/,3.0,LeetCode: 220,None,Either blue ability history run why.,5.0,1.0,0.0,System Engineer,Education,Hyderabad,No,67.0,No,High,INTJ,"Creativity, Persistence",Procrastination,Manage her national big look tell.
phillipslucas@jones.biz,d9a8fab9822778e7e9128cd29f57a542058c3ad03eb4b6171df31a9e47b240d1,Melissa Martin,Mechanical Engineering,7.94,"Sem 1: 8.43
Sem 2: 6.71
Sem 3: 7.48
Sem 4: 6.98
Sem 5: 7.2
Sem 6: 9.6",2,"Java (Beginner), Go (Intermediate), C# (Expert)","React, MySQL, GCP, AWS, Kubernetes","Oracle Java Certification
Google Cloud Associate","Problem-Solving, Teamwork",41 WPM,Natural together behavior order.,"Barry, Bush and Reynolds",http://brown.com/,0.0,LeetCode: 1406,GRE,Important never understand music produce.,0.0,1.0,0.0,AI Researcher,Finance,Hyderabad,Yes,56.0,Yes,Low,ENTP,"Persistence, Empathy",Perfectionism,Down anyone occur style child.
collinclark@hotmail.com,c7cc40bf3a068ea35e444d7b3551933adecbf5574cb96eb8f50616c3b3e223a4,Jeffrey Phillips,Information Technology,8.51,"Sem 1: 9.94
Sem 2: 7.86
Sem 3: 9.77
Sem 4: 9.97
Sem 5: 7.11
Sem 6: 7.33",1,"Ruby (Expert), Go (Beginner), C++ (Expert)","React, Kubernetes, GCP, Docker, AWS","Oracle Java Certification
Google Cloud Associate","Teamwork, Problem-Solving",32 WPM,List break size likely.,"Baker, May and Hughes",https://lopez-williams.info/,0.0,LeetCode: 330,GRE,Enjoy student nor character recent benefit property.,4.0,0.0,0.0,AI Researcher,IT,Pune,Yes,58.0,No,Low,ENTP,"Persistence, Analytical Thinking",Perfectionism,Including series dinner article hit mission whole.
zevans@johnson.org,23b71cc7fffeb885380cd88d745c32a0a47ba694eba5589323b1134aa1ef3b57,Taylor Armstrong,Information Technology,8.55,"Sem 1: 9.71
Sem 2: 9.21
Sem 3: 9.46
Sem 4: 9.51
Sem 5: 9.86
Sem 6: 7.81",2,"JavaScript (Intermediate), C# (Intermediate), Python (Intermediate)","Kubernetes, MongoDB, React, AWS, Node.js","Oracle Java Certification
Google Cloud Associate","Teamwork, Leadership",65 WPM,Challenge we last we cold deep cover amount.,Mcneil Group,http://www.scott.com/,2.0,LeetCode: 1014,GRE,Hold however for everybody.,3.0,1.0,1.0,Data Scientist,Education,Bangalore,No,99.0,Yes,High,ISFJ,"Creativity, Persistence",Perfectionism,True actually red onto site both change.
hartcraig@dillon-beard.biz,79fe922a61ae5676677183d18b75af542ee1728513cf590add84bc9a6a1281a7,Lauren Hanna,Mechanical Engineering,6.99,"Sem 1: 9.11
Sem 2: 7.33
Sem 3: 9.94
Sem 4: 7.09
Sem 5: 9.6
Sem 6: 6.81",2,"Go (Intermediate), Ruby (Beginner), C++ (Intermediate)","AWS, MongoDB, React, Git, Kubernetes","Google Cloud Associate
AWS Certified Developer","Communication, Problem-Solving",54 WPM,Occur list common idea peace race I.,Preston-Rivera,http://www.alvarez.com/,3.0,LeetCode: 1818,GRE,Financial successful teach range win.,3.0,1.0,1.0,System Engineer,Research,Bangalore,No,100.0,Yes,High,ESFP,"Analytical Thinking, Empathy",Procrastination,Care wind kitchen stay especially.
wfigueroa@camacho.com,d7ae3dd31bfab08eb337576504fae74a6876c617a90ef9a3b517428b17a35e2c,Matthew Lopez,Computer Science and Engineering,7.62,"Sem 1: 9.83
Sem 2: 6.76
Sem 3: 7.1
Sem 4: 7.81
Sem 5: 9.06
Sem 6: 8.41",0,"C++ (Intermediate), C# (Expert), Go (Beginner)","Node.js, Kubernetes, GCP, AWS, Docker","AWS Certified Developer
Oracle Java Certification","Leadership, Communication",42 WPM,Idea sister modern notice community themselves customer.,Wright Group,http://gonzalez.biz/,3.0,LeetCode: 2955,TOEFL,Race drop major land.,5.0,1.0,1.0,Data Scientist,IT,Bangalore,No,86.0,No,High,INTJ,"Persistence, Analytical Thinking",Shyness,Only glass clear thus see read expect.
deborahbyrd@pearson-palmer.com,d2f654b695aab3ab9ec3cf3ba8acc88b060650d7bc1bf0ef82cff99422c6d0d3,Christopher Armstrong,Computer Science and Engineering,7.53,"Sem 1: 8.82
Sem 2: 8.6
Sem 3: 7.2
Sem 4: 6.59
Sem 5: 7.1
Sem 6: 7.52",0,"JavaScript (Intermediate), Python (Intermediate), C++ (Intermediate)","GCP, Docker, React, MongoDB, AWS","AWS Certified Developer
Google Cloud Associate","Problem-Solving, Teamwork",41 WPM,Positive over across education.,Marquez-Fletcher,https://york-stevens.com/,3.0,LeetCode: 282,TOEFL,Few minute perhaps once account yourself whom.,3.0,1.0,1.0,Data Scientist,Finance,Bangalore,Yes,98.0,Yes,High,ISFJ,"Empathy, Persistence",Impatience,No order executive range loss from.
edwardcannon@gmail.com,88ea674d7d303515fb1f89d5ff713abb801c9f43a4fbee2cc8fc1d216e0ecf09,Frederick Hill,Computer Science and Engineering,9.44,"Sem 1: 9.36
Sem 2: 7.97
Sem 3: 8.37
Sem 4: 9.53
Sem 5: 8.16
Sem 6: 9.59",1,"C++ (Expert), Python (Beginner), JavaScript (Expert)","MongoDB, Kubernetes, Git, AWS, Docker","AWS Certified Developer
Oracle Java Certification","Teamwork, Communication",32 WPM,Identify floor cause agent market fast trade identify.,"Johnson, Erickson and Armstrong",http://reeves.info/,3.0,LeetCode: 420,None,Medical suddenly subject theory Congress best.,1.0,2.0,0.0,System Engineer,Finance,Bangalore,Yes,74.0,No,Low,ISFJ,"Persistence, Empathy",Shyness,Scientist rise next tree.
jeffrey46@watson-richards.info,c3630d11312e4e55782f86a8e74613da1235c1b729c63cf9a1f727e52cde4864,Stephanie Pena,Computer Science and Engineering,9.25,"Sem 1: 8.68
Sem 2: 8.33
Sem 3: 7.97
Sem 4: 7.95
Sem 5: 7.02
Sem 6: 8.56",0,"Python (Intermediate), C# (Expert), Ruby (Intermediate)","Node.js, GCP, AWS, React, MongoDB","Oracle Java Certification
Google Cloud Associate","Communication, Problem-Solving",47 WPM,Approach plant oil per line create build.,"James, Evans and Brown",http://www.cooper.info/,3.0,LeetCode: 689,None,First resource single maintain.,0.0,1.0,1.0,Data Scientist,IT,Chennai,No,73.0,Yes,Medium,ISFJ,"Persistence, Creativity",Shyness,Would finish around later decide similar office citizen.
epowell@yahoo.com,8bb7848e064edaf597e41472685eaa33519405c98ed035c83a32774e389e7b1b,Penny Anderson,Computer Science and Engineering,9.9,"Sem 1: 7.3
Sem 2: 7.55
Sem 3: 9.1
Sem 4: 9.21
Sem 5: 7.62
Sem 6: 9.05",2,"Go (Intermediate), Python (Beginner), Java (Intermediate)","MySQL, React, Node.js, Git, GCP","AWS Certified Developer
Oracle Java Certification","Leadership, Problem-Solving",62 WPM,Current health add focus street course quality.,"Gross, Perez and Wiley",https://www.reyes.com/,3.0,LeetCode: 655,GATE,Assume animal way lay.,1.0,0.0,0.0,Software Developer,Education,Bangalore,No,53.0,No,Low,ENTP,"Persistence, Creativity",Shyness,Others full thousand yet garden top grow.
perezjessica@gmail.com,aa82c819efd169455fb83f79e28ac2b4d90543a87fec8c92af8a4cf104ee0255,Travis Hull,Mechanical Engineering,8.72,"Sem 1: 6.93
Sem 2: 6.61
Sem 3: 7.8
Sem 4: 8.58
Sem 5: 7.12
Sem 6: 9.55",2,"C# (Beginner), C++ (Intermediate), Go (Expert)","Docker, GCP, Git, AWS, Node.js","AWS Certified Developer
Oracle Java Certification","Teamwork, Leadership",44 WPM,Operation college hand.,"Conner, Brooks and Bowman",http://www.rodriguez.com/,1.0,LeetCode: 1202,None,Know buy education reduce day rate.,4.0,0.0,0.0,AI Researcher,Education,Hyderabad,Yes,64.0,No,Low,ISFJ,"Persistence, Creativity",Shyness,Feeling product production.
campbellkristen@gonzalez-gonzalez.com,3214164a5565be0f0cfc20a18f772e4f07aa0870a47bc569a6719b2f30a29cdd,Larry Taylor,Electronics and Communication Engineering,8.11,"Sem 1: 7.26
Sem 2: 7.56
Sem 3: 8.32
Sem 4: 8.68
Sem 5: 8.55
Sem 6: 6.53",2,"Ruby (Expert), C++ (Expert), C# (Expert)","GCP, MongoDB, React, Git, AWS","AWS Certified Developer
Google Cloud Associate","Leadership, Problem-Solving",50 WPM,Group important civil nature travel.,"Fitzpatrick, Rivera and Smith",http://www.caldwell.net/,2.0,LeetCode: 1169,TOEFL,Rich big eight discuss.,1.0,0.0,0.0,Software Developer,Research,Pune,Yes,96.0,Yes,Low,ESFP,"Persistence, Creativity",Shyness,Enough anyone spend them system.
yorkpamela@christian.com,679d861c03118ebcd369bde72c391780474b4014cbcbd56e61ea936e19ff65b5,Michael Simmons,Mechanical Engineering,7.86,"Sem 1: 6.62
Sem 2: 8.98
Sem 3: 8.5
Sem 4: 7.16
Sem 5: 9.04
Sem 6: 7.28",2,"Go (Expert), JavaScript (Intermediate), C++ (Beginner)","MongoDB, Kubernetes, MySQL, Git, AWS","AWS Certified Developer
Google Cloud Associate","Teamwork, Leadership",51 WPM,Western environmental run head garden box.,Rivers-Nelson,https://banks-robles.com/,0.0,LeetCode: 1010,TOEFL,Receive around wall city.,1.0,2.0,1.0,AI Researcher,Finance,Pune,No,87.0,No,Medium,INTJ,"Empathy, Analytical Thinking",Perfectionism,Treat lot notice just particularly single.
hknapp@alexander-brown.com,4018e725c3f0d9aaace06e5adc293f3c4f9dbed236de31acd0b26646463deabb,Shari Hobbs,Mechanical Engineering,9.61,"Sem 1: 8.25
Sem 2: 9.54
Sem 3: 7.84
Sem 4: 7.54
Sem 5: 6.69
Sem 6: 9.49",0,"Java (Expert), C++ (Intermediate), JavaScript (Beginner)","React, Kubernetes, Node.js, Git, AWS","Google Cloud Associate
AWS Certified Developer","Leadership, Problem-Solving",33 WPM,Should office north within prove full mission.,"Montgomery, Reynolds and Barber",https://rhodes.net/,0.0,LeetCode: 1951,TOEFL,Approach poor church support system thank avoid man.,1.0,0.0,0.0,AI Researcher,IT,Hyderabad,No,90.0,No,Medium,ESFP,"Empathy, Creativity",Perfectionism,Former everything medical nearly her.
gatessergio@gmail.com,8328ae6c441bdbe8d0edd6a7d1b5008db4310232326abac9b3d84d1a0b165d7f,Angela Wallace,Computer Science and Engineering,8.37,"Sem 1: 9.06
Sem 2: 9.83
Sem 3: 9.62
Sem 4: 9.15
Sem 5: 8.36
Sem 6: 6.56",0,"Go (Beginner), Ruby (Expert), Java (Intermediate)","GCP, Kubernetes, Git, AWS, MongoDB","Oracle Java Certification
Google Cloud Associate","Teamwork, Communication",32 WPM,Bill include news.,Petersen PLC,https://www.powers.com/,2.0,LeetCode: 1291,None,Such forward should outside respond.,5.0,2.0,1.0,AI Researcher,Education,Pune,No,72.0,Yes,High,ESFP,"Analytical Thinking, Empathy",Impatience,Respond box service develop game stop.
princetravis@newton.com,a5746e580089498d437ddd5440ecf7d0bb60c20d26f37c6c8d1559624d73c834,Dorothy Boyd,Information Technology,7.24,"Sem 1: 6.58
Sem 2: 8.27
Sem 3: 6.93
Sem 4: 8.99
Sem 5: 9.27
Sem 6: 7.81",2,"C++ (Beginner), C# (Expert), Go (Beginner)","Docker, Git, MySQL, React, Node.js","Google Cloud Associate
Oracle Java Certification","Problem-Solving, Communication",65 WPM,Democratic station course full serious another.,"Monroe, Chapman and Barton",https://lawrence.com/,2.0,LeetCode: 2043,GRE,Save network item one under sit travel.,1.0,2.0,0.0,System Engineer,Research,Bangalore,No,89.0,Yes,Medium,INTJ,"Analytical Thinking, Creativity",Perfectionism,Community spring billion price paper focus thing industry.
tara72@gmail.com,de945b3a4aaefc980d57b8e56357298a876a5459761a9863828c302b83b8bcec,Melissa Wright,Computer Science and Engineering,8.24,"Sem 1: 8.63
Sem 2: 9.22
Sem 3: 9.41
Sem 4: 9.91
Sem 5: 7.75
Sem 6: 7.93",0,"Python (Beginner), C# (Expert), JavaScript (Intermediate)","React, AWS, Git, Node.js, MongoDB","AWS Certified Developer
Google Cloud Associate","Teamwork, Communication",62 WPM,Federal reduce team Republican very plan cut.,"Klein, Parks and Morse",http://www.daniels.com/,0.0,LeetCode: 514,TOEFL,Lose number project individual security subject experience.,5.0,0.0,1.0,System Engineer,Finance,Chennai,Yes,56.0,Yes,High,ISFJ,"Persistence, Empathy",Procrastination,Space mission agent certainly prove customer.
maryvaughn@yahoo.com,5ff723c079d46f152c53166182c66780d9cdd4d596e7e2dad50494b27f40dc7f,Candace Mitchell,Mechanical Engineering,9.08,"Sem 1: 6.83
Sem 2: 9.15
Sem 3: 6.66
Sem 4: 9.48
Sem 5: 8.82
Sem 6: 7.1",1,"JavaScript (Expert), C# (Beginner), C++ (Intermediate)","React, Kubernetes, Git, AWS, MongoDB","Google Cloud Associate
Oracle Java Certification","Problem-Solving, Leadership",60 WPM,Allow sport bill test science ten score.,"Price, Dixon and Robles",https://www.hughes-frye.com/,3.0,LeetCode: 2757,GRE,Approach season data than team kitchen difficult.,0.0,0.0,0.0,Data Scientist,IT,Chennai,No,86.0,No,High,ESFP,"Persistence, Empathy",Perfectionism,Sense national owner simply who family.
bennettroy@baker.com,f9a7350c76a8890ab21f06bf272f809c1b1260cd0fc2ee252b2209928e881636,Michael Lopez,Information Technology,8.19,"Sem 1: 8.21
Sem 2: 9.61
Sem 3: 8.04
Sem 4: 6.72
Sem 5: 8.79
Sem 6: 6.54",2,"C# (Expert), Go (Expert), Ruby (Beginner)","React, Docker, AWS, MongoDB, MySQL","Google Cloud Associate
Oracle Java Certification","Problem-Solving, Communication",65 WPM,Always up others similar.,"Gilbert, Stanley and Henry",https://www.stewart.com/,0.0,LeetCode: 147,GRE,City myself idea glass third professional former.,4.0,1.0,1.0,Data Scientist,IT,Chennai,No,65.0,No,Medium,INTJ,"Creativity, Persistence",Shyness,Despite sell most you statement.
flemingmanuel@cruz.com,0c09ad671a072cd77977e3209e13793af17e61007c4d5883c6df914c4a7c7697,Mrs. Maureen Griffin,Mechanical Engineering,9.36,"Sem 1: 6.78
Sem 2: 8.05
Sem 3: 8.51
Sem 4: 6.81
Sem 5: 8.24
Sem 6: 7.61",1,"Go (Beginner), Ruby (Intermediate), Python (Intermediate)","Git, MongoDB, Node.js, MySQL, GCP","Oracle Java Certification
Google Cloud Associate","Teamwork, Leadership",59 WPM,State heart sort knowledge analysis together court.,"Miller, Davis and Bonilla",http://www.santiago.biz/,2.0,LeetCode: 1588,GATE,Day stock these scientist.,1.0,1.0,1.0,AI Researcher,Finance,Chennai,Yes,56.0,Yes,High,ISFJ,"Persistence, Empathy",Procrastination,Position vote section child learn forward.
rhondarussell@mccoy-hamilton.com,e8530cb052dc75c5eec77e96deb16c5b0648cf2a6556ba13c80b367cbeb26aa0,Anthony Bauer,Electronics and Communication Engineering,8.96,"Sem 1: 6.66
Sem 2: 7.07
Sem 3: 6.99
Sem 4: 9.01
Sem 5: 9.03
Sem 6: 6.87",2,"Java (Intermediate), Ruby (Beginner), Python (Intermediate)","AWS, React, Git, MongoDB, Node.js","Oracle Java Certification
AWS Certified Developer","Problem-Solving, Teamwork",67 WPM,Movement political peace series.,"Williams, Charles and Howard",http://turner.info/,1.0,LeetCode: 2143,GATE,House produce listen mouth carry hospital.,4.0,2.0,0.0,AI Researcher,Research,Hyderabad,Yes,96.0,Yes,High,ESFP,"Persistence, Empathy",Shyness,Far plant fear thought whole term possible.
|