Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by Sudo_coder12

  1. S

    Fun activity Say hello... in a coding language!

    Oh, I didn't knew about it ! could you please guide me, where would that be in this typing section ?
  2. S

    Unable to Solve SQL Query Interview Question

    Approach is to initialize a num with 1 and sum with 0 and keep incrementing num by 2 and sum by num until num <= N. num NUMBER(3) = 1; sum1 NUMBER(4) = 0; WHILE num <= 5 LOOP dbms_output.Put_line(num); sum1 = sum1 + num; num = num + 2; END LOOP...
  3. S

    Fun activity Say hello... in a coding language!

    #include<stdio.h> int main() { printf("Hello World!"); }
  4. S

    Hi everyone :)

    Thank you for the warm welcome :) I am taking this step by step as of now, So as of now I am looking to improve on my logic building as that will help in tackling with advance problems If we can connect on discord for a quick call , that will be great ! Here is my discord id - Falcon89#4780 hit...
  5. S

    Hi everyone :)

    Hello everyone :) I have started this amazing journey and I aspire to become a software developer. I have learned Basics of C programming, moved on to some DSA which includes Searching, sorting techniques. Started with Java as well and also made some small things like a Youtube clone webpage by...
Back
Top Bottom