Working with CSV Files in Java

AmitDiwan
Updated on 17-Aug-2020 09:37:10

388 Views

OpenCSV has to be installed first, which is a parser library for Java. The dependency has to be mentioned in the pom.xml file in the maven project. After that, the below code can be utilized.Exampleimport java.io.FileReader; import java.io.*; public class Demo{    public static void readDataLineByLine(String file){       try{          FileReader my_filereader = new FileReader(file);          CSVReader csvReader = new CSVReader(my_filereader);          String[] nextRecord;          while ((nextRecord = csvReader.readNext()) != null){             for (String cell : nextRecord){         ... Read More

Class and Static Variables in Java

AmitDiwan
Updated on 17-Aug-2020 09:34:45

7K+ Views

Class variables are also known as static variables, and they are declared outside a method, with the help of the keyword ‘static’.Static variable is the one that is common to all the instances of the class. A single copy of the variable is shared among all objects.Example Live Demopublic class Demo{    static int my_count=2;    public void increment(){       my_count++;    }    public static void main(String args[]){       Demo obj_1=new Demo();       Demo obj_2=new Demo();       obj_1.increment();       obj_2.increment();       System.out.println("The count of first object is "+obj_1.my_count); ... Read More

Object Graph in Java Serialization

AmitDiwan
Updated on 17-Aug-2020 09:30:43

856 Views

An object graph contains a set of objects that are automatically serialized given that the object that contains the reference is serialized too. Any object that is serialized and contains an object reference, the object reference will be serialized by the JVM.Example Live Demoimport java.io.FileInputStream; import java.io.FileOutputStream; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.Serializable; class One implements Serializable{    Two s2 = new Two(); } class Two implements Serializable{    Three s3 = new Three(); } class Three implements Serializable{    int i = 34;    int j = 67; } public class Demo_Serialize{    public static void main(String args[]) throws Exception{ ... Read More

Connection Between Java and Blockchain

AmitDiwan
Updated on 17-Aug-2020 09:28:52

217 Views

Blockchain has become a buzz word in the recent times. It is being tried to be implemented in every software for various purposes, to check how it would work efficiently given different scenarios. It is a decentralized technology. It basically is data that is digital in nature and every piece of data is known as a transaction. Hence, the date, time and amount of that specific transaction is stored in the blockchain. Every block is unique due to the unique code it has, that is also known as ‘hash’. It is created with the help of different specialized algorithms.Investors are ... Read More

Verification in Java JVM

AmitDiwan
Updated on 17-Aug-2020 09:27:42

712 Views

Once the byte code is loaded by the JVM, (with the help of the .class file), the bytecode is checked to see the validity with the help of the verifier. The verifier checks the linking so as to perform operations efficiently. This way, the interpreter performs much efficiently. This process is known as verification.Example Live Demopublic class Demo{    private float my_val;    float my_function(int my_val){       int balance = my_val;       this.my_val += balance;       return this.my_val;    }    public static void main(String[] args){       Demo my_obj = new Demo();   ... Read More

Maximum Number with Same Digit Factorial Product in C++

Sunidhi Bansal
Updated on 17-Aug-2020 09:26:44

178 Views

Given the task is to find the maximum number without any leading or trailing zeroes or ones whose product of factorial of its digits is equal to the product of factorial of digits of the given number N.Let’s now understand what we have to do using an example −Input − N = 4912Output − 73332222Explanation − 4! * 9! * 1! * 2! = 7! * 3! * 3! * 3! * 2! * 2! *2! *2! = 17, 418, 240Input − N = 340Output − 3322Approach used in the below program as followsIn order to attain the maximum answer ... Read More

Maximum Number on Seven Segment Display Using n Segments in C++

Sunidhi Bansal
Updated on 17-Aug-2020 09:24:08

372 Views

Given the task is to find the maximum number that can be displayed using N segment on ant number of seven segment display.Let’s now understand what we have to do using an example −Input − N=5Output − 71Explanation − The largest number will be displayed as follows on the seven segment display −Input − N=6Output − 111Approach used in the below program as followsThe following situation can be divided into 3 case −Case 1 −If N is 0 or 1, then it is not possible to display any number.Case 2 −If N is odd. Then the numbers that can be ... Read More

Maximum Number of Zombie Processes a System Can Handle in C++

Sunidhi Bansal
Updated on 17-Aug-2020 09:21:18

221 Views

Given the task is to find the maximum number of Zombie processes that a system can handle or in other words, the program does not stop its execution.A Zombie process (also known as defunct process) is a process that has completed its process via exit() (system call) but still has an entry in the process table.Approach used in the below program as followsNote that should be added in order to run the program.In main() function initialize num = 0 of type int which we will iterate until the program stops being executed.To initiate a zombie process create a while statement ... Read More

C++ Features Missing in Java

AmitDiwan
Updated on 17-Aug-2020 09:20:06

1K+ Views

There are many features that can be seen in C++ but not in Java. A few of them have been listed below −No unsigned int option in JavaNo destructor in Java as well as ‘delete’ since garbage collector performs this operation for it.No friend classes or friend functions in Java.There are no pointers in Java.There is no typedef option in Java.Since Java is a purely object oriented language, there are no global variables or global functions.The concept of templates present in C++ can’t be found in Java.The ‘::’ scope resolution operator is not there, since there is no question of ... Read More

Maximum Number of Unique Prime Factors in C++

Sunidhi Bansal
Updated on 17-Aug-2020 09:20:03

1K+ Views

Given the task is to find the maximum number of unique prime factors a number can have in the range of [1, N] where N is given.Let’s now understand what we have to do using an example −Input − N=100Output − 3Explanation − Let us take 30 in the range of [1, 100]30 = 3 * 2 * 5 = unique prime factors. Therefore, in the range of [1, 100] a maximum of 3 unique factors can be found.Input − N=300Output − 4Approach used in the below program as followsIn function MaxPrime() we will first check if (N < 2). ... Read More

Advertisements