Untold Coding
31.5K subscribers
177 photos
5 videos
4 files
227 links
|| जय श्री राम ||
#100dayschallenge
Sharing HTML, CSS and JS magic
Join our Creative Journey!🎉
Download Telegram
Day : 122 | 100 Days 100 Projects Challenge

Topic : Next Level Portfolio

Video 👇
https://www.instagram.com/reel/C4LC0Mhv9dx/?igsh=aHZ6YzZxbm5vOGlu


Source code link 👇
https://github.com/vishaltewatia/Best-Portfolio


Join group
https://chat.whatsapp.com/HXh5cAaCfpT9qmWgy2uYyG


Thank you for supporting us! 🙌

Give your Feedback regarding this post, hope you like it ❤️
👍211
Part : 01

Topic : Html , CSS, Javascript Interview Questions


Video 👇
https://www.instagram.com/reel/C4dDVxzPPkD/?igsh=dzR2bmdtcno2ZzNh


Pdf link 👇
https://github.com/vishaltewatia/Html-CSS-JS-Interview-Question/blob/main/untoldCoding.pdf


Join group
https://chat.whatsapp.com/HXh5cAaCfpT9qmWgy2uYyG


Thank you for supporting us! 🙌

Give your Feedback regarding this post, hope you like it ❤️
👍192
Topic : Project Based Learning

Video 👇
https://www.instagram.com/reel/C4sf16qP2u3/?igsh=MTlkbXN5dmdkaWJ5dw==


Website Link 👇
https://github.com/practical-tutorials/project-based-learning


Join group on WhatsApp
https://chat.whatsapp.com/HXh5cAaCfpT9qmWgy2uYyG


Thank you for supporting us! 🙌

Give your Feedback regarding this post, hope you like it ❤️
👍21
Express your Feelings

Source Code
https://youtu.be/EXKGLRs_cCw
👍143
Happy Holi💜💚💛❤️🩷
58👍6🎉6
Full Stack UntoldCoding.pdf
161.7 KB
Full Stack UntoldCoding.pdf
18👍127🆒7🔥5
According to you which is better Learning from YouTube or Offline Coaching with placement support in affordable price?
👍7
?
Anonymous Poll
67%
YouTube
33%
Offline
👍6
Choose which videos you want on Untoldcoding channel 👆👆👆
👍5
We should start imp gate questions quiz?
Anonymous Poll
85%
Yes
15%
No
👍21
Char ch = 21;
ch = ch<<3;
printf("%d",ch); What is the output ( ) //Ignore typing error
Anonymous Quiz
27%
34
24%
-88
14%
-68
35%
18
👍11👎21🥰1👏1
What is the output of this program?

#include <stdio.h>
int main() {
printf("%d", printf("ABCD"));
return 0;
}
👍13🤔10
Output of above program is ?
Anonymous Quiz
24%
ABCD4
14%
ABCD 4
21%
4
40%
ABCD
👍81
Untold Coding
Char ch = 21;
ch = ch<<3;
printf("%d",ch); What is the output ( ) //Ignore typing error
In this question we use formal a×2^k and
-(2^n -k) here k is the number and n is the no. of bit

Therefore
We have n = 8 , (char size)
K = 21

- ( 2⁸ -168) = - (256-168)
= -88
👍11