Campus Monk by Rachit Rastogi
π Analytical overview of Telegram channel Campus Monk by Rachit Rastogi
Channel Campus Monk by Rachit Rastogi (@rachityoutube) in the English language segment is an active participant. Currently, the community unites 10 887 subscribers, ranking 18 257 in the Education category and 36 815 in the India region.
π Audience metrics and dynamics
Since its creation on Π½Π΅Π²ΡΠ΄ΠΎΠΌΠΎ, the project has demonstrated rapid growth, gathering an audience of 10 887 subscribers.
According to the latest data from 18 July, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -107 over the last 30 days and by -13 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 1.04%. Within the first 24 hours after publication, content typically collects 0.57% reactions from the total number of subscribers.
- Post reach: On average, each post receives 113 views. Within the first day, a publication typically gains 62 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 0.
- Thematic interests: Content is focused on key topics such as tcs, sankalp, engineer, prep, intern.
π Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
βYour one stop for knowledge in a better perspective !β
Thanks to the high frequency of updates (latest data received on 19 July, 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 Education category.
Data loading in progress...
| Date | Subscriber Growth | Mentions | Channels | |
| 19 July | 0 | |||
| 18 July | 0 | |||
| 17 July | 0 | |||
| 16 July | +1 | |||
| 15 July | 0 | |||
| 14 July | +6 | |||
| 13 July | +1 | |||
| 12 July | 0 | |||
| 11 July | +4 | |||
| 10 July | 0 | |||
| 09 July | 0 | |||
| 08 July | 0 | |||
| 07 July | +2 | |||
| 06 July | 0 | |||
| 05 July | 0 | |||
| 04 July | 0 | |||
| 03 July | +1 | |||
| 02 July | 0 | |||
| 01 July | +1 |
| 2 | π’ Hi Champ! π
Today we're taking separate faculty sessions, so make sure you attend both to get the maximum benefit for your placement preparation. π
π£ Session 1: Verbal Preparation
π¨βπ« Faculty: Okesh Sir
π Time: 5:30 PM
π» Session 2: OOPs Concepts β Constructors (Zero to Hero)
π©βπ« Faculty: Shatarupa Ma'am
π’ Time: 7:15 PM
β‘οΈ Don't miss either session both are important for your placement journey!
π₯ Batch Details:
https://youtu.be/k3OD0kNgSuI?si=XHQqJ9lyWCUgWZmw
π Sankalp Batch 8.0 β For 2027 Students
TCS, Cognizant, Capgemini, Wipro, Accenture & Other Companies
π https://bfwhv.courses.store/758130
π― LIVE TCS Exclusive Complete Prep + Mock Tests
π https://bfwhv.courses.store/835259
π TCS Recorded Course + Lakshya Mock Series
π https://bfwhv.courses.store/843502
β Team CampusMonk β€οΈ | 70 |
| 3 | πβ¨ Word of the Day β¨π
Conjuring (verb / noun β C1)
π /ΛkΚn.dΚΙr.ΙͺΕ/ (KUN-juh-ring)
π‘ Meaning:
1οΈβ£ Creating or bringing something to mind using imagination.
2οΈβ£ Performing magic tricks or making something appear as if by magic.
π
* The writerβs vivid descriptions were conjuring images of a beautiful countryside.
* The magician amazed the audience by conjuring a rabbit out of a hat.
π Syn: Evoking, Summoning, Imagining
π Ant: Dispeling, Erasing
π‘ Quick Tip:
Conjuring is often used figuratively to mean creating a mental image or memory, not just performing magic.
βΈ»
β¨ Double Tap β€οΈ if youβre learning English every day!
β‘οΈ Share with friends π | 49 |
| 4 | πβ¨ Idiom of the Day β¨π
Smell a rat
π‘ Meaning: To suspect that something is wrong, dishonest, or suspicious.
π
* I smelled a rat when he kept changing his story.
* She smelled a rat after receiving a suspicious phone call.
π Syn: Become suspicious, Sense something is wrong
π Ant: Trust completely
βΈ»
β¨ Double Tap β€οΈ if youβre learning English every day!
β‘οΈ Share with friends π | 38 |
| 5 | *β‘οΈ Static Keyword in Java*
The static keyword is one of the most frequently asked Java interview topics.
It is used to create class-level members that belong to the class rather than individual objects.
*β
1οΈβ£ What is the static Keyword?*
Normally, variables and methods belong to an object.
But when you use static, they belong to the class.
π *This means you can access them without creating an object.*
*β
2οΈβ£ Static Variable*
A static variable is shared by all objects of the class.
*Example*
class Student {
static String college = "ABC College";
String name;
Student(String name) {
this.name = name;
}
}
public class Main {
public static void main(String[] args) {
Student s1 = new Student("Deepak");
Student s2 = new Student("Rahul");
System.out.println(s1.college);
System.out.println(s2.college);
}
}
*Output*
ABC College
ABC College
π *Only one copy of college exists, shared by all students.*
*β
3οΈβ£ Static Method*
A static method belongs to the class and can be called without creating an object.
*Example*
class Calculator {
static void greet() {
System.out.println("Welcome to Java");
}
}
public class Main {
public static void main(String[] args) {
Calculator.greet();
}
}
*Output*
Welcome to Java
*βοΈ Why is main() Static?*
public static void main(String[] args)
Because Java must call main() without creating an object of the class.
*β
4οΈβ£ Static Block*
A static block executes only once when the class is loaded into memory.
*Example*
class Demo {
static {
System.out.println("Static Block Executed");
}
public static void main(String[] args) {
System.out.println("Main Method");
}
}
*Output*
Static Block Executed
Main Method
π *Static block always executes before the main() method.*
*β
5οΈβ£ Static vs Non-Static Members*
Static ->
Belongs to class, One copy, Access using class name & Memory allocated once
Non-Static -> Belongs to object, Separate copy for each object, Access using object, Memory allocated for every object
*β
6οΈβ£ Static Method Rules*
A static method:
β
*Can access static variables*
β *Cannot directly access non-static variables*
β *Cannot directly call non-static methods*
β *Cannot use this keyword*
*Example*
class Test {
static int x = 10;
int y = 20;
static void display() {
System.out.println(x);
// System.out.println(y); β Error
}
}
*β
7οΈβ£ Static Variable vs Instance Variable*
Static Variable -> Shared by all objects, Created once
Instance Variable -> Each object has its own copy,
Created for every object
*π₯ Example Program*
class Employee {
static String company = "OpenAI";
String name;
Employee(String name) {
this.name = name;
}
void display() {
System.out.println(name + " works at " + company);
}
public static void main(String[] args) {
Employee e1 = new Employee("Deepak");
Employee e2 = new Employee("Rahul");
e1.display();
e2.display();
}
}
*Output*
Deepak works at OpenAI
Rahul works at OpenAI
*βοΈ Common Interview Questions*
*Q1. Can a static method access non-static variables?*
β No
*Q2. Can we override a static method?*
β No. Static methods are hidden, not overridden.
*Q3. Can a constructor be static?*
β No
*Q4. Can we create a static class?*
β
Only nested classes can be static.
*Q5. Why is main() method static?*
β
So the JVM can call it without creating an object.
*π₯ Quick Revision*
*static* β Belongs to class
*Static Variable* β Shared by all objects
*Static Method* β Called using class name
*Static Block* β Executes once before main()
*main()* β Static because JVM calls it directly
*π Double Tap β€οΈ For More* | 43 |
| 6 | π Ask yourself one question...
If TCS, Accenture, Cognizant or Capgemini opened applications tomorrow, would you be confident enough to clear every round?
If your answer is "Not Sure", you're missing the most important thingβnot talent, but the right preparation.
CampusMonk gives you:
π₯ Structured placement roadmap
π Company-focused preparation
π» Coding + Aptitude + Interview Prep
π Weekly mock tests with practice
π― Guidance from mentors who've trained thousands of students
π₯ Watch Batch Details:
https://youtu.be/k3OD0kNgSuI?si=XHQqJ9lyWCUgWZmw
π Sankalp Batch 8.0 (2027 Students)
π https://bfwhv.courses.store/758130
π― LIVE TCS Exclusive Complete Prep + Mock Tests
π https://bfwhv.courses.store/835259
π TCS Recorded + Lakshya Mock Series
π https://bfwhv.courses.store/843502
Your competition is preparing today. Are you? π― | 69 |
| 7 | π GUESS THE OUTPUT #2
Language: Python
python
def add_item(item, items=[]):
items.append(item)
return items
print(add_item(1))
print(add_item(2))
print(add_item(3))
Lock in your answer, then vote on the quiz below π | 96 |
| 8 | π’ Hi Champ! π
Today's LIVE Coding Masterclass is specially designed for Infosys Specialist Programmer (SP), Digital Specialist Engineer (DSE) roles and will also help you prepare for TCS, Cognizant, Capgemini, Accenture, Wipro & other placement exams. π»
π©βπ« Faculty: Itika Ma'am
π
Date: 17 July 2026 (Friday)
π Time: 9:30 PM
π₯ Topic: PYQ Coding Questions for Infosys SP & DSE + Coding Concepts for Other Placement Exams.
Don't miss this session if you're serious about cracking top MNCs! π
π Batch Details (Watch First):
https://youtu.be/k3OD0kNgSuI?si=XHQqJ9lyWCUgWZmw
π Sankalp Batch 8.0 (2027 Students)
TCS | Cognizant | Capgemini | Wipro | Accenture & More
π https://bfwhv.courses.store/758130
π― LIVE TCS Exclusive Complete Prep + Mock Tests
π https://bfwhv.courses.store/835259
π TCS Recorded Course + Lakshya Mock Series
π https://bfwhv.courses.store/843502
See you all at 9:30 PM! π
β Team Campusmonk | 94 |
| 9 | π GUESS THE OUTPUT #2 - full breakdown
python
def add_item(item, items=[]):
items.append(item)
return items
print(add_item(1))
print(add_item(2))
print(add_item(3))
Answer:
[1]
[1, 2]
[1, 2, 3]
Surprised? Mutable default arguments in Python are created once, when the function is defined - not each time it's called. So that same list keeps getting reused and mutated across calls.
The fix:
python
def add_item(item, items=None):
if items is None:
items = []
items.append(item)
return items
This exact bug has caused real production incidents. It's also a favorite "gotcha" question at Python-heavy companies.
Did you know about this one, or did it just break your brain a little? | 63 |
| 10 | πβ¨ Word of the Day β¨π
Sway (verb β B2/C1)
π /sweΙͺ/ (sway)
π‘ To influence or change someoneβs opinion, decision, or feelings.
π
* Her powerful speech swayed the audience to support the campaign.
* Donβt let others sway your decision if you believe youβre right.
π Syn: Influence, Persuade, Convince
π Ant: Deter, Discourage
βΈ»
β¨ Double Tap β€οΈ if youβre learning English every day!
β‘οΈ Share with friends π | 52 |
| 11 | π Preposition Tip of the Day
π Arrive at / Arrive in β
Use βarrive atβ for small places.
Use βarrive inβ for cities, countries, and large areas.
Examples:
βοΈ We arrived at the airport on time.
βοΈ She arrived in Mumbai yesterday.
β We arrived to the airport.
π‘ Quick Trick:
π At = small place π
π In = city, country, or large place π | 58 |
| 12 | πβ¨ Idiom of the Day β¨π
By leaps and bounds
π‘ Meaning: To improve, grow, or develop very quickly and significantly.
π
* Her English has improved by leaps and bounds since she started practicing every day.
* The company has grown by leaps and bounds over the last five years.
π Syn: Rapidly, Dramatically, Significantly
π Ant: Slowly, Gradually
π‘ Quick Tip:
We often use this idiom with verbs like improve, grow, develop, and progress.
βΈ»
β¨ Double Tap β€οΈ if youβre learning English every day!
β‘οΈ Share with friends π | 61 |
| 13 | β οΈ Reality Check:
2027 aa gaya.
Placement season bhi aa jayega.
Question yeh hai:
π Tum ready hoge ya panic karoge?
Batch Details:
https://youtu.be/k3OD0kNgSuI?si=XHQqJ9lyWCUgWZmw
π Sankalp Batch 8.0 β 2027 Students ke liye
TCS, Cognizant, Capgemini, Wipro, Accenture & Other
π https://bfwhv.courses.store/758130
π― LIVE TCS Exclusive Complete Prep + Mock Tests
π https://bfwhv.courses.store/835259
π TCS Recorded + Lakshya Mock Series
π https://bfwhv.courses.store/843502 | 79 |
| 14 | Hi Champ! π
Today's Coding Session is here! π
π Topic: Two Pointers (From Basic to Advanced)
π©βπ« Faculty: Kajal Ma'am
π
Date: 16/07/2026 (Thursday)
β° Time: 7:00 PM
We'll start from the basics, so don't worry if you're new to coding. This session is designed to build a strong foundation and help you solve interview-level problems.
Batch Details:
π₯ Overview: https://youtu.be/k3OD0kNgSuI?si=XHQqJ9lyWCUgWZmw
π Sankalp Batch 8.0 (For 2027 Students)
TCS, Cognizant, Capgemini, Wipro, Accenture & Other Companies
π https://bfwhv.courses.store/758130
π― LIVE TCS Exclusive Complete Prep + Mock Tests
π https://bfwhv.courses.store/835259
π TCS Recorded + Lakshya Mock Series
π https://bfwhv.courses.store/843502
See you all at 7:00 PM! π
Team CampusMonk | 83 |
| 15 | π― CODING CHALLENGE #2 - Valid Parentheses
Difficulty: Easy
Given a string containing just (, ), {, }, [, ], determine if the input is valid. Brackets must close in the correct order.
Input: "{[()]}" β true
Input: "{[(])}" β false
Input: "(((" β false
π‘ Hint: What data structure naturally handles "last opened, first closed"?
Solution:
python
def is_valid(s):
stack = []
pairs = {')': '(', ']': '[', '}': '{'}
for char in s:
if char in pairs.values():
stack.append(char)
elif char in pairs:
if not stack or stack.pop() != pairs[char]:
return False
else:
return False
return not stack
Complexity: O(n) time, O(n) space (worst case, all opening brackets).
Common mistake: Forgetting to check if the stack is empty at the very end. "(((" never fails inside the loop - you only catch it because the stack still has unclosed brackets when you finish.
Stacks show up constantly in interviews. Where else have you seen one used? | 75 |
| 16 | π― CODING CHALLENGE #2 - Valid Parentheses
Difficulty: Easy | Asked at: Microsoft, Meta, Bloomberg
Given a string containing just (, ), {, }, [, ], determine if the input is valid. Brackets must close in the correct order.
Input: "{[()]}" β true
Input: "{[(])}" β false
Input: "(((" β false
π‘ Hint: What data structure naturally handles "last opened, first closed"?
Solution:
python
def is_valid(s):
stack = []
pairs = {')': '(', ']': '[', '}': '{'}
for char in s:
if char in pairs.values():
stack.append(char)
elif char in pairs:
if not stack or stack.pop() != pairs[char]:
return False
else:
return False
return not stack
Complexity: O(n) time, O(n) space (worst case, all opening brackets).
Common mistake: Forgetting to check if the stack is empty at the very end. "(((" never fails inside the loop - you only catch it because the stack still has unclosed brackets when you finish.
Stacks show up constantly in interviews. Where else have you seen one used? | 1 |
| 17 | πβ¨ Word of the Day (Football Special) β¨π
Clinical (adjective β C1)
π /ΛklΙͺn.Ιͺ.kΙl/ (KLIN-i-kuhl)
π‘ In football, clinical means being extremely accurate and efficient, especially when finishing scoring chances.
π
* Cristiano Ronaldo is known for his clinical finishing in front of goal.
* Lionel Messi was clinical as he scored twice from limited chances.
π Syn: Precise, Efficient
π Ant: Wasteful
βΈ»
β¨ Double Tap β€οΈ if you love football! β½οΈξ
β‘οΈ Share with fellow football fans π | 62 |
| 18 | πβ¨ Idiom of the Day β¨π
Keep your eye on the ball
π‘ To stay focused and pay attention to what is most important.
π
* Cristiano Ronaldo always keeps his eye on the ball, which is one reason for his incredible goal-scoring record.
* Lionel Messi kept his eye on the ball and calmly finished the move despite the defenders.
π Syn: Stay focused, Concentrate
π Ant: Lose focus
βΈ»
β¨ Double Tap β€οΈ if you love football! β½οΈξ
β‘οΈ Share with fellow football fans π | 61 |
| 19 | π Preposition Tip of the Day
π Afraid of β
β Afraid from
Examples:
βοΈ She is afraid of spiders.
βοΈ Donβt be afraid of making mistakes.
β She is afraid from spiders.
π‘ Quick Trick:
π We always say afraid of, never afraid from.
π Quick Quiz π
Which sentence is correct?
A) Iβm afraid from dogs.
B) Iβm afraid of dogs. | 65 |
| 20 | No text... | 65 |
