Tag: command line
-
Nokia 6 Cost Price in Nepal & Specifications
Nokia 6, one of the most favored mobile worldwide has now arrived in the Nepalese market too. Not only this but all the branded Nokia phones are available in the Nepali market. Paramount Electronics, Nokia’s official distributor in Nepal has introduced Nokia 6 in the Nepali markets. According to the distributor, Nokia 6 costs Rs.…
-
Implement a Vector that accepts five items from the command line and store them in a Vector and display the objects stored in a Vector.
Write a JAVA program to implement a Vector that accepts five items from the command line and store them in a Vector and display the objects stored in a Vector. import java.lang.*; import java.io.*; import java.util.*; class q8Vector { public static void main(String args[]) { Vector list = new Vector(); int len=args.length; for(int i=0;i<len;i++)…