en
Feedback
Untold Coding

Untold Coding

Open in Telegram

|| जय श्री राम || #100dayschallenge Sharing HTML, CSS and JS magic ✨ Join our Creative Journey!🎉

Show more

📈 Analytical overview of Telegram channel Untold Coding

Channel Untold Coding (@untoldcoding) in the English language segment is an active participant. Currently, the community unites 31 445 subscribers, ranking 3 405 in the Technologies & Applications category and 15 035 in the India region.

📊 Audience metrics and dynamics

Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 31 445 subscribers.

According to the latest data from 10 August, 2025, the channel demonstrates stable activity. Although there has been a change in the number of participants by -416 over the last 30 days and by 0 over the last 24 hours, overall reach remains high.

  • Verification status: Not verified
  • Engagement rate (ER): The average audience engagement rate is 0%. Within the first 24 hours after publication, content typically collects N/A% reactions from the total number of subscribers.
  • Post reach: On average, each post receives 0 views. Within the first day, a publication typically gains 0 views.
  • Reactions and interaction: The audience actively supports content: the average number of reactions per post is 0.

📝 Description and content policy

The author describes the resource as a platform for expressing subjective opinions:
|| जय श्री राम || #100dayschallenge Sharing HTML, CSS and JS magic ✨ Join our Creative Journey!🎉

Thanks to the high frequency of updates (latest data received on 11 August, 2025), 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.

31 445
Subscribers
No data24 hours
-747 days
-41630 days
Posts Archive
Question of the day
We reached the station late, and ___ missed the train. Answer. (A) near (B) nearly (C) utterly (D) mostly

Answer?
Anonymous voting

Answer?
Anonymous voting

Question of the day
A rectangular paper of 20 cm × 8 cm is folded 3 times. Each fold is made along the line of symmetry, which is perpendicular to its long edge. The perimeter of the final folded sheet (in cm) is (A) 18 (B) 24 (C) 20 (D) 21

Ans?
Anonymous voting

Question of the day
A person sold two different items at the same price. He made 10% profit in one item, and 10% loss in the other item. In selling these two items, the person made a total of (a) 1% profit (c) 2% profit (b) 1% loss (d) 2% loss

Answer?
Anonymous voting

Answer?
Anonymous voting

Consider the following sample of numbers: 9, 18, 11, 14, 15, 17, 10, 69, 11, 13 The median of the sample is (a) 14 (b) 18.7 (c) 13.5 (d) 11

Output will be?
Anonymous voting

Consider the C Programming #include<stdio.h> void print (int n) { if (n <= 0) return; print(n--); printf ("%d", n); } int main() { print(5); return 0; }

Output will be?
Anonymous voting

photo content

How many times printf will executed?
Anonymous voting

#include <stdio.h> int main() { int i; for(i=1; i<=10; i++){ if(i>5){ break; } } printf("%d",i); return 0; }

How many quiz needed in a day ?
Anonymous voting

Explanation
Total printf Calls Summing up all the outputs from each iteration: Iteration 1: 1 time Iteration 2: 1 time Iteration 3: 3 times Iteration 4: 3 times Iteration 5: 2 times Total number of printf calls: 1 + 1 + 3 + 3 + 2 = 10 Still have any confusion, drop a comment 👇

How many number of times printf statement executed?
Anonymous voting

Consider the following C program: #include<stdio.h> int main( ) { int i, j, k = 0; j=2*3/4+2.0/5+8/5; k -= --j; for (i=0; i<5; i++) { switch(i+k) { case 1: case 2: printf("\n%d", i+k); case 3: printf("\n%d", i+k) default: printf("\n%d", i+k); } } return 0; }