Tuesday, October 5, 2021

 


Java Program: Take 2 arrays, write a method to - Insert array2 in to array1 at given position

//Output: {12, 13,14,5,6,15}


package qasign;

import java.util.ArrayList;

import java.util.Arrays;

public class SampleTest {

public static void main(String[] args) {

Integer array1[]={12, 13,14,15};

Integer array2[]={5, 6};

int position=3;

List<Integer> list1=new ArrayList<>(Arrays.asList(array1));

System.out.println();

Arrays.asList(array2);

List<Integer> list2=new ArrayList<>(Arrays.asList(array2));

list1.addAll(position, list2);

System.out.println(list1);

}

}

Related Posts:

  • Introduction to Test Automation What is Test Automation: Test Automation or Automation Testing is a method of automating execution of tests and then  compares actual test results with predicted or expected results using special softwar… Read More
  • ArrayList vs LinkedList Difference between ArrayList and LinkedList? Similarities: Both implements List interface(linkedlist also implements deque interface), maintains insertion order and can contain duplicate elements. Both are non synchroni… Read More
  • Encapsulation in Java Encapsulation is to make sure that "sensitive" data is hidden from users. To achieve this, you must: declare class variables/attributes as private (only accessible within the same class) provide public setter and getter m… Read More
  • Retrieve Test Data from an Excel file with Apache POI A Java Program to retrieve the data from an excel file?   Below is the code to read .xlsx file.                                XSSFWorkbo… Read More
  • What is Manual Testing and its Advantages, Limitations Manual testing is a testing process that is carried out manually(executing test cases) in order to find defects without the usage of tools or automation scripting. It is the most primitive of all testing types and… Read More

0 comments:

Post a Comment

Selenium Training in Realtime

Blog helps to a student or IT employee to develop or improve skills in Software Testing.

Followers

About Me

My photo
Hyderabad, Andhra Pradesh, India
I am Automation Testing Professional. I have completed my graduation in B.Tech (Computers) from JNTU Hyderabad and started my career in Software Testing accidentally since then, I passionate on learning new technologies

Contact Form

Name

Email *

Message *

Popular Posts