write a program to insert an element into an array
Answer Posted /
import java.util.*;
import java.io.*;
public class project
{
public static void main (String[]args) throws
IOException
{
BufferedReader dataIn = new BufferedReader
(new InputStreamReader(System.in));
System.out.println
("******************************");
System.out.println("
+++++++++++++++ ");
System.out.println(" [1]
Insert ");
System.out.println(" [2]
Delete ");
System.out.println(" [3]
Search ");
System.out.println(" [4]
Sort ");
System.out.println("
+++++++++++++++ ");
System.out.println
("******************************");
}
}
| Is This Answer Correct ? | 20 Yes | 81 No |
Post New Answer View All Answers
How c functions prevents rework and therefore saves the programers time as wel as length of the code ?
What are vtable and vptr?
Write a program to encrypt the data in a way that inputs a four digit number and replace each digit by (the sum of that digit plus 7) modulus 10. Then sweep the first digit with the third, second digit with the fourth and print the encrypted number.
Explain rtti.
Explain the concept of memory leak?
Is the declaration of a class its interface or its implementation?
Explain how an exception handler is defined and invoked in a Program.
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?
Which is best c++ or java?
Is dev c++ a good compiler?
Write a Program to find the largest of 4 no using macros.
Describe protected access specifiers?
Explain the problem with overriding functions
Explain about Virtual Function in C++?
What is the function to call to turn an ascii string into a long?