en
Feedback
Coding_knowledge

Coding_knowledge

Open in Telegram

πŸ’‘ Your Coding Journey Starts Here! Get free courses, coding resources, internships, job updates & much more. Stay ahead in tech with us! β€οΈπŸš€ Join our WhatsApp groupπŸ‘‡ https://whatsapp.com/channel/0029Vaa7CVhCRs1rxJzy1n3D

Show more

πŸ“ˆ Analytical overview of Telegram channel Coding_knowledge

Channel Coding_knowledge (@coding_knwledge01) in the English language segment is an active participant. Currently, the community unites 79 382 subscribers, ranking 1 561 in the Technologies & Applications category and 3 823 in the India region.

πŸ“Š Audience metrics and dynamics

Since its creation on Π½Π΅Π²Ρ–Π΄ΠΎΠΌΠΎ, the project has demonstrated rapid growth, gathering an audience of 79 382 subscribers.

According to the latest data from 02 September, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -850 over the last 30 days and by -12 over the last 24 hours, overall reach remains high.

  • Verification status: Not verified
  • Engagement rate (ER): The average audience engagement rate is 9.91%. Within the first 24 hours after publication, content typically collects 2.57% reactions from the total number of subscribers.
  • Post reach: On average, each post receives 7 865 views. Within the first day, a publication typically gains 2 040 views.
  • Reactions and interaction: The audience actively supports content: the average number of reactions per post is 19.
  • Thematic interests: Content is focused on key topics such as q&a, goody, api, stack, analyst.

πŸ“ Description and content policy

The author describes the resource as a platform for expressing subjective opinions:
β€œπŸ’‘ Your Coding Journey Starts Here! Get free courses, coding resources, internships, job updates & much more. Stay ahead in tech with us! β€οΈπŸš€ Join our WhatsApp groupπŸ‘‡ https://whatsapp.com/channel/0029Vaa7CVhCRs1rxJzy1n3D”

Thanks to the high frequency of updates (latest data received on 03 September, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.

79 382
Subscribers
-1224 hours
-1677 days
-85030 days
Posts Archive
System Design Basics Handbook (1).pdf11.38 MB

πŸ”Έ37 Toughest Interview Questions Answers πŸ”Έ.pdf1.68 MB

Manual_Testing_concepts.pdf4.67 MB

DATA STRUCTUREβ—ΎSHORT NOTES (3).pdf3.95 MB

Java Cheatsheet.pdf9.22 KB

Python Data structures (1).pdf3.10 MB

SQL Interview Questions πŸ“•.pdf7.13 MB

Complete HTML Notes.pdf3.92 MB

Javascript Handwritten Notes .pdf5.00 MB

Java Notes (1).pdf4.92 MB

100 must do leetcode questions (1).pdf4.15 MB

No Sql (1).pdf27.55 MB

Oops Using C++ (1).pdf3.24 MB

Java Methods (1).pdf1.29 MB

Tic tac toe game import javax.swing.*; import java.awt.*; import java.awt.event.*; public class tic_tac_toe implements ActionListener { private JFrame frame; private JPanel panel; private JButton[] buttons = new JButton[9]; private boolean xTurn = true; public tic_tac_toe() { frame = new JFrame("Tic-Tac-Toe"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); panel = new JPanel(); panel.setLayout(new GridLayout(3, 3)); panel.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10)); for (int i = 0; i < 9; i++) { buttons[i] = new JButton(); buttons[i].setFont(new Font("Arial", Font.PLAIN, 40)); buttons[i].addActionListener(this); panel.add(buttons[i]); } frame.add(panel, BorderLayout.CENTER); frame.setSize(400, 400); frame.setVisible(true); } public void actionPerformed(ActionEvent e) { JButton button = (JButton) e.getSource(); if (xTurn) { button.setText("X"); } else { button.setText("O"); } button.setEnabled(false); xTurn = !xTurn; checkForWinner(); } public void checkForWinner() { for (int i = 0; i < 9; i += 3) { if (buttons[i].getText().equals(buttons[i + 1].getText()) && buttons[i] .getText().equals(buttons[i + 2].getText()) && !buttons[i].isEnabled()) { JOptionPane.showMessageDialog(frame, buttons[i].getText() + " wins!"); resetGame(); return; } } for (int i = 0; i < 3; i++) { if (buttons[i].getText().equals(buttons[i + 3].getText()) && buttons[i].getText().equals(buttons[i + 6].getText()) && !buttons[i].isEnabled()) { JOptionPane.showMessageDialog(frame, buttons[i] .getText() + " wins!"); resetGame(); return; } } // Check diagonals if (buttons[0].getText().equals(buttons[4].getText()) && buttons[0].getText().equals(buttons[8].getText()) && !buttons[0].isEnabled()) { JOptionPane.showMessageDialog(frame, buttons[0] .getText() + " wins!"); resetGame(); return; } if (buttons[2].getText().equals(buttons[4].getText()) && buttons[2].getText().equals(buttons[6].getText()) && !buttons[2].isEnabled()) { JOptionPane.showMessageDialog(frame, buttons[2] .getText() + " wins!"); resetGame(); return; } // Check for tie boolean tie = true; for (int i = 0; i < 9; i++) { if (buttons[i].isEnabled()) { tie = false; break; } } if (tie) { JOptionPane.showMessageDialog(frame, "Tie game!"); resetGame(); } } public void resetGame() { for (int i = 0; i < 9; i++) { buttons[i].setText(""); buttons[i].setEnabled(true); } xTurn = true; } public static void main(String[] args) { new tic_tac_toe(); } }

Java Methods.pdf1.29 MB

Java Notes .pdf4.92 MB

No Sql .pdf27.55 MB

Oops Using C++.pdf3.24 MB

100 must do leetcode questions.pdf4.15 MB