Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In
Continue with Google
or use

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here
Continue with Google
or use

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

Sorry, you do not have permission to ask a question, You must login to ask a question.

Continue with Google
or use

Forgot Password?

Need An Account, Sign Up Here

Sorry, you do not have permission to ask a question, You must login to ask a question.

Continue with Google
or use

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

Answerclub

Answerclub Logo Answerclub Logo

Answerclub Navigation

  • Home
  • About Us
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Home
  • About Us
  • Contact Us

Welcome to Answerclub.org

Questions | Answers | Discussions | Knowledge sharing | Communities & more.

Get App on Playstore
Home/ Kavya T/Answers
Ask Kavya T
  • About
  • Questions
  • Polls
  • Answers
  • Best Answers
  • Followed
  • Favorites
  • Asked Questions
  • Groups
  • Joined Groups
  • Managed Groups
  1. Asked: June 5, 2024In: Education

    A technique used by codes to convert an analog signal into a digital bit stream is known as

    Kavya T
    Kavya T Knowledge Contributor
    Added an answer on June 5, 2024 at 8:05 pm

    Pulse code modulation A technique used by codes to convert an analog signal into a digital bit stream is known as. Pulse code modulation.

    Pulse code modulation
    A technique used by codes to convert an analog signal into a digital bit stream is known as. Pulse code modulation.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
  2. Asked: June 4, 2024In: Education

    In the following program how long will the for loop get executed? #include<stdio.h> int main() { int i=5; for(;scanf("%s", &i); printf("%d\n", i)); return 0; }

    Kavya T
    Kavya T Knowledge Contributor
    Added an answer on June 4, 2024 at 4:59 pm

    The for loop would get executed infinite times

    The for loop would get executed infinite times

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
  3. Asked: June 4, 2024In: Education

    What is the output of the program #include<stdio.h> int main() { int a[5] = {2, 3}; printf("%d, %d, %d\n", a[2], a[3], a[4]); return 0; }

    Kavya T
    Kavya T Knowledge Contributor
    Added an answer on June 4, 2024 at 4:59 pm

    The output of the following 'C' program. main() { int a[5]={2,3}; printf("\n%d%d%d",a[2],a[3],a[4]); Output:- 000.

    The output of the following ‘C’ program.
    main()
    {
    int a[5]={2,3};
    printf(“\n%d%d%d”,a[2],a[3],a[4]);

    Output:-

    000.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
  4. Asked: June 4, 2024In: Education

    What is the output of the program? #include<stdio.h> int main() { union a { int i; char ch[2]; }; union a u; u.ch[0] = 3; u.ch[1] = 2; printf("%d, %d, %d\n", u.ch[0], u.ch[1], u.i); return 0; }

    Kavya T
    Kavya T Knowledge Contributor
    Added an answer on June 4, 2024 at 4:53 pm

    Your defined union have two members... 1) int =====================> size =4 B 2) character array of length 2 ===> size =2 B Therefore size of Union is 4B You updated the Char member of Union at last ===> Character array is having the original value. what about " int " ? (assume your systemRead more

    Your defined union have two members…

    1) int =====================> size =4 B

    2) character array of length 2 ===> size =2 B

    Therefore size of Union is 4B

    You updated the Char member of Union at last ===> Character array is having the original value.

    what about ” int ” ? (assume your system is following little endian)

    it access the total 4B ===> ch[1] ch[0] ====> 00000010 00000011 ===> 512+3 = 515

    if you have the doubt that why not accessing in the form of ch[0] ch[1] ====> 00000011 00000010 ===> 512+256+2 = 770

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
  5. Asked: June 4, 2024In: Education

    What is the output of the program #include<stdio.h> int main() { extern int fun(float); int a; a = fun(3.14); printf("%d\n", a); return 0; } int fun(int aa) { return (int)++aa; }

    Kavya T
    Kavya T Knowledge Contributor
    Added an answer on June 4, 2024 at 4:49 pm

    Explanation: extern int fun(); declaration in C is to indicate the existence of a global function and it is defined externally to the current module or in another file. int fun(); declaration in C is to indicate the existence of a function inside the current module or in the same file.

    Explanation: extern int fun(); declaration in C is to indicate the existence of a global function and it is defined externally to the current module or in another file. int fun(); declaration in C is to indicate the existence of a function inside the current module or in the same file.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
  6. Asked: June 4, 2024In: Education

    What will be the output of the program? #include<stdio.h> int X=40; int main() { int X=20; printf("%d\n", X); return 0; }

    Kavya T
    Kavya T Knowledge Contributor
    Added an answer on June 4, 2024 at 4:46 pm

    include int main() { int x; x=(10,20,30); printf("%d", x); return 0; }

    include
    int main()
    {
    int x;
    x=(10,20,30);
    printf(“%d”, x);
    return 0;
    }

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
  7. Asked: June 4, 2024In: Education

    What is the output of the program in Turbo C (in DOS 16-bit OS)? #include<stdio.h> int main() { char *s1; char far *s2; char huge *s3; printf("%d, %d, %d\n", sizeof(s1), sizeof(s2), sizeof(s3)); return 0; }

    Kavya T
    Kavya T Knowledge Contributor
    Added an answer on June 4, 2024 at 4:45 pm

    Expert-Verified Answer ... char *s1 = 2 bytes. char far *s2; = 4 bytes. char huge *s3; = 4 bytes. Hence,output is 2,4,4.

    Expert-Verified Answer … char *s1 = 2 bytes. char far *s2; = 4 bytes. char huge *s3; = 4 bytes. Hence,output is 2,4,4.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
  8. Asked: June 4, 2024In: Education

    What is the output of the program #include<stdio.h> int main() { int x = 10, y = 20, z = 5, i; i = x < y < z; printf("%d\n", i); return 0; }

    Kavya T
    Kavya T Knowledge Contributor
    Added an answer on June 4, 2024 at 4:45 pm

    1 will be printed. Explanation: Since x < y turns to be TRUE it is replaced by 1. Then 1 < z is compared and to be TRUE.

    1 will be printed. Explanation: Since x < y turns to be TRUE it is replaced by 1. Then 1 < z is compared and to be TRUE.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
  9. Asked: June 4, 2024In: Education

    What is the output of the program #include<stdio.h> int main() { struct emp { char name[20]; int age; float sal; }; struct emp e = {"Tiger"}; printf("%d, %f\n", e.age, e.sal); return 0; }

    Kavya T
    Kavya T Knowledge Contributor
    Added an answer on June 4, 2024 at 4:45 pm

    #include int X=40; int main() { int X=20; printf("%d\n", X); return 0; }

    #include int X=40; int main() { int X=20; printf(“%d\n”, X); return 0; }

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
  10. Asked: June 4, 2024In: Education

    When we mention the prototype of a function?

    Kavya T
    Kavya T Knowledge Contributor
    Added an answer on June 4, 2024 at 4:42 pm

    A function prototype refers to a declaration of the function that informs the program regarding the type of value returned. Furthermore, this value is returned by the function, number, and type of arguments. This prototype refers to a declaration of a function that specifies the type signature and tRead more

    A function prototype refers to a declaration of the function that informs the program regarding the type of value returned. Furthermore, this value is returned by the function, number, and type of arguments. This prototype refers to a declaration of a function that specifies the type signature and the function’s name.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
1 … 20 21 22 23 24 … 155

Sidebar

Ask A Question

Stats

  • Questions 57,269
  • Answers 51,659
  • Popular
  • Answers
  • Mr.Doge

    What are the best AI tools available for Creative Designing?

    • 47 Answers
  • Mr.Doge

    How is tax calculated in India for investing in US ...

    • 41 Answers
  • Mr.Doge

    How to invest in NCD/ Corporate Bonds in India? Is ...

    • 35 Answers
  • The Vensej Mall Gurgaon
    The Vensej Mall Gurgaon added an answer Mojo Pizza at The Vensej Mall on Golf Course Extension… November 8, 2025 at 5:36 pm
  • Propickle 3D
    Propickle 3D added an answer Virtual site tours revolutionize property marketing by offering immersive, interactive… November 8, 2025 at 5:08 pm
  • Hero Homes
    Hero Homes added an answer To secure the best deal, buyers should compare interest rates… November 8, 2025 at 4:03 pm

Trending Tags

ai biology branch of study business cricket education english food general knowledge. general science geography gk health history poll question science sports technology travel

Explore

  • Home
  • Groups
  • Add group
  • Catagories
  • Questions
    • New Questions
    • Most Answered
  • Polls
  • Tags
  • Badges

© 2024 Answerclub.org | All Rights Reserved
Designed & Developed by INFINITEBOX & TechTrends