uz
Feedback
Code With Virus

Code With Virus

Kanalga Telegram’da o‘tish

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

Ko'proq ko'rsatish

📈 Telegram kanali Code With Virus analitikasi

Code With Virus (@codewithvirus) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 10 559 obunachidan iborat bo'lib, Texnologiyalar & Aralashmalar toifasida 10 501-o'rinni va Hindiston mintaqasida 43 593-o'rinni egallagan.

📊 Auditoriya ko‘rsatkichlari va dinamika

невідомо sanasidan buyon loyiha tez o‘sib, 10 559 obunachiga ega bo‘ldi.

04 Dekabr, 2025 dagi oxirgi ma’lumotlarga ko‘ra kanal barqaror faollikka ega. Oxirgi 30 kunda obunachilar soni -87 ga, so‘nggi 24 soatda esa 0 ga o‘zgardi va umumiy qamrov yuqori darajada qolmoqda.

  • Tasdiqlash holati: Tasdiqlanmagan
  • Jalb etish (ER): Auditoriya o‘rtacha 0% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining N/A% ini tashkil etuvchi reaksiyalarni to‘playdi.
  • Post qamrovi: Har bir post o‘rtacha 0 marta ko‘riladi; birinchi sutkada odatda 0 ta ko‘rish yig‘iladi.
  • Reaksiyalar va o‘zaro ta’sir: Auditoriya faol: har bir postga o‘rtacha 0 ta reaksiya keladi.

📝 Tavsif va kontent siyosati

Muallif resursni shaxsiy fikrni ifoda etish maydoni sifatida ta’riflaydi:
Coding channel @codewithvirus. 👈 Main group @avirustech 👈 Accenture @Accenturavirustech 👈 IBM. @IBMavirustech 👈 Tech Mahindra. @TechMavirustech 👈

Yuqori yangilanish chastotasi (oxirgi ma’lumot 05 Dekabr, 2025 da olingan) sababli kanal doimo dolzarb va katta qamrovli bo‘lib qoladi. Analitika auditoriya kontent bilan faol hamkorlik qilishini, uni Texnologiyalar & Aralashmalar toifasidagi muhim ta’sir nuqtasiga aylantirishini ko‘rsatadi.

10 559
Obunachilar
Ma'lumot yo'q24 soatlar
-227 kun
-8730 kun
Postlar arxiv
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