Sign Up

Have an account? Sign In Now

Sign In

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.

Forgot Password?

Need An Account, Sign Up Here

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here
Sign InSign Up

SIKSHAPATH

SIKSHAPATH Logo SIKSHAPATH Logo

SIKSHAPATH Navigation

  • Home
  • Questions
  • Blog
    • Computer Science(CSE)
    • NPTEL
    • Startup
  • Shop
    • Internshala Answers
Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Home
  • Questions
  • Blog
    • Computer Science(CSE)
    • NPTEL
    • Startup
  • Shop
    • Internshala Answers
  • About
    1. Asked: November 28, 2021In: Data Structure

      Write a menu-driven program that implements the following operations (using separate functions)on a linear array- Insert a new element at …

      I'M ADMIN
      I'M ADMIN
      Added an answer on November 28, 2021 at 12:56 pm

      Write a menu-driven program that implements the following operations (using separate functions)on a linear array- Insert a new element at the end Display the elements of the linear array   TAP ON ATTACHMENT FOR ANSWER :

      1. Write a menu-driven program that implements the following operations (using separate functions)on a linear array-
      2. Insert a new element at the end
      3. Display the elements of the linear array

       

      TAP ON ATTACHMENT FOR ANSWER :

      See less
      Attachment

        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    2. Asked: November 28, 2021In: Data Structure

      Write a Program in C/ C++ that asks from user to enter any 10 array elements, and then ask to …

      I'M ADMIN
      I'M ADMIN
      Added an answer on November 28, 2021 at 12:11 pm

      #include <iostream> using namespace std; int main(){ int input[100], count, i, num; cout << "Enter Number of Elements in Array\n"; cin >> count; cout << "Enter " << count << " numbers \n"; for(i = 0; i < count; i++){ cin >> input[i]; } cout << "EnteRead more

      #include <iostream>
      using namespace std;
      
      int main(){
      int input[100], count, i, num;
      
      cout << "Enter Number of Elements in Array\n";
      cin >> count;
      
      cout << "Enter " << count << " numbers \n";
      
      
      for(i = 0; i < count; i++){
      cin >> input[i];
      }
      
      cout << "Enter a number to serach in Array\n";
      cin >> num;
      
      
      for(i = 0; i < count; i++){
      if(input[i] == num){
      cout << "Element found at index " << i;
      break;
      }
      }
      
      if(i == count){
      cout << "Element Not Present in Input Array\n";
      }
      
      return 0;
      }
      
      
      
      See less
      Attachment

        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    3. Asked: November 28, 2021In: DBMS

      Write a PL/SQL program to print reverse of a number. For example: 1234 print as 4321.

      I'M ADMIN
      I'M ADMIN
      Added an answer on November 28, 2021 at 11:51 am

      DECLARE n1 NUMBER; rev NUMBER; BEGIN n1:=1234; rev:=0; WHILE n1>0 LOOP rev:=(rev*10) + mod(n1,10); n1:=floor(n1/10); END LOOP; DBMS_OUTPUT.PUT_LINE('Reverse of the number is: ' || rev); END;

      
      DECLARE
      
      
      
      
      n1 NUMBER;
      
      rev NUMBER;
      
      
      
      
      BEGIN
      
      
      
      
      n1:=1234;
      
      rev:=0;
      
      
      
      
      WHILE n1>0 LOOP
      
      
      
      
      rev:=(rev*10) + mod(n1,10);
      
      
      
      
      n1:=floor(n1/10);
      
      
      
      
      END LOOP;
      
      
      
      
      DBMS_OUTPUT.PUT_LINE('Reverse of the number is: ' || rev);
      
      
      
      
      END;
      
      
      
      
      
      
      
      
      
      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    4. Asked: November 27, 2021In: Mathematics

      Find the infix equivalents of the following postfix equivalents: (A) A B + C * D – (B) ABC * …

      I'M ADMIN
      I'M ADMIN
      Added an answer on November 27, 2021 at 5:21 pm

      https://sikshapath.in/question/find-the-infix-equivalents-of-the-following-postfix-equivalents-a-a-b-c-d-b-abc-d/

      Find the infix equivalents of the following postfix equivalents: (A) A B + C * D – (B) ABC * + D –

      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    5. Asked: November 27, 2021In: DBMS

      Create a package with procedure that shows the usage of the WHILE loop to calculate the average of user entered …

      I'M ADMIN
      I'M ADMIN
      Added an answer on November 27, 2021 at 5:19 pm

      FOLLOW THE LOOP: https://sikshapath.in/question/create-a-package-with-procedure-that-shows-the-usage-of-the-while-loop-to-calculate-the-average-of-user-entered/

      FOLLOW THE LOOP:

      Create a package with procedure that shows the usage of the WHILE loop to calculate the average of user entered …

      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    6. Asked: November 27, 2021In: DBMS

      Create a package which contains a procedure to accept a text and to check whether it is palindrome or not.

      I'M ADMIN
      I'M ADMIN
      Added an answer on November 27, 2021 at 5:18 pm

      FOLLOW THE LINK: https://sikshapath.in/question/create-a-package-which-contains-a-procedure-to-accept-a-text-and-to-check-whether-it-is-palindrome-or-not-2/

      FOLLOW THE LINK:

      Create a package which contains a procedure to accept a text and to check whether it is palindrome or not.

      See less
        • -2
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    1 … 100 101 102 103 104 … 122

    Sidebar

    store ads

    Stats

    • Questions 1k
    • Answers 1k
    • Posts 149
    • Best Answers 89
    • This Free AI Tool Translates Entire Books in Minute !
    • AI News: 🎬 Hollywood’s AI Studios, 🎓 OpenAI’s Latest Gift to Educators, 🚚 Class8 Bags $22M, 🧠 Google Gemini’s Memory Upgrade
    • AI NEWS: Legal Action Against OpenAI, $16M Paid, & Elon Musk’s Praise from Investor 🤖💰📑 | AI Boosts Cloud Seeding for Water Security 🌱💧
    • AI News: 🎬AI Video Tool Scam Exposed🤯, 🛰️ AI-Powered Drones to Ukraine 😱, Google’s $20M AI Push, Sam Altman Joins SF’s Leadership Team
    • AI News: 🤝 Biden Meets Xi on AI Talks, 💡 Xavier Niel’s Advice for Europe, ♻️ Hong Kong’s Smart Bin Revolution, 🚀 AI x Huawei

    Explore

    • Recent Questions
    • Questions For You
    • Answers With Time
    • Most Visited
    • New Questions
    • Recent Questions With Time

    Footer

    SIKSHAPATH

    Helpful Links

    • Contact
    • Disclaimer
    • Privacy Policy Notice
    • TERMS OF USE
    • FAQs
    • Refund/Cancellation Policy
    • Delivery Policy for Sikshapath

    Follow Us

    © 2021-24 Sikshapath. All Rights Reserved