Machine Learning
Real Machine Learning — simple, practical, and built on experience. Learn step by step with clear explanations and working code. Admin: @HusseinSheikho || @Hussein_Sheikho
إظهار المزيد📈 نظرة تحليلية على قناة تيليجرام Machine Learning
تُعد قناة Machine Learning (@machinelearning9) في القطاع اللغوي الإنكليزية لاعباً نشطاً. يضم المجتمع حالياً 40 142 مشتركاً، محتلاً المرتبة 3 371 في فئة التكنولوجيات والتطبيقات والمرتبة 230 في منطقة سوريا.
📊 مؤشرات الجمهور والحراك
منذ تأسيسه في невідомо، حقق المشروع نمواً سريعاً وجمع 40 142 مشتركاً.
بحسب آخر البيانات بتاريخ 26 يونيو, 2026، تحافظ القناة على نشاط مستقر. خلال آخر 30 يوماً تغيّر عدد الأعضاء بمقدار 429، وفي آخر 24 ساعة بمقدار 20، مع بقاء الوصول العام مرتفعاً.
- حالة التحقق: غير موثّقة
- معدل التفاعل (ER): يبلغ متوسط تفاعل الجمهور 1.83%. وخلال أول 24 ساعة من النشر يحصد المحتوى عادةً 1.60% من ردود الفعل نسبةً إلى إجمالي المشتركين.
- وصول المنشورات: يحصل كل منشور على متوسط 735 مشاهدة. وخلال اليوم الأول يجمع عادةً 643 مشاهدة.
- التفاعلات والاستجابة: يتفاعل الجمهور بانتظام؛ متوسط التفاعلات لكل منشور يبلغ 2.
- الاهتمامات الموضوعية: يركز المحتوى على مواضيع رئيسية مثل distance, insidead, gpu, learning, degree.
📝 الوصف وسياسة المحتوى
يصف المؤلف القناة بأنها مساحة للتعبير عن الآراء الذاتية:
“Real Machine Learning — simple, practical, and built on experience.
Learn step by step with clear explanations and working code.
Admin: @HusseinSheikho || @Hussein_Sheikho”
بفضل وتيرة التحديث المرتفعة (أحدث البيانات بتاريخ 27 يونيو, 2026) تحافظ القناة على حداثتها ومستوى وصول مرتفع. وتُظهر التحليلات تفاعلاً نشطاً من الجمهور، ما يجعلها نقطة تأثير مهمة ضمن فئة التكنولوجيات والتطبيقات.
LEFT JOIN from table A to table B will:
a) Return all rows from table B and matching rows from table A.
b) Return only the rows that match in both tables.
c) Return all rows from table A and fill with NULLs for non-matching rows from table B.
d) Return all rows from both tables.
• (Time: 90s) What does the following SQL window function do?
ROW_NUMBER() OVER(PARTITION BY department ORDER BY salary DESC) as rank
a) Calculates the overall salary rank for all employees.
b) Assigns a unique rank to each employee within their department based on salary, from highest to lowest.
c) Counts the number of employees in each department.
d) Calculates the average salary per department.
• (Time: 90s) To find the sales from the previous day for each record in a daily_sales table, which window function would you use?
a) LEAD(sales, 1) OVER (ORDER BY sale_date)
b) ROW_NUMBER() OVER (ORDER BY sale_date)
c) LAG(sales, 1) OVER (ORDER BY sale_date)
d) PREVIOUS(sales)
• (Time: 75s) The primary purpose of a Common Table Expression (CTE) (i.e., the WITH clause) in SQL is to:
a) Improve query performance by creating temporary tables.
b) Improve the readability and modularity of complex queries.
c) Define user permissions.
d) Execute queries in parallel.
• (Time: 90s) The key difference between GROUP BY and a window function's PARTITION BY is:
a) GROUP BY collapses rows into a single summary row, while PARTITION BY does not collapse rows.
b) PARTITION BY is more performant than GROUP BY.
c) GROUP BY can be used with aggregate functions, while PARTITION BY cannot.
d) There is no difference.
• (Time: 75s) The HAVING clause is used to filter _, whereas the WHERE clause is used to filter _.
a) individual rows; aggregated groups
b) aggregated groups; individual rows
c) before a join; after a join
d) table A; table B
• (Time: 60s) A subquery in the SELECT clause must:
a) Return multiple columns.
b) Return multiple rows.
c) Return a single scalar value.
d) Connect to a different database.
Section 6: Case Studies & Business Acumen
• (Time: 90s) User engagement for your mobile app dropped by 15% last week. What is the most logical first step in your analysis?
a) Immediately roll back the last app update.
b) Segment the data to see if the drop is uniform across all user groups (e.g., by device, region, user tenure).
c) Ask the marketing team to launch a new campaign.
d) Start building a machine learning model to predict churn.
• (Time: 75s) Which of the following is the best example of a Key Performance Indicator (KPI) for an e-commerce website?
a) The number of visitors to the website.
b) The website's bounce rate.
c) The conversion rate (percentage of visitors who make a purchase).
d) The number of products in the catalog.
• (Time: 60s) When you receive a new dataset, what is the most critical initial step before any modeling or deep analysis?
a) Immediately build a predictive model.
b) Perform Exploratory Data Analysis (EDA) to understand its structure, identify missing values, find outliers, and check data quality.
c) Share the raw data with stakeholders.
d) Normalize all numerical features.num_competitors means:
a) The model is 2.5% accurate.
b) For every one-unit increase in num_competitors, the predicted outcome is expected to decrease by 2.5, holding all other variables constant.
c) There is a negative correlation of 2.5 between the variables.
d) The variable is not significant.
• (Time: 60s) Creating a new feature like age_of_account by subtracting the account creation date from the current date is an example of:
a) Feature selection
b) Model training
c) Feature engineering
d) Hyperparameter tuning
• (Time: 75s) K-Means is an algorithm used for what type of machine learning task?
a) Supervised Regression
b) Supervised Classification
c) Unsupervised Clustering
d) Reinforcement Learning.pipe() method in pandas?
a) To perform data visualization directly from a DataFrame.
b) To chain together a sequence of custom functions into a clean, readable workflow.
c) To connect to a database pipeline.
d) To perform multi-threaded operations.
Section 2: Data Visualization & Interpretation
• (Time: 75s) You want to compare the distribution of house prices (a continuous variable) across several different neighborhoods (a categorical variable). Which plot is most suitable?
a) A line chart.
b) A scatter plot.
c) A box plot or a violin plot.
d) A pie chart.
• (Time: 90s) You observe a strong positive correlation between ice cream sales and crime rates. What is the most likely explanation?
a) Eating ice cream causes people to commit crimes.
b) The correlation is spurious; a confounding variable (e.g., temperature) is influencing both.
c) Committing crimes causes people to buy ice cream.
d) The data is incorrect.
• (Time: 60s) When is it appropriate to use a logarithmic scale on a chart's axis?
a) When you want to emphasize small differences between large numbers.
b) When the data spans several orders of magnitude and is highly skewed.
c) When dealing with negative values.
d) When plotting categorical data.
• (Time: 60s) A heatmap is most effective for visualizing:
a) A time-series dataset.
b) The relationship between two continuous variables.
c) A correlation matrix or the magnitude of a phenomenon over a 2D space.
d) The proportion of categories in a dataset.
• (Time: 90s) What is the primary advantage of using "faceting" (or "small multiples") in data visualization?
a) It combines all data into a single, summary plot.
b) It allows you to create 3D visualizations.
c) It enables the comparison of data distributions or relationships across many subsets of a dataset, with consistent axes.
d) It is the only way to plot geographical data.
• (Time: 75s) What does a Q-Q (Quantile-Quantile) plot primarily help you assess?
a) The correlation between two variables.
b) The central tendency of a dataset.
c) Whether a sample of data follows a specific theoretical distribution (e.g., a normal distribution).
d) The variance of a dataset.
Section 3: Statistical Concepts & Hypothesis Testing
• (Time: 75s) What is the correct definition of a p-value?
a) The probability that the null hypothesis is true.
b) The probability of observing a result as extreme as, or more extreme than, the one observed, assuming the null hypothesis is true.
c) The probability that the alternative hypothesis is true.
d) The significance level of the test.
• (Time: 60s) A pharmaceutical company fails to reject the null hypothesis for a new drug's effectiveness, when in reality, the drug is effective. This is an example of:
a) Type I Error (False Positive)
b) Type II Error (False Negative)
c) Correct Decision
d) Standard Error
• (Time: 75s) An analyst wants to determine if there is a statistically significant difference in the average purchase amount between male and female customers. Which statistical test is most appropriate?
a) Chi-squared test
b) ANOVA
c) Paired t-test
d) Independent two-sample t-test
• (Time: 75s) To test for an association between two categorical variables, such as 'region' and 'product preference', you should use a(n):
a) Correlation coefficient
b) Chi-squared test of independence
c) T-test
d) Linear regression
متاح الآن! بحث تيليغرام 2025 — أهم رؤى العام 
