es
Feedback
Data Analytics

Data Analytics

Ir al canal en Telegram

Dive into the world of Data Analytics – uncover insights, explore trends, and master data-driven decision making. Admin: @HusseinSheikho || @Hussein_Sheikho

Mostrar más

📈 Análisis del canal de Telegram Data Analytics

El canal Data Analytics (@dataanalyticsx) en el segmento lingüístico de Inglés es un actor destacado. Actualmente la comunidad reúne a 28 942 suscriptores, ocupando la posición 4 736 en la categoría Tecnologías y Aplicaciones y el puesto 22 805 en la región Rusia.

📊 Métricas de audiencia y dinámica

Desde su creación el невідомо, el proyecto ha mostrado un crecimiento acelerado, reuniendo a 28 942 suscriptores.

Según los últimos datos del 11 junio, 2026, el canal mantiene una actividad estable. En los últimos 30 días la variación de miembros fue de 493, y en las últimas 24 horas de 20, conservando un alto alcance.

  • Estado de verificación: No verificado
  • Tasa de interacción (ER): El promedio de interacción de la audiencia es 3.86%. Durante las primeras 24 horas tras publicar, el contenido suele obtener 0.99% de reacciones respecto al total de suscriptores.
  • Alcance de las publicaciones: Cada publicación recibe en promedio 1 118 visualizaciones. En el primer día suele acumular 287 visualizaciones.
  • Reacciones e interacción: La audiencia responde de forma activa: el promedio de reacciones por publicación es 2.
  • Intereses temáticos: El contenido se centra en temas clave como sellerflash, buybox, buyer, chaos, effortless.

📝 Descripción y política de contenido

El autor describe el recurso como un espacio para expresar opiniones subjetivas:
Dive into the world of Data Analytics – uncover insights, explore trends, and master data-driven decision making. Admin: @HusseinSheikho || @Hussein_Sheikho

Gracias a la alta frecuencia de actualizaciones (últimos datos recibidos el 12 junio, 2026), el canal mantiene la vigencia y un amplio alcance. La analítica demuestra que la audiencia interactúa activamente con el contenido, lo que lo convierte en un punto de referencia dentro de la categoría Tecnologías y Aplicaciones.

28 942
Suscriptores
+2024 horas
+757 días
+49330 días
Archivo de publicaciones
🎙️ VOICE OF KNUST 🎙️ A campus alive with ambition — where every breakthrough, every story, pulses with hope and the relentl
🎙️ VOICE OF KNUST 🎙️ A campus alive with ambition — where every breakthrough, every story, pulses with hope and the relentless spirit of youth. Imagine hearing firsthand of students conquering challenges, securing dreams, and pioneers shaping the future with AI and innovation. 🔥 Stay updated, inspired, connected: success stories, urgent notices, game-changing news. Your KNUST journey deserves this voice. 🎓✨ Join the conversation now: VOICE OF KNUST 🚀 #ad InsideAds

Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order m
Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order monitoring and AI-powered BuyBox hunting, SellerFlash makes selling effortless in Amazon. 💫Say goodbye to manual chaos. With SellerFlash, you will manage listings, inventory, buyer messages and feedback campaigns all from one smart cloud platform designed for Amazon sellers. 👉🏽https://www.sellerflash.com/en/ Sponsored By WaybienAds

Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order m
Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order monitoring and AI-powered BuyBox hunting, SellerFlash makes selling effortless in Amazon. 💫Say goodbye to manual chaos. With SellerFlash, you will manage listings, inventory, buyer messages and feedback campaigns all from one smart cloud platform designed for Amazon sellers. 👉🏽https://www.sellerflash.com/en/ Sponsored By WaybienAds

Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order m
Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order monitoring and AI-powered BuyBox hunting, SellerFlash makes selling effortless in Amazon. 💫Say goodbye to manual chaos. With SellerFlash, you will manage listings, inventory, buyer messages and feedback campaigns all from one smart cloud platform designed for Amazon sellers. 👉🏽https://www.sellerflash.com/en/ Sponsored By WaybienAds

Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order m
Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order monitoring and AI-powered BuyBox hunting, SellerFlash makes selling effortless in Amazon. 💫Say goodbye to manual chaos. With SellerFlash, you will manage listings, inventory, buyer messages and feedback campaigns all from one smart cloud platform designed for Amazon sellers. 👉🏽https://www.sellerflash.com/en/ Sponsored By WaybienAds

1. What is the output of this code?
import pandas as pd
idx = pd.Index(['a', 'b', 'c'])
print(idx.is_unique)
A. False B. True C. Raises AttributeError D. None Correct answer: B. 2. What does this code return?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
print(df.set_index('a').index.name)
A. None B. 'index' C. 'a' D. Raises KeyError Correct answer: C. 3. What is the result?
import pandas as pd
s = pd.Series([1, 2, 3])
print(s.add(1).tolist())
A. [1, 2, 3] B. [2, 3, 4] C. [1, 3, 5] D. Error Correct answer: B. 4. What does this code output?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
print(df.nlargest(2, 'a')['a'].tolist())
A. [1, 2] B. [2, 3] C. [3, 2] D. [3, 1] Correct answer: C. 5. What is printed?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
print(df.nsmallest(1, 'a').iloc[0, 0])
A. 1 B. 2 C. 3 D. Error Correct answer: A. 6. What does this code return?
import pandas as pd
s = pd.Series([1, 2, 3])
print(s.diff().isna().sum())
A. 0 B. 1 C. 2 D. 3 Correct answer: B. 7. What is the output?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
print(df.cumsum()['a'].iloc[-1])
A. 3 B. 5 C. 6 D. Error Correct answer: C. 8. What does this code produce?
import pandas as pd
df = pd.DataFrame({'a': [1, 2], 'b': [3, 4]})
print(df.pipe(lambda x: x.shape))
A. (1, 4) B. (2, 2) C. (4, 1) D. Error Correct answer: B. 9. What is returned?
import pandas as pd
s = pd.Series([10, 20, 30])
print(s.take([2, 0]).tolist())
A. [10, 20] B. [30, 10] C. [20, 30] D. Error Correct answer: B. 10. What does this output?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
print(df.any().iloc[0])
A. False B. True C. None D. Error Correct answer: B. 11. What is the result?
import pandas as pd
df = pd.DataFrame({'a': [0, 0, 1]})
print(df.all().iloc[0])
A. True B. False C. None D. Error Correct answer: B. 12. What does this code return?
import pandas as pd
s = pd.Series(['a', 'b', 'c'])
print(s.repeat(2).shape)
A. (3,) B. (6,) C. (2, 3) D. Error Correct answer: B. 13. What is printed?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
print(df.melt().shape)
A. (1, 3) B. (3, 2) C. (3, 1) D. (1, 2) Correct answer: B. 14. What does this code output?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
print(df.stack().shape)
A. (3,) B. (3, 1) C. (1, 3) D. Error Correct answer: A. 15. What is the result?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
print(df.unstack().isna().sum().sum())
A. 0 B. 1 C. 2 D. Error Correct answer: A. 16. What does this code return?
import pandas as pd
s = pd.Series([1, 2, 3])
print(s.to_numpy().ndim)
A. 0 B. 1 C. 2 D. Error Correct answer: B. 17. What is printed?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
print(df.axes[0].equals(df.index))
A. True B. False C. None D. Error Correct answer: A. 18. What does this code output?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
print(df.copy(deep=False) is df)
A. True B. False C. None D. Error Correct answer: B. 19. What is the result?
import pandas as pd
s = pd.Series([1, 2, 3])
print(s.equals(pd.Series([1, 2, 3])))
A. True B. False C. None D. Error Correct answer: A. 20. What does this code output?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
print(df.info() is None)
A. True B. False C. None D. Error Correct answer: A.

Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order m
Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order monitoring and AI-powered BuyBox hunting, SellerFlash makes selling effortless in Amazon. 💫Say goodbye to manual chaos. With SellerFlash, you will manage listings, inventory, buyer messages and feedback campaigns all from one smart cloud platform designed for Amazon sellers. 👉🏽https://www.sellerflash.com/en/ Sponsored By WaybienAds

Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order m
Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order monitoring and AI-powered BuyBox hunting, SellerFlash makes selling effortless in Amazon. 💫Say goodbye to manual chaos. With SellerFlash, you will manage listings, inventory, buyer messages and feedback campaigns all from one smart cloud platform designed for Amazon sellers. 👉🏽https://www.sellerflash.com/en/ Sponsored By WaybienAds

Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order m
Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order monitoring and AI-powered BuyBox hunting, SellerFlash makes selling effortless in Amazon. 💫Say goodbye to manual chaos. With SellerFlash, you will manage listings, inventory, buyer messages and feedback campaigns all from one smart cloud platform designed for Amazon sellers. 👉🏽https://www.sellerflash.com/en/ Sponsored By WaybienAds

Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order m
Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order monitoring and AI-powered BuyBox hunting, SellerFlash makes selling effortless in Amazon. 💫Say goodbye to manual chaos. With SellerFlash, you will manage listings, inventory, buyer messages and feedback campaigns all from one smart cloud platform designed for Amazon sellers. 👉🏽https://www.sellerflash.com/en/ Sponsored By WaybienAds

This channels is for Programmers, Coders, Software Engineers. 0️⃣ Python 1️⃣ Data Science 2️⃣ Machine Learning 3️⃣ Data Visua
This channels is for Programmers, Coders, Software Engineers. 0️⃣ Python 1️⃣ Data Science 2️⃣ Machine Learning 3️⃣ Data Visualization 4️⃣ Artificial Intelligence 5️⃣ Data Analysis 6️⃣ Statistics 7️⃣ Deep Learning 8️⃣ programming Languages ✅ https://t.me/addlist/8_rRW2scgfRhOTc0https://t.me/Codeprogrammer

Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order m
Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order monitoring and AI-powered BuyBox hunting, SellerFlash makes selling effortless in Amazon. 💫Say goodbye to manual chaos. With SellerFlash, you will manage listings, inventory, buyer messages and feedback campaigns all from one smart cloud platform designed for Amazon sellers. 👉🏽https://www.sellerflash.com/en/ Sponsored By WaybienAds

🚀 Master Data Science & Programming! Unlock your potential with this curated list of Telegram channels. Whether you need boo
🚀 Master Data Science & Programming! Unlock your potential with this curated list of Telegram channels. Whether you need books, datasets, interview prep, or project ideas, we have the perfect resource for you. Join the community today! 🔰 Machine Learning with Python Learn Machine Learning with hands-on Python tutorials, real-world code examples, and clear explanations for researchers and developers. https://t.me/CodeProgrammer 🔖 Machine Learning Machine learning insights, practical tutorials, and clear explanations for beginners and aspiring data scientists. Follow the channel for models, algorithms, coding guides, and real-world ML applications. https://t.me/DataScienceM 🧠 Code With Python This channel delivers clear, practical content for developers, covering Python, Django, Data Structures, Algorithms, and DSA – perfect for learning, coding, and mastering key programming skills. https://t.me/DataScience4 🎯 PyData Careers | Quiz Python Data Science jobs, interview tips, and career insights for aspiring professionals. https://t.me/DataScienceQ 💾 Kaggle Data Hub Your go-to hub for Kaggle datasets – explore, analyze, and leverage data for Machine Learning and Data Science projects. https://t.me/datasets1 🧑‍🎓 Udemy Coupons | Courses The first channel in Telegram that offers free Udemy coupons https://t.me/DataScienceC 😀 ML Research Hub Advancing research in Machine Learning – practical insights, tools, and techniques for researchers. https://t.me/DataScienceT 💬 Data Science Chat An active community group for discussing data challenges and networking with peers. https://t.me/DataScience9 🐍 Python Arab| بايثون عربي The largest Arabic-speaking group for Python developers to share knowledge and help. https://t.me/PythonArab 🖊 Data Science Jupyter Notebooks Explore the world of Data Science through Jupyter Notebooks—insights, tutorials, and tools to boost your data journey. Code, analyze, and visualize smarter with every post. https://t.me/DataScienceN 📺 Free Online Courses | Videos Free online courses covering data science, machine learning, analytics, programming, and essential skills for learners. https://t.me/DataScienceV 📈 Data Analytics Dive into the world of Data Analytics – uncover insights, explore trends, and master data-driven decision making. https://t.me/DataAnalyticsX 🎧 Learn Python Hub Master Python with step-by-step courses – from basics to advanced projects and practical applications. https://t.me/Python53 ⭐️ Research Papers Professional Academic Writing & Simulation Services https://t.me/DataScienceY ━━━━━━━━━━━━━━━━━━ Admin: @HusseinSheikho

Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order m
Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order monitoring and AI-powered BuyBox hunting, SellerFlash makes selling effortless in Amazon. 💫Say goodbye to manual chaos. With SellerFlash, you will manage listings, inventory, buyer messages and feedback campaigns all from one smart cloud platform designed for Amazon sellers. 👉🏽https://www.sellerflash.com/en/ Sponsored By WaybienAds

Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order m
Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order monitoring and AI-powered BuyBox hunting, SellerFlash makes selling effortless in Amazon. 💫Say goodbye to manual chaos. With SellerFlash, you will manage listings, inventory, buyer messages and feedback campaigns all from one smart cloud platform designed for Amazon sellers. 👉🏽https://www.sellerflash.com/en/ Sponsored By WaybienAds

Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order m
Take Control of Selling in Amazon! 💫Too many tools, too little time? With dynamic pricing, real-time stock tracking, order monitoring and AI-powered BuyBox hunting, SellerFlash makes selling effortless in Amazon. 💫Say goodbye to manual chaos. With SellerFlash, you will manage listings, inventory, buyer messages and feedback campaigns all from one smart cloud platform designed for Amazon sellers. 👉🏽https://www.sellerflash.com/en/ Sponsored By WaybienAds

Looking for the best deals of 2025? Imagine grabbing up to 60% OFF on top gift cards from Amazon, Airbnb, hotel chains, and m
Looking for the best deals of 2025? Imagine grabbing up to 60% OFF on top gift cards from Amazon, Airbnb, hotel chains, and more! Why pay full price when you can save big on your everyday purchases and travel? Don’t miss out on these exclusive discounts waiting for you right now — discover your savings today and enjoy 24/7 support. Ready to upgrade your shopping game? Join 2025 Deals and start saving smarter! Check it out here #ad InsideAds

I have sent you some real and important questions based on my reading of the book "Pandas Cookbook 2025".

1. What is the output of this code? import pandas as pd s = pd.Series([1, 2, 3], index=['a', 'b', 'c']) print(s.reindex(['c',
1. What is the output of this code?
import pandas as pd
s = pd.Series([1, 2, 3], index=['a', 'b', 'c'])
print(s.reindex(['c', 'a', 'd']))
A. Series with values [3, 1, NaN] B. Series with values [3, 1] C. KeyError D. Series with values [1, 3, NaN] Correct answer: A. 2. What does this code produce?
import pandas as pd
df = pd.DataFrame({'a': [1, 2], 'b': [3, 4]})
print(df.assign(c=lambda x: x['a'] + x['b'])['c'].iloc[1])
A. 3 B. 4 C. 5 D. 6 Correct answer: C. 3. What is the result?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
df.loc[df['a'] > 1, 'a'] = 0
print(df['a'].tolist())
A. [1, 2, 3] B. [1, 0, 0] C. [0, 0, 0] D. [1, 2, 0] Correct answer: B. 4. What does this output?
import pandas as pd
s = pd.Series([10, 20, 30], index=[2, 0, 1])
print(s.sort_index().iloc[0])
A. 10 B. 20 C. 30 D. IndexError Correct answer: B. 5. What is returned?
import pandas as pd
df = pd.DataFrame({'a': [1, 1, 2]})
print(df['a'].value_counts().loc[1])
A. 1 B. 2 C. 3 D. KeyError Correct answer: B. 6. What does this code output?
import pandas as pd
s = pd.Series([1, 2, 3])
print(s.map({1: 'a', 2: 'b'}).isna().sum())
A. 0 B. 1 C. 2 D. 3 Correct answer: B. 7. What is the result?
import pandas as pd
df = pd.DataFrame({'a': [1, None, 3]})
print(df['a'].astype('Int64').isna().sum())
A. 0 B. 1 C. 2 D. Raises error Correct answer: B. 8. What does this produce?
import pandas as pd
df = pd.DataFrame({'a': [1, 2], 'b': [3, 4]})
print(df.filter(regex='a').shape)
A. (1, 2) B. (2, 1) C. (2, 2) D. (1, 1) Correct answer: B. 9. What is printed?
import pandas as pd
s = pd.Series(['1', '2', '3'])
print(s.str.cat(sep='-'))
A. 1-2-3 B. ['1-2-3'] C. Series D. Error Correct answer: A. 10. What does this code return?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
print(df.sample(n=1).shape)
A. (3, 1) B. (1, 3) C. (1, 1) D. Depends on random seed Correct answer: C. 11. What is the result?
import pandas as pd
s = pd.Series([1, 2, 3, 4])
print(s.rolling(2).sum().iloc[-1])
A. 4 B. 5 C. 6 D. NaN Correct answer: B. 12. What does this output?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
print(df.eval('b = a * 2').shape)
A. (3, 1) B. (3, 2) C. (1, 3) D. Error Correct answer: B. 13. What is returned?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
print(df.query('a % 2 == 0')['a'].iloc[0])
A. 1 B. 2 C. 3 D. KeyError Correct answer: B. 14. What does this code output?
import pandas as pd
s = pd.Series([1, 2, 3])
print(s.to_frame().shape)
A. (1, 3) B. (3, 1) C. (3, 3) D. (1, 1) Correct answer: B. 15. What is the result?
import pandas as pd
df = pd.DataFrame({'a': [1, 2]})
print(df.T.shape)
A. (2, 1) B. (1, 2) C. (2, 2) D. (1, 1) Correct answer: B. 16. What does this print?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
print(df.shift(1)['a'].isna().sum())
A. 0 B. 1 C. 2 D. 3 Correct answer: B. 17. What is the output?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
print(df.duplicated().any())
A. True B. False C. None D. Error Correct answer: B. 18. What does this code return?
import pandas as pd
s = pd.Series([3, 1, 2])
print(s.rank().tolist())
A. [3, 1, 2] B. [1, 2, 3] C. [3.0, 1.0, 2.0] D. [3.0, 1.0, 2.0] sorted Correct answer: C. 19. What is printed?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
print(df.memory_usage(deep=True).iloc[1] > 0)
A. True B. False C. None D. Error Correct answer: A. 20. What does this produce?
import pandas as pd
df = pd.DataFrame({'a': [1, 2, 3]})
print(df.select_dtypes(include='int').shape)
A. (3, 0) B. (0, 1) C. (3, 1) D. (1, 3) Correct answer: C.

1. What is the result of the following code? import pandas as pd s = pd.Series([10, 20, 30], index=[1, 2, 3]) print(s[1]) A.
1. What is the result of the following code?
import pandas as pd
s = pd.Series([10, 20, 30], index=[1, 2, 3])
print(s[1])
A. 10 B. 20 C. 30 D. KeyError Correct answer: A. 2. What will this code output?
import pandas as pd
s = pd.Series([10, 20, 30])
print(s.iloc[1])
A. 10 B. 20 C. 30 D. IndexError Correct answer: B. 3. What does this print?
import pandas as pd
df = pd.DataFrame({"a": [1, 2], "b": [3, 4]})
print(df.shape)
A. (4,) B. (2, 2) C. (1, 4) D. (2,) Correct answer: B. 4. What is returned by this expression?
df["a"]
A. DataFrame B. Series C. list D. ndarray Correct answer: B. 5. What does this code output?
import pandas as pd
df = pd.DataFrame({"a": [1, 2], "b": [3, 4]})
print(df[["a"]].shape)
A. (2,) B. (1, 2) C. (2, 1) D. (4, 1) Correct answer: C. 6. What is the result?
import pandas as pd
s = pd.Series([1, 2, 3])
print(s > 1)
A. [False, True, True] B. Series of booleans C. ndarray of booleans D. True Correct answer: B. 7. What does this code produce?
import pandas as pd
s = pd.Series([1, 2, 3])
print(s[s > 1])
A. Series [2, 3] B. Series [False, True, True] C. [2, 3] D. IndexError Correct answer: A. 8. What is the output?
import pandas as pd
df = pd.DataFrame({"a": [1, 2], "b": [3, 4]})
print(df.iloc[0, 1])
A. 1 B. 2 C. 3 D. 4 Correct answer: C. 9. What does this select?
df.loc[:, "a"]
A. First row B. First column as Series C. First column as DataFrame D. Entire DataFrame Correct answer: B. 10. What will this code output?
import pandas as pd
df = pd.DataFrame({"a": [1, 2, 3]})
print(len(df))
A. 1 B. 2 C. 3 D. Error Correct answer: C. 11. What is returned?
df.values
A. Series B. DataFrame C. NumPy ndarray D. list Correct answer: C. 12. What does this code output?
import pandas as pd
df = pd.DataFrame({"a": [1, 2, 3]})
print(df.index)
A. [0, 1, 2] B. list C. RangeIndex D. ndarray Correct answer: C. 13. What is the result?
df.columns
A. list B. Series C. Index D. dict Correct answer: C. 14. What does this return?
df.dtypes
A. dict B. Series C. DataFrame D. ndarray Correct answer: B. 15. What is printed?
import pandas as pd
s = pd.Series([1, None, 3])
print(s.isna().sum())
A. 0 B. 1 C. 2 D. 3 Correct answer: B. 16. What does this code output?
import pandas as pd
s = pd.Series([1, None, 3])
print(s.dropna().values)
A. [1, None, 3] B. [None] C. [1, 3] D. Error Correct answer: C. 17. What does this expression return?
df.head(1)
A. First column B. First row as Series C. First row as DataFrame D. Entire DataFrame Correct answer: C. 18. What is the output?
import pandas as pd
df = pd.DataFrame({"a": [1, 2, 3]})
print(df.tail(1)["a"].iloc[0])
A. 1 B. 2 C. 3 D. Error Correct answer: C. 19. What happens here?
df["c"] = df["a"] * 2
A. Raises KeyError B. Modifies column a C. Adds new column c D. No effect Correct answer: C. 20. What does this code output?
import pandas as pd
df = pd.DataFrame({"a": [1, 2, 3]})
print(df.sum().iloc[0])
A. 1 B. 3 C. 6 D. Error Correct answer: C. 21. What does df.mean() return? A. scalar B. Series C. DataFrame D. ndarray Correct answer: B. 22. What is the result?
df["a"].dtype
A. int B. numpy.int64 C. object D. float Correct answer: B. 23. What does this code do?
df = df.rename(columns={"a": "x"})
A. Renames index B. Renames column a to x C. Deletes column a D. Copies DataFrame only Correct answer: B. 24. What does this expression return?
df.loc[df["a"] > 1, :]
A. Boolean Series B. Filtered DataFrame C. Filtered Series D. Error Correct answer: B. 25. What is printed?
import pandas as pd
df = pd.DataFrame({"a": [1, 2, 3]})
print(df.empty)
A. True B. False C. None D. Error Correct answer: B. https://t.me/DataAnalyticsX 😱