ar
Feedback
Code With Virus

Code With Virus

الذهاب إلى القناة على Telegram

Coding channel @codewithvirus. 👈 Main group @avirustech 👈 Accenture @Accenturavirustech 👈 IBM. @IBMavirustech 👈 Tech Mahindra. @TechMavirustech 👈

إظهار المزيد

📈 نظرة تحليلية على قناة تيليجرام Code With Virus

تُعد قناة Code With Virus (@codewithvirus) في القطاع اللغوي الإنكليزية لاعباً نشطاً. يضم المجتمع حالياً 10 559 مشتركاً، محتلاً المرتبة 10 501 في فئة التكنولوجيات والتطبيقات والمرتبة 43 593 في منطقة الهند.

📊 مؤشرات الجمهور والحراك

منذ تأسيسه في невідомо، حقق المشروع نمواً سريعاً وجمع 10 559 مشتركاً.

بحسب آخر البيانات بتاريخ 04 ديسمبر, 2025، تحافظ القناة على نشاط مستقر. خلال آخر 30 يوماً تغيّر عدد الأعضاء بمقدار -87، وفي آخر 24 ساعة بمقدار 0، مع بقاء الوصول العام مرتفعاً.

  • حالة التحقق: غير موثّقة
  • معدل التفاعل (ER): يبلغ متوسط تفاعل الجمهور 0‎%. وخلال أول 24 ساعة من النشر يحصد المحتوى عادةً N/A‎% من ردود الفعل نسبةً إلى إجمالي المشتركين.
  • وصول المنشورات: يحصل كل منشور على متوسط 0 مشاهدة. وخلال اليوم الأول يجمع عادةً 0 مشاهدة.
  • التفاعلات والاستجابة: يتفاعل الجمهور بانتظام؛ متوسط التفاعلات لكل منشور يبلغ 0.

📝 الوصف وسياسة المحتوى

يصف المؤلف القناة بأنها مساحة للتعبير عن الآراء الذاتية:
Coding channel @codewithvirus. 👈 Main group @avirustech 👈 Accenture @Accenturavirustech 👈 IBM. @IBMavirustech 👈 Tech Mahindra. @TechMavirustech 👈

بفضل وتيرة التحديث المرتفعة (أحدث البيانات بتاريخ 05 ديسمبر, 2025) تحافظ القناة على حداثتها ومستوى وصول مرتفع. وتُظهر التحليلات تفاعلاً نشطاً من الجمهور، ما يجعلها نقطة تأثير مهمة ضمن فئة التكنولوجيات والتطبيقات.

10 559
المشتركون
لا توجد بيانات24 ساعات
-227 أيام
-8730 أيام
أرشيف المشاركات
photo content

1 If I were ever impolite, I apologize. 2 Agnes is not such an arrogant person as people say. 3 I was thrilled to see my cousins after 20 years. 4 It is time you went home 5 He had left for Shimla early and he must be reached by now. 6 Krishnamachari Shrikanth is a union official. 7 It was already informed that each of the students must produce his/her aadhar card before participating in the competition 8 We have a few kilometers to go but there is only tiny petrol left in the tank! 9 When Samhita reached the station, the train had already left. 10 Musharraf had saved seats for all of us at the theatre

Who have Capgemini exam today tell me your timing??

Who have Capgemini exam today ?

Capgemini || Most repeated pseudocode asked in Capgemini exams ✌️✌️✌️✌️ https://youtu.be/8hSTkiTu5I0

Repost from Code With Virus
Palindrome count Python 3 @codewithvirus
+2
Palindrome count Python 3 @codewithvirus

#include using namespace std; string decimalToBinary(int n) { string s = bitset<64> (n).to_string(); const auto loc1 =
#include <bits/stdc++.h> using namespace std; string decimalToBinary(int n) { string s = bitset<64> (n).to_string(); const auto loc1 = s.find('1'); if(loc1 != string::npos) return s.substr(loc1); return "0"; } int main() { int n; cin>>n; int ans=0; string s =decimalToBinary(n); for(int i=s.size()-1;i>=0;i--) { if(s[i]=='1') { ans++; break; } else ans++; } cout<<ans; return 0; }

#include using namespace std; int getSum(int n) { if (n &lt; 10) { if (n == 1) return 1; else return 0; } int sum = 0; while
#include <bits/stdc++.h> using namespace std; int getSum(int n) { if (n < 10) { if (n == 1) return 1; else return 0; } int sum = 0; while (n != 0) { sum = sum + n % 10; n = n / 10; } return getSum(sum); } int main() { int n; cin>>n; cout<<getSum(n); return 0; } C++ language