Tech And Events 2026
1.11K subscribers
333 photos
23 videos
34 files
749 links
Sharing Events In 2026-2027
Technology Updates
World Level Hackathons
Up To Date In Tech Soft Skills For Your Knowledge
Download Telegram
๐’๐๐‹ ๐‚๐š๐ฌ๐ž ๐’๐ญ๐ฎ๐๐ข๐ž๐ฌ ๐Ÿ๐จ๐ซ ๐ˆ๐ง๐ญ๐ž๐ซ๐ฏ๐ข๐ž๐ฐ:

Join for more: https://t.me/TechAndEvents

1. Dannyโ€™s Diner:
Restaurant analytics to understand the customer orders pattern.
Link: https://8weeksqlchallenge.com/case-study-1/

2. Pizza Runner
Pizza shop analytics to optimize the efficiency of the operation
Link: https://8weeksqlchallenge.com/case-study-2/

3. Foodie Fie
Subscription-based food content platform
Link: https://lnkd.in/gzB39qAT

4. Data Bank: Thatโ€™s money
Analytics based on customer activities with the digital bank
Link: https://lnkd.in/gH8pKPyv

5. Data Mart: Fresh is Best
Analytics on Online supermarket
Link: https://lnkd.in/gC5bkcDf

6. Clique Bait: Attention capturing
Analytics on the seafood industry
Link: https://lnkd.in/ggP4JiYG

7. Balanced Tree: Clothing Company
Analytics on the sales performance of clothing store
Link: https://8weeksqlchallenge.com/case-study-7

8. Fresh segments: Extract maximum value
Analytics on online advertising
Link: https://8weeksqlchallenge.com/case-study-8

Placement Material ๐Ÿ’ฏ๐ŸŽฏ: https://topmate.io/sumit_kumar80/1151675
Data Analyst Interview Questions ๐Ÿ‘‡

1.How to create filters in Power BI?

Filters are an integral part of Power BI reports. They are used to slice and dice the data as per the dimensions we want. Filters are created in a couple of ways.

Using Slicers: A slicer is a visual under Visualization Pane. This can be added to the design view to filter our reports. When a slicer is added to the design view, it requires a field to be added to it. For example- Slicer can be added for Country fields. Then the data can be filtered based on countries.
Using Filter Pane: The Power BI team has added a filter pane to the reports, which is a single space where we can add different fields as filters. And these fields can be added depending on whether you want to filter only one visual(Visual level filter), or all the visuals in the report page(Page level filters), or applicable to all the pages of the report(report level filters)


2.How to sort data in Power BI?

Sorting is available in multiple formats. In the data view, a common sorting option of alphabetical order is there. Apart from that, we have the option of Sort by column, where one can sort a column based on another column. The sorting option is available in visuals as well. Sort by ascending and descending option by the fields and measure present in the visual is also available.


3.How to convert pdf to excel?

Open the PDF document you want to convert in XLSX format in Acrobat DC.
Go to the right pane and click on the โ€œExport PDFโ€ option.
Choose spreadsheet as the Export format.
Select โ€œMicrosoft Excel Workbook.โ€
Now click โ€œExport.โ€
Download the converted file or share it.


4. How to enable macros in excel?

Click the file tab and then click โ€œOptions.โ€
A dialog box will appear. In the โ€œExcel Optionsโ€ dialog box, click on the โ€œTrust Centerโ€ and then โ€œTrust Center Settings.โ€
Go to the โ€œMacro Settingsโ€ and select โ€œenable all macros.โ€
Click OK to apply the macro settings.
Machine Learning Algorithms Overview

โ–Œ1. Supervised Learning

Supervised learning algorithms learn from labeled data โ€” input features with corresponding output labels.

- Linear Regression
- Used for predicting continuous numerical values.
- Example: Predicting house prices based on features like size, location.
- Learns the linear relationship between input variables and output.

- Logistic Regression
- Used for binary classification problems.
- Example: Spam detection (spam or not spam).
- Outputs probabilities using a logistic (sigmoid) function.

- Decision Trees
- Used for classification and regression.
- Splits data based on feature values to make predictions.
- Easy to interpret but can overfit if not pruned.

- Random Forest
- An ensemble of decision trees.
- Reduces overfitting by averaging multiple trees.
- Good accuracy and robustness.

- Support Vector Machines (SVM)
- Used for classification tasks.
- Finds the hyperplane that best separates classes with maximum margin.
- Can handle non-linear boundaries with kernel tricks.

- K-Nearest Neighbors (KNN)
- Classification and regression based on proximity to neighbors.
- Simple but computationally expensive on large datasets.

- Gradient Boosting Machines (GBM), XGBoost, LightGBM
- Ensemble methods that build models sequentially to correct previous errors.
- Powerful, widely used for structured/tabular data.

- Neural Networks (Basic)
- Can be used for both regression and classification.
- Consists of layers of interconnected nodes (neurons).
- Basis for deep learning but also useful in simpler forms.

โ–Œ2. Unsupervised Learning

Unsupervised algorithms learn patterns from unlabeled data.

- K-Means Clustering
- Groups data into K clusters based on feature similarity.
- Used for customer segmentation, anomaly detection.

- Hierarchical Clustering
- Builds a tree of clusters (dendrogram).
- Useful for understanding data structure.

- Principal Component Analysis (PCA)
- Dimensionality reduction technique.
- Projects data into fewer dimensions while preserving variance.
- Helps in visualization and noise reduction.

- Autoencoders (Neural Networks)
- Learn efficient data encodings.
- Used for anomaly detection and data compression.

โ–Œ3. Reinforcement Learning (Brief)

- Learns by interacting with an environment to maximize cumulative reward.
- Used in robotics, game playing (e.g., AlphaGo), recommendation systems.

โ–Œ4. Other Important Algorithms and Concepts

- Naive Bayes
- Probabilistic classifier based on Bayes theorem.
- Assumes feature independence.
- Fast and effective for text classification.

- Dimensionality Reduction
- Techniques like t-SNE, UMAP for visualization and noise reduction.

- Deep Learning (Advanced Neural Networks)
- Convolutional Neural Networks (CNN) for images.
- Recurrent Neural Networks (RNN), LSTM for sequence data.

React โ™ฅ๏ธ for more
๐Ÿ‘1
โœ… Basic SQL Commands Cheat Sheet ๐Ÿ—ƒ๏ธ

โฆ  SELECT โ€” Select data from database
โฆ  FROM โ€” Specify table
โฆ  WHERE โ€” Filter query by condition
โฆ  AS โ€” Rename column or table (alias)
โฆ  JOIN โ€” Combine rows from 2+ tables
โฆ  AND โ€” Combine conditions (all must match)
โฆ  OR โ€” Combine conditions (any can match)
โฆ  LIMIT โ€” Limit number of rows returned
โฆ  IN โ€” Specify multiple values in WHERE
โฆ  CASE โ€” Conditional expressions in queries
โฆ  IS NULL โ€” Select rows with NULL values
โฆ  LIKE โ€” Search patterns in columns
โฆ  COMMIT โ€” Write transaction to DB
โฆ  ROLLBACK โ€” Undo transaction block
โฆ  ALTER TABLE โ€” Add/remove columns
โฆ  UPDATE โ€” Update data in table
โฆ  CREATE โ€” Create table, DB, indexes, views
โฆ  DELETE โ€” Delete rows from table
โฆ  INSERT โ€” Add single row to table
โฆ  DROP โ€” Delete table, DB, or index
โฆ  GROUP BY โ€” Group data into logical sets
โฆ  ORDER BY โ€” Sort result (use DESC for reverse)
โฆ  HAVING โ€” Filter groups like WHERE but for grouped data
โฆ  COUNT โ€” Count number of rows
โฆ  SUM โ€” Sum values in a column
โฆ  AVG โ€” Average value in a column
โฆ  MIN โ€” Minimum value in column
โฆ  MAX โ€” Maximum value in column

๐Ÿ’ฌ Tap โค๏ธ for more!
๐Ÿง  What does Mira Muratiโ€™s startup do

Mira Muratiโ€™s startup, which has raised $2 billion in funding and assembled a team of former OpenAI researchers, has for the first time explained what it does. Thinking Machines Lab wants to make the answers of large language models stable rather than random.

Today's LLMs often give different answers to the same question, and this has long been seen as inevitable. At Thinking Machines they believe the issue lies in how Nvidia GPU cores interact with each other during the inference process (everything that happens after you press Enter in ChatGPT). By controlling this process, the modelsโ€™ behavior can be made more predictable.

They plan to unveil their first product in the coming months. Murati hints that it will be geared toward researchers and startups building their own models.

@Skynet_Dreams
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿซง The Atlantic has spotted the risks of an AI bubble in the US economy

The Atlantic magazine warned of a possible formation of a bubble in the AI sector in the United States. Currently, more than half of the growth of the S&P 500 is driven by the largest tech companies, and the costs of building data centers resemble the telecom boom of the late 1990s.

In the authorsโ€™ view, the payoff from these investments remains in question. Revenues from generative AI are disproportionate to the scale of capital expenditures, which heightens fears of a possible โ€œbubble.โ€

Personally, I donโ€™t see a bubble, but an arms race. He who holds the information holds the world ๐Ÿ”ซ

@Skynet_Dreams
Please open Telegram to view this post
VIEW IN TELEGRAM
Some important questions to crack data science interview

Q. Describe how Gradient Boosting works.

A. Gradient boosting is a type of machine learning boosting. It relies on the intuition that the best possible next model, when combined with previous models, minimizes the overall prediction error. If a small change in the prediction for a case causes no change in error, then next target outcome of the case is zero. Gradient boosting produces a prediction model in the form of an ensemble of weak prediction models, typically decision trees.


Q. Describe the decision tree model.

A. Decision Trees are a type of Supervised Machine Learning where the data is continuously split according to a certain parameter. The leaves are the decisions or the final outcomes. A decision tree is a machine learning algorithm that partitions the data into subsets.


Q. What is a neural network?

A. Neural networks are a set of algorithms, modeled loosely after the human brain, that are designed to recognize patterns. They interpret sensory data through a kind of machine perception, labeling or clustering raw input. They, also known as Artificial Neural Networks, are the subset of Deep Learning.


Q. Explain the Bias-Variance Tradeoff

A. The biasโ€“variance tradeoff is the property of a model that the variance of the parameter estimated across samples can be reduced by increasing the bias in the estimated parameters.


Q. Whatโ€™s the difference between L1 and L2 regularization?

A. The main intuitive difference between the L1 and L2 regularization is that L1 regularization tries to estimate the median of the data while the L2 regularization tries to estimate the mean of the data to avoid overfitting. That value will also be the median of the data distribution mathematically.

ENJOY LEARNING ๐Ÿ‘๐Ÿ‘
Forwarded from Acharya Prashant
How to 'Manage' Time?

"Your time profile is nothing but a mirror, showing you your mental profile: your actual values and priorities. Look closely at how you use your hours and minutes; they reveal what you truly hold dear."

------

'Truth Without Apology'
Available on Amazon: https://amzn.in/d/61CYEr4
Useful Shortcut Keys
โœ…SQL Roadmap: Step-by-Step Guide to Master SQL ๐Ÿง ๐Ÿ’ป

Whether you're aiming to be a backend dev, data analyst, or full-time SQL pro โ€” this roadmap has got you covered ๐Ÿ‘‡

๐Ÿ“ 1. SQL Basics
โฆ  SELECT, FROM, WHERE
โฆ  ORDER BY, LIMIT, DISTINCT 
   Learn data retrieval & filtering.

๐Ÿ“ 2. Joins Mastery
โฆ  INNER JOIN, LEFT/RIGHT/FULL OUTER JOIN
โฆ  SELF JOIN, CROSS JOIN 
   Master table relationships.

๐Ÿ“ 3. Aggregate Functions
โฆ  COUNT(), SUM(), AVG(), MIN(), MAX() 
   Key for reporting & analytics.

๐Ÿ“ 4. Grouping Data
โฆ  GROUP BY to group
โฆ  HAVING to filter groups 
   Example: Sales by region, top categories.

๐Ÿ“ 5. Subqueries & Nested Queries
โฆ  Use subqueries in WHERE, FROM, SELECT
โฆ  Use EXISTS, IN, ANY, ALL 
   Build complex logic without extra joins.

๐Ÿ“ 6. Data Modification
โฆ  INSERT INTO, UPDATE, DELETE
โฆ  MERGE (advanced) 
   Safely change dataset content.

๐Ÿ“ 7. Database Design Concepts
โฆ  Normalization (1NF to 3NF)
โฆ  Primary, Foreign, Unique Keys 
   Design scalable, clean DBs.

๐Ÿ“ 8. Indexing & Query Optimization
โฆ  Speed queries with indexes
โฆ  Use EXPLAIN, ANALYZE to tune 
   Vital for big data/enterprise work.

๐Ÿ“ 9. Stored Procedures & Functions
โฆ  Reusable logic, control flow (IF, CASE, LOOP) 
   Backend logic inside the DB.

๐Ÿ“ 10. Transactions & Locks
โฆ  ACID properties
โฆ  BEGIN, COMMIT, ROLLBACK
โฆ  Lock types (SHARED, EXCLUSIVE) 
   Prevent data corruption in concurrency.

๐Ÿ“ 11. Views & Triggers
โฆ  CREATE VIEW for abstraction
โฆ  TRIGGERS auto-run SQL on events 
   Automate & maintain logic.

๐Ÿ“ 12. Backup & Restore
โฆ  Backup/restore with tools (mysqldump, pg_dump) 
   Keep your data safe.

๐Ÿ“ 13. NoSQL Basics (Optional)
โฆ  Learn MongoDB, Redis basics
โฆ  Understand where SQL ends & NoSQL begins.

๐Ÿ“ 14. Real Projects & Practice
โฆ  Build projects: Employee DB, Sales Dashboard, Blogging System
โฆ  Practice on LeetCode, StrataScratch, HackerRank

๐Ÿ“ 15. Apply for SQL Dev Roles
โฆ  Tailor resume with projects & optimization skills
โฆ  Prepare for interviews with SQL challenges
โฆ  Know common business use cases

๐Ÿ’ก Pro Tip: Combine SQL with Python or Excel to boost your data career options.

๐Ÿ’ฌ Double Tap โ™ฅ๏ธ For More!
๐Ÿ‘1
Forwarded from Sumit (Suku)
Jealous, or just dependent?

"Jealousy is born from dependence. The one who is not dependent is free of jealousy. The one who is his own master cannot be jealous.

If you want to be free of jealousy, see clearly where you are leaning on others to define yourself."

------

Truth Without Apology