File size: 26,346 Bytes
ef0c133 |
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 |
{
"_id": "q00001",
"title": "",
"text": "What are the service and product offerings from Microsoft\n\nproduct offerings Microsoft"
}
{
"_id": "q00002",
"title": "",
"text": "MSFT segment breakdown\n\nMSFT"
}
{
"_id": "q00003",
"title": "",
"text": "Who are Microsoft`s key customers?\n\nMicrosoft customers?"
}
{
"_id": "q00004",
"title": "",
"text": "What is Microsoft`s business model\n\nbusiness model"
}
{
"_id": "q00005",
"title": "",
"text": "MSFT Capex commitment\n\nMSFT"
}
{
"_id": "q00006",
"title": "",
"text": "Which recent M&A activities has Microsoft been involved in\n\nM&A activities Microsoft"
}
{
"_id": "q00007",
"title": "",
"text": "How much revenue does Microsoft generate from contracts with customers?\n\nrevenue Microsoft contracts?"
}
{
"_id": "q00008",
"title": "",
"text": "MSFT remaining performance obligation\n\nMSFT"
}
{
"_id": "q00009",
"title": "",
"text": "Adobe subsidiaries of trademarks\n\nsubsidiaries"
}
{
"_id": "q00010",
"title": "",
"text": "ADBE share repurchase\n\nrepurchase"
}
{
"_id": "q00011",
"title": "",
"text": "fully diluted shares outstanding ADBE\n\ndiluted shares"
}
{
"_id": "q00012",
"title": "",
"text": "Who are the members of Adobe`s management team\n\nmembers Adobe`s team"
}
{
"_id": "q00013",
"title": "",
"text": "ADBE RPO\n\n"
}
{
"_id": "q00014",
"title": "",
"text": "ADBE KPI\n\n"
}
{
"_id": "q00015",
"title": "",
"text": "How are Coupang`s KPIs?\"\n\nCoupang`s"
}
{
"_id": "q00016",
"title": "",
"text": "Coupang segment margin\n\n"
}
{
"_id": "q00017",
"title": "",
"text": "CPNG capital expenditure\n\nexpenditure"
}
{
"_id": "q00018",
"title": "",
"text": "CPNG any recent M&A activities\n\nM&A activities"
}
{
"_id": "q00019",
"title": "",
"text": "When did Coupang`s Farfetch consolidation start\n\nCoupang"
}
{
"_id": "q00020",
"title": "",
"text": "What is FLC, and how is its revenue recognized by Coupang\n\nFLC revenue Coupang"
}
{
"_id": "q00021",
"title": "",
"text": "When did new FLC contract begin CPNG\n\nFLC begin"
}
{
"_id": "q00022",
"title": "",
"text": "CPNG free cash flow\n\ncash"
}
{
"_id": "q00023",
"title": "",
"text": "Class of Shares CPNG\n\nShares"
}
{
"_id": "q00024",
"title": "",
"text": "any highlights from Linde`s 2023 earnings result\n\nLinde`s 2023"
}
{
"_id": "q00025",
"title": "",
"text": "Linde Segment breakdown\n\nLinde"
}
{
"_id": "q00026",
"title": "",
"text": "Linde Shareholder return\n\nLinde"
}
{
"_id": "q00027",
"title": "",
"text": "asset divestitures Linde\n\nLinde"
}
{
"_id": "q00028",
"title": "",
"text": "What is the total number of leases held by Linde\n\ntotal leases Linde"
}
{
"_id": "q00029",
"title": "",
"text": "Linde Outstanding share\n\nLinde"
}
{
"_id": "q00030",
"title": "",
"text": "the top 3 risks faced by Linde\n\nrisks Linde"
}
{
"_id": "q00031",
"title": "",
"text": "Linde`s geographical coverage\n\nLinde`s"
}
{
"_id": "q00032",
"title": "",
"text": "Which items were taken into account to derive adjusted EBITDA compared to EBITDA for Linde\n\nitems derive adjusted EBITDA Linde"
}
{
"_id": "q00033",
"title": "",
"text": "one-off expenses of Linde occurred in 2023\n\nexpenses Linde"
}
{
"_id": "q00034",
"title": "",
"text": "Why did Linde`s working capital increase\n\nLinde`s capital"
}
{
"_id": "q00035",
"title": "",
"text": "How much is available for Oracle stock repurchases\n\nOracle stock repurchases"
}
{
"_id": "q00036",
"title": "",
"text": "Oracle`s equity investments\n\nequity"
}
{
"_id": "q00037",
"title": "",
"text": "ORCL M&A\n\n"
}
{
"_id": "q00038",
"title": "",
"text": "Oracle`s contractual obligations\n\nobligations"
}
{
"_id": "q00039",
"title": "",
"text": "Why did Oracle`s net cash used for investing activities change by over 80%\n\nOracle`s net cash 80%"
}
{
"_id": "q00040",
"title": "",
"text": "Which cost item represents the highest percentage of Oracle`s sales\n\ncost item Oracle sales"
}
{
"_id": "q00041",
"title": "",
"text": "ORCL segment breakdown\n\nORCL"
}
{
"_id": "q00042",
"title": "",
"text": "Updates on Oracle`s headcount\n\nOracle"
}
{
"_id": "q00043",
"title": "",
"text": "Oracle`s dividend payout\n\ndividend"
}
{
"_id": "q00044",
"title": "",
"text": "Any meaningful ramp to address AI capacity/datacenter constraints ORCL\n\nramp AI capacity constraints"
}
{
"_id": "q00045",
"title": "",
"text": "Nvidia`s end market\n\nend"
}
{
"_id": "q00046",
"title": "",
"text": "Nvidia 5yr cumulative total return\n\n5yr"
}
{
"_id": "q00047",
"title": "",
"text": "Percentage of total revenue accounted for by Nvidia`s largest customer\n\nPercentage revenue Nvidia customer"
}
{
"_id": "q00048",
"title": "",
"text": "Any other concentration risks observed from Nvidia`s financials?\n\nrisks Nvidia?"
}
{
"_id": "q00049",
"title": "",
"text": "What drove the improvement in the gross profit margin NVDA\n\ndrove improvement margin"
}
{
"_id": "q00050",
"title": "",
"text": "P&G business model\n\n&G"
}
{
"_id": "q00051",
"title": "",
"text": "What percentage of total revenue does the P&G`s largest customer account for\n\npercentage revenue P&G customer"
}
{
"_id": "q00052",
"title": "",
"text": "Current number of employees at P&G and % yoy growth\n\nemployees P&G growth"
}
{
"_id": "q00053",
"title": "",
"text": "How did war between Russia and Ukraine impact P&G business\n\nwar Ukraine P&G"
}
{
"_id": "q00054",
"title": "",
"text": "P&G cybersecurity related risks\n\nP&G"
}
{
"_id": "q00055",
"title": "",
"text": "Who among the management had the longest tenure? P&G\n\nlongest? P&G"
}
{
"_id": "q00056",
"title": "",
"text": "P&G any updates on share repurchase plan?\n\nP&G plan?"
}
{
"_id": "q00057",
"title": "",
"text": "How many consecutive years has P&G increased its dividend?\n\nP&G dividend?"
}
{
"_id": "q00058",
"title": "",
"text": "By what percentage did the P&G`s dividend increase this year\n\nP&G dividend increase"
}
{
"_id": "q00059",
"title": "",
"text": "P&G`s ticker\n\n&G"
}
{
"_id": "q00060",
"title": "",
"text": "P&G org structure overview\n\nP&G"
}
{
"_id": "q00061",
"title": "",
"text": "How many product categories does P&G have\n\ncategories P&G"
}
{
"_id": "q00062",
"title": "",
"text": "What are the major brands for Fem care in P&G\n\nmajor brands P&G"
}
{
"_id": "q00063",
"title": "",
"text": "Strategic direction of P&G\n\nP&G"
}
{
"_id": "q00064",
"title": "",
"text": "Why did net earnings decrease despite increase of sales/OP P&G\n\nnet earnings sales P&G"
}
{
"_id": "q00065",
"title": "",
"text": "P&G What does the ratio of adjusted free cash flow to net earnings imply?\n\n&G ratio cash net earnings?"
}
{
"_id": "q00066",
"title": "",
"text": "Which factor contributed more significantly to the gross margin improvement of P&G: price increases or quantity increases?\n\nfactor contributed margin P&G price quantity?"
}
{
"_id": "q00067",
"title": "",
"text": "Capex during the fiscal year ended in Jun 2023 and where it was spent P&G\n\nCapex year 2023 spent P&G"
}
{
"_id": "q00068",
"title": "",
"text": "Did P&G acquire any businesses in 2023?\n\nP&G 2023?"
}
{
"_id": "q00069",
"title": "",
"text": "Did P&G raise any debts during the fiscal year ended in Jun 2023\n\nP&G debts year 2023"
}
{
"_id": "q00070",
"title": "",
"text": "What is the total amount of cash and cash equivalents Procter & Gamble (P&G) has as of the fiscal year ended in Jun 2023\n\ntotal cash equivalents Procter Gamble fiscal year 2023"
}
{
"_id": "q00071",
"title": "",
"text": "P&G`s credit rating?\n\n&G?"
}
{
"_id": "q00072",
"title": "",
"text": "What was the yoy organic growth % of Beauty segment of P&G\n\nyoy growth % P&G"
}
{
"_id": "q00073",
"title": "",
"text": "What is a measure for P&G to determine dividends, share repurchases, acquisitions and other discretionary investments\n\nmeasure P&G dividends acquisitions investments"
}
{
"_id": "q00074",
"title": "",
"text": "How many fleet does DAL own\n\nfleet DAL"
}
{
"_id": "q00075",
"title": "",
"text": "Ratio of owned: finance lease: operating lease based on operating aircraft fleet DAL\n\nowned finance operating aircraft fleet"
}
{
"_id": "q00076",
"title": "",
"text": "What percentage of Endeavor`s shares does Delta own?\n\nEndeavor Delta?"
}
{
"_id": "q00077",
"title": "",
"text": "When is the scheduled delivery date for the DAL A350?\n\nscheduled delivery A350?"
}
{
"_id": "q00078",
"title": "",
"text": "Which region showed highest % growth of delta in passenger revenue? And what was the main driver?\n\nregion % passenger revenue? main driver?"
}
{
"_id": "q00079",
"title": "",
"text": "Any updates on DAL and AMEX partnership\n\nDAL AMEX"
}
{
"_id": "q00080",
"title": "",
"text": "Which operating expense represents the highest percentage of DAL`s sales\n\noperating expense DAL sales"
}
{
"_id": "q00081",
"title": "",
"text": "How did the fuel price impact the 2023 financials of delta air lines\n\nfuel 2023 delta air lines"
}
{
"_id": "q00082",
"title": "",
"text": "DAL Capex during the fiscal year ended in Jun 2023 and where it was spent\n\nCapex fiscal year Jun 2023"
}
{
"_id": "q00083",
"title": "",
"text": "DAL 2024 Capex guidance\n\n2024"
}
{
"_id": "q00084",
"title": "",
"text": "What is the estimated cost for the New York-LaGuardia Redevelopment DAL\n\nNew York-LaGuardia Redevelopment"
}
{
"_id": "q00085",
"title": "",
"text": "When did DAL`s quarterly dividend start all over again?\n\nDAL quarterly dividend?"
}
{
"_id": "q00086",
"title": "",
"text": "How much was the delta¡¯s aggregate current and noncurrent loyalty program deferred revenue balance as of FY 2023\n\nloyalty program deferred revenue balance FY 2023"
}
{
"_id": "q00087",
"title": "",
"text": "What is the useful life for aircraft DAL\n\nlife aircraft"
}
{
"_id": "q00088",
"title": "",
"text": "Where does DAL recognize advertising costs\n\nDAL advertising"
}
{
"_id": "q00089",
"title": "",
"text": "How many vehicles did TSLA deliver in 2023?\n\nTSLA 2023?"
}
{
"_id": "q00090",
"title": "",
"text": "Were there any one-off items reported in tesla 2023?\n\nitems tesla 2023?"
}
{
"_id": "q00091",
"title": "",
"text": "Capex in 2023 tsla\n\n2023"
}
{
"_id": "q00092",
"title": "",
"text": "TSLA Capex guidance in 2024\n\n2024"
}
{
"_id": "q00093",
"title": "",
"text": "Where does TSLA produce its Cybertruck\n\nTSLA"
}
{
"_id": "q00094",
"title": "",
"text": "TSLA Inventory breakdown as of 2023\n\nInventory 2023"
}
{
"_id": "q00095",
"title": "",
"text": "Any recent litigation cases tesla\n\nlitigation cases"
}
{
"_id": "q00096",
"title": "",
"text": "TSLA three-year historical depreciation expense\n\n-year depreciation"
}
{
"_id": "q00097",
"title": "",
"text": "How many outstanding shares TSLA\n\noutstanding shares"
}
{
"_id": "q00098",
"title": "",
"text": "What is TSLA`s mission?\n\nTSLA?"
}
{
"_id": "q00099",
"title": "",
"text": "Netflix Paid membership updates\n\nPaid"
}
{
"_id": "q00100",
"title": "",
"text": "Does Netflix still offer DVD-by-mail service\n\nNetflix DVD-by-mail"
}
{
"_id": "q00101",
"title": "",
"text": "Netflix Business model\n\nBusiness"
}
{
"_id": "q00102",
"title": "",
"text": "Netflix Any updates on total amount of content obligations\n\nupdates content obligations"
}
{
"_id": "q00103",
"title": "",
"text": "Content obligations in next 12 months Netflix\n\nobligations months"
}
{
"_id": "q00104",
"title": "",
"text": "NFLX 3 year historical advertising cost trend\n\nNFLX 3 year"
}
{
"_id": "q00105",
"title": "",
"text": "3 year streaming revenue trend of netflix\n\nstreaming netflix"
}
{
"_id": "q00106",
"title": "",
"text": "What drove OP margin improvement NFLX\n\ndrove OP"
}
{
"_id": "q00107",
"title": "",
"text": "Which region showed the highest increase in paid net membership additions of netflix\n\nregion increase additions netflix"
}
{
"_id": "q00108",
"title": "",
"text": "NFLX Any updates on share repurchase\n\nNFLX updates"
}
{
"_id": "q00109",
"title": "",
"text": "Customer group that Home depot serve\n\nHome depot"
}
{
"_id": "q00110",
"title": "",
"text": "Home Depot # of employee\n\nDepot"
}
{
"_id": "q00111",
"title": "",
"text": "Home Depot retail strategy\n\nDepot"
}
{
"_id": "q00112",
"title": "",
"text": "HD How many acquisitions happened in 2023?\n\nacquisitions 2023?"
}
{
"_id": "q00113",
"title": "",
"text": "Total amount of shareholder return in 2023 Home Depot\n\nshareholder 2023 Depot"
}
{
"_id": "q00114",
"title": "",
"text": "Any reasons for Capex growth of HD\n\nCapex growth"
}
{
"_id": "q00115",
"title": "",
"text": "Home Depot why did net sales decrease in 2023?\n\nDepot net sales?"
}
{
"_id": "q00116",
"title": "",
"text": "Updates on inventory level Home Depot\n\ninventory Depot"
}
{
"_id": "q00117",
"title": "",
"text": "Net advertising expense over the past three years on an annual basis Home Depot\n\nadvertising three years Home Depot"
}
{
"_id": "q00118",
"title": "",
"text": "HD Net PP&E as of 2023\n\nPP&E 2023"
}
{
"_id": "q00119",
"title": "",
"text": "Company fiscal year appl\n\nfiscal"
}
{
"_id": "q00120",
"title": "",
"text": "When will apple Vision Pro launch?\n\nVision launch?"
}
{
"_id": "q00121",
"title": "",
"text": "Depreciation expense on PP&E over the past three years on an annual basis apple\n\nDepreciation expense PP&E three years"
}
{
"_id": "q00122",
"title": "",
"text": "Update on share repurchase of apple\n\nrepurchase apple"
}
{
"_id": "q00123",
"title": "",
"text": "Which region contributes the most to the revenue of APPL?\n\nregion revenue APPL?"
}
{
"_id": "q00124",
"title": "",
"text": "APPL new product launch in 4Q23\n\nAPPL"
}
{
"_id": "q00125",
"title": "",
"text": "SG&A % of rev in 2023 appl\n\n&A % 2023"
}
{
"_id": "q00126",
"title": "",
"text": "Appl additional leases occurred in later part of 2023\n\nleases later 2023"
}
{
"_id": "q00127",
"title": "",
"text": "When was the most recent employee stock plan that apple announced?\n\nrecent employee stock plan?"
}
{
"_id": "q00128",
"title": "",
"text": "Appl depreciation expense over the past three years on an annual basis\n\ndepreciation expense three years"
}
{
"_id": "q00129",
"title": "",
"text": "Amazon AWS yoy growth in constant cuurency\n\nAWS growth constant"
}
{
"_id": "q00130",
"title": "",
"text": "Amazon 1Q24 guidance\n\n1Q24"
}
{
"_id": "q00131",
"title": "",
"text": "AMZN what are the components of fulfillment costs?\n\nfulfillment costs?"
}
{
"_id": "q00132",
"title": "",
"text": "2023 inventory valuation allowance of AMZN\n\n2023 AMZN"
}
{
"_id": "q00133",
"title": "",
"text": "Total PP&E of AMZN in 2023\n\nAMZN 2023"
}
{
"_id": "q00134",
"title": "",
"text": "Any updates on Amazon Prime Video\n\nAmazon Prime"
}
{
"_id": "q00135",
"title": "",
"text": "Were there any share repurchases in 2023 Amazon?\n\nrepurchases 2023?"
}
{
"_id": "q00136",
"title": "",
"text": "AMZN SBC expense occurred in 2023\n\nAMZN SBC"
}
{
"_id": "q00137",
"title": "",
"text": "Amazon revenue sources\n\nrevenue"
}
{
"_id": "q00138",
"title": "",
"text": "Any comments on tech investment of amazon\n\ncomments amazon"
}
{
"_id": "q00139",
"title": "",
"text": "Amazon Par value\n\nvalue"
}
{
"_id": "q00140",
"title": "",
"text": "Potential/current competitors of amazon?\n\namazon?"
}
{
"_id": "q00141",
"title": "",
"text": "When was Amazon established?\n\nAmazon?"
}
{
"_id": "q00142",
"title": "",
"text": "What is the total square footage of Amazon`s international fulfillment centers, data centers, and other facilities?\n\nsquare footage Amazon centers data facilities?"
}
{
"_id": "q00143",
"title": "",
"text": "Revenue recognition methodology of amazon from 3rd party seller\n\namazon 3rd seller"
}
{
"_id": "q00144",
"title": "",
"text": "When did 20:1 stock split happen in AMZN\n\n20:1 split"
}
{
"_id": "q00145",
"title": "",
"text": "Describe how AWS generate revenue\n\nAWS"
}
{
"_id": "q00146",
"title": "",
"text": "Amazon Acquisitions in 2023?\n\n2023?"
}
{
"_id": "q00147",
"title": "",
"text": "When was the current share repurchase program announced in AMZN?\n\nshare repurchase program?"
}
{
"_id": "q00148",
"title": "",
"text": "Amazon inventory management strategy\n\ninventory"
}
{
"_id": "q00150",
"title": "",
"text": "Why does Meta use family metrics?\n\nfamily metrics?"
}
{
"_id": "q00151",
"title": "",
"text": "META Family DAP and MAP calculation methodology?\n\nMETA Family MAP?"
}
{
"_id": "q00152",
"title": "",
"text": "Any upddates on Reality Labs Meta\n\nReality Labs"
}
{
"_id": "q00153",
"title": "",
"text": "Key investment areas in 2024 Meta\n\ninvestment 2024"
}
{
"_id": "q00154",
"title": "",
"text": "Mgmt view on Meta competitive landscape\n\nview landscape"
}
{
"_id": "q00155",
"title": "",
"text": "Meta % yoy growth of FoA revenue\n\n% FoA"
}
{
"_id": "q00156",
"title": "",
"text": "Meta what is management`s outlook on the future drivers of ad revenue?\n\nmanagement future drivers revenue?"
}
{
"_id": "q00157",
"title": "",
"text": "Has the sales volume of Meta Quest increased or decreased?\n\nMeta Quest increased?"
}
{
"_id": "q00158",
"title": "",
"text": "Any divestures in 2023 Meta\n\n2023"
}
{
"_id": "q00159",
"title": "",
"text": "Total number of employees of JnJ\n\nnumber JnJ"
}
{
"_id": "q00160",
"title": "",
"text": "Gross amounts of patents and trademarks as of 2023 JnJ\n\npatents trademarks 2023"
}
{
"_id": "q00161",
"title": "",
"text": "What has been DPS over the past 3 years JnJ\n\nDPS past 3 years"
}
{
"_id": "q00162",
"title": "",
"text": "JnJ Diluted Adj. avg. shares outstanding as of 2023 (include the unit as well)\n\nDiluted. shares 2023 unit"
}
{
"_id": "q00163",
"title": "",
"text": "Best selling drug in 2023 of Johnson & Johnson\n\n2023 Johnson Johnson"
}
{
"_id": "q00164",
"title": "",
"text": "Johnson & Johnson Investment in 2023\n\nJohnson 2023"
}
{
"_id": "q00165",
"title": "",
"text": "JnJ Mgmt overview\n\nJnJ"
}
{
"_id": "q00166",
"title": "",
"text": "How much $ invested in JnJ R&D as of 2023\n\nJnJ R&D 2023"
}
{
"_id": "q00167",
"title": "",
"text": "Any advancements for its Innovative Medicine pipeline JnJ\n\nInnovative Medicine pipeline"
}
{
"_id": "q00168",
"title": "",
"text": "JnJ R&D expense % of revenue in 2023\n\nR&D % revenue"
}
{
"_id": "q00169",
"title": "",
"text": "ROE and ROTCE as of 2023 JP Morgan\n\n2023 JP Morgan"
}
{
"_id": "q00170",
"title": "",
"text": "Credit provided for consumers as of 2023 JP Morgan\n\nCredit 2023 Morgan"
}
{
"_id": "q00171",
"title": "",
"text": "JP Morgan markets revenue consist of what\n\nMorgan markets"
}
{
"_id": "q00172",
"title": "",
"text": "What are the components of principal transactions of JPM\n\ncomponents transactions JPM"
}
{
"_id": "q00173",
"title": "",
"text": "JPM Acquisition in 2023\n\nJPM"
}
{
"_id": "q00174",
"title": "",
"text": "Competitors of JPM\n\nJPM"
}
{
"_id": "q00175",
"title": "",
"text": "Employee net addition in 2023 JPM\n\nEmployee 2023"
}
{
"_id": "q00176",
"title": "",
"text": "Why did LT debt increase in 2023 JP Morgan\n\nLT debt 2023"
}
{
"_id": "q00177",
"title": "",
"text": "JPM What drove strong performance of equity underwriting\n\nJPM equity"
}
{
"_id": "q00178",
"title": "",
"text": "JP Morgan Segment breakdown\n\nMorgan"
}
{
"_id": "q00180",
"title": "",
"text": "Visa Company overview\n\nCompany"
}
{
"_id": "q00181",
"title": "",
"text": "How does VISA earn money\n\nVISA"
}
{
"_id": "q00182",
"title": "",
"text": "VISA Acquisition in 2023\n\n2023"
}
{
"_id": "q00183",
"title": "",
"text": "Who are VISA`s electronic payment competitors\n\nVISA`s competitors"
}
{
"_id": "q00184",
"title": "",
"text": "How geopolitical factors can impact the VISA business\n\ngeopolitical VISA"
}
{
"_id": "q00185",
"title": "",
"text": "Why did labor cost increase 17% yoy Visa\n\nlabor cost 17%"
}
{
"_id": "q00186",
"title": "",
"text": "What has been the total amount of processed transactions by Visa over the past 3 years, measured in billions?\n\ntotal processed Visa past 3 years billions?"
}
{
"_id": "q00187",
"title": "",
"text": "Visa 2023 earning\n\n2023"
}
{
"_id": "q00188",
"title": "",
"text": "VISA Fintech related commentary\n\nFintech"
}
{
"_id": "q00189",
"title": "",
"text": "UnitedHealth Group Segment breakdown\n\nUnitedHealth"
}
{
"_id": "q00190",
"title": "",
"text": "UnitedHealth Group What drove revenue increase in 2023\n\nUnitedHealth Group 2023"
}
{
"_id": "q00191",
"title": "",
"text": "Company level OP margin in 2023 unitedhealth\n\n2023 unitedhealth"
}
{
"_id": "q00192",
"title": "",
"text": "UNH ROE as of 2023\n\n2023"
}
{
"_id": "q00193",
"title": "",
"text": "UNH Impact of cyber attack\n\nUNH"
}
{
"_id": "q00194",
"title": "",
"text": "Medical care ratio of UnitedHealth Group as of 2023\n\nUnitedHealth Group 2023"
}
{
"_id": "q00195",
"title": "",
"text": "Any updates on Brazil biz disposition of UnitedHealth Group\n\nupdates Brazil UnitedHealth"
}
{
"_id": "q00196",
"title": "",
"text": "What is management`s outlook of UnitedHealth Group on medical cost trends for 2024?\n\nmanagement UnitedHealth medical cost 2024?"
}
{
"_id": "q00197",
"title": "",
"text": "What factors contributed to the significant increase in revenue of UNH?\n\nfactors revenue UNH?"
}
{
"_id": "q00198",
"title": "",
"text": "Dividend paid in 2023 UnitedHealth\n\nUnitedHealth"
}
{
"_id": "q00199",
"title": "",
"text": "What is Alphabet`s stance on AI?\n\nAlphabet stance?"
}
{
"_id": "q00200",
"title": "",
"text": "Primary revenue source of Google Services\n\nGoogle Services"
}
{
"_id": "q00201",
"title": "",
"text": "What potential threats to Google Search has the management identified?\n\npotential threats Google?"
}
{
"_id": "q00202",
"title": "",
"text": "Why did Alphabet Opex increase in 2023 vs. previous year\n\nAlphabet Opex 2023."
}
{
"_id": "q00203",
"title": "",
"text": "Alphabet When was the offer letter issued to Ruth Porat?\n\nAlphabet letter Ruth?"
}
{
"_id": "q00204",
"title": "",
"text": "Capex guidance Alphabet\n\nguidance"
}
{
"_id": "q00205",
"title": "",
"text": "How is subscription revenue (e.g., YouTube premium) recognized\n\nsubscription revenue. YouTube recognized"
}
{
"_id": "q00206",
"title": "",
"text": "Alphabet What has been the trend in Advertising and Promotional Expenses over the past three years?\n\ntrend Advertising Expenses three years?"
}
{
"_id": "q00207",
"title": "",
"text": "Google Cloud RPO as of 2023 (approximate # is fine)\n\nGoogle Cloud RPO 2023"
}
{
"_id": "q00208",
"title": "",
"text": "How might changes to advertising policies and data privacy practices impact Alphabet`s ads biz\n\nadvertising policies impact Alphabet ads"
}
{
"_id": "q00209",
"title": "",
"text": "BNSF railroad freight volume\n\nBNSF"
}
{
"_id": "q00210",
"title": "",
"text": "Who runs berkshire\n\n"
}
{
"_id": "q00211",
"title": "",
"text": "What is management`s perspective on the insurance business Berkshire Hathaway\n\nmanagement insurance Hathaway"
}
{
"_id": "q00212",
"title": "",
"text": "How is Berkshire Hathaway`s business segmented into its major divisions or operating units\n\nBerkshire Hathaway business divisions"
}
{
"_id": "q00213",
"title": "",
"text": "When will Berkshire repurchase common stock?\n\nBerkshire stock?"
}
{
"_id": "q00214",
"title": "",
"text": "How many distinct insurance underwriting groups are there within Berkshire\n\ninsurance groups Berkshire"
}
{
"_id": "q00215",
"title": "",
"text": "What is the ticker symbol for Berkshire Hathaway`s Class B shares?\n\nticker Berkshire Hathaway?"
}
{
"_id": "q00216",
"title": "",
"text": "What is the largest operating segment of the Berkshire Hathaway in terms of % of total revenue, as of 2023\n\nlargest segment Berkshire Hathaway % revenue"
}
{
"_id": "q00217",
"title": "",
"text": "Source of invested assets of insurance business BRK.A\n\nSource invested insurance."
}
{
"_id": "q00218",
"title": "",
"text": "Float as of 2023 BRK\n\nFloat 2023"
}
|