SlideShare a Scribd company logo
1 of 124
//Predict the output
class Main
{
public static void main(String[] args)
{
System.out.println(“Enjoy today");
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
E n j o y t o d a y
Question 1
A)
Enjoy today
B)
Enjoy
today
C)
error
D)
E n j o y t o d a y
Question 1
A)
Enjoy today
B)
Enjoy
today
C)
error
D)
//Predict the output
class Main
{
public static void main(String args[])
{
int a[]=new int[3];
a[0]=1;
a[1]=2;
a[2]=7;
for(int i=0;i<a.length;i++)
System.out.println(a[i]);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
1
2
7
Question 2
A)
1 2 7
B)
Error
C)
127
D)
1
2
7
Question 2
A)
1 2 7
B)
Error
C)
127
D)
//Predict the output
public class Main
{
public static void main(String[] args)
{
int[] b = {1, 2, 3};
System.out.println(b[5]);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
0
Question 3
A)
ArrayindexoutofBoundsexception
B)
1 2 3
C)
1
2
3
D)
0
Question 3
A)
ArrayindexoutofBoundsexception
B)
1 2 3
C)
1
2
3
D)
//Predict the output
public class Main
{
public static void main(String[] args)
{
String[] arr = {"Welcome","to","java",“programming"};
for (int i = 0; i < arr.length; i++)
{
System.out.println(arr[i] + " ");
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
No output
Question 4
A)
Welcome to java programming
B)
“Welcome”, “to”, “java”, “programming”
C)
Compilation error
D)
No output
Question 4
A)
Welcome to java programming
B)
“Welcome”, “to”, “java”, “programming”
C)
Compilation error
D)
//Predict the output
class Main
{
public static void main(String args[])
{
int arr[]={10, 15, 20, 25, 30};
System.out.println(arr.length);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
6
Question 5
A)
0
B)
5
C)
No output
D)
6
Question 5
A)
0
B)
5
C)
No output
D)
//Predict the output
class Main
{
public static void main(String args[])
{
int[] arr = {2, 4, 6, 8, 10};
int sum = 0;
for( int a : arr)
{
sum = sum+a;
}
System.out.println(sum);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
30
Question 6
A)
Compilation error
B)
5
C)
10
D)
30
Question 6
A)
Compilation error
B)
5
C)
10
D)
//Predict the output
class Main
{
public static void main(String[] args)
{
int[] b = new int[]{ 10, 20, 30, 40};
int sum = 0;
for (int i=0; i < b.length ; i++)
{
sum = sum + b[i];
}
System.out.println(sum);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
20
Question 7
A)
100
B)
120
C)
40
D)
20
Question 7
A)
100
B)
120
C)
40
D)
// Predict the output
import java.util.*;
public class Main
{
public static void main(String args[])
{
int arr[] = {10, 20, 30, 40, 50};
System.out.println(arr[2]);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
ArrayIndexOutOfBoundsException
Question 8
A)
5
B)
Compilation error
C)
30
D)
ArrayIndexOutOfBoundsException
Question 8
A)
5
B)
Compilation error
C)
30
D)
//Predict the output
public class Main
{
public static void main(String args
{
int arr[] = {11,22,33,44,55};
for(int i=0; i < arr.length; i++)
{
System.out.print(arr[i]);
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
NullPointerException
Question 9
A)
1122334455
B)
Compilation error
C)
11 22 33 44 55
D)
NullPointerException
Question 9
A)
1122334455
B)
Compilation error
C)
11 22 33 44 55
D)
//Predict the output
public class Main
{
public static void main(String [] args)
{
String arr[] = {“Happy”,”Journey”};
for(int i=0; i < arr.length; i++)
{
System.out.println(arr[i]);
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Happy Journey
Question 10
A)
Happy
Journey
B)
No output
C)
D) HappyJourney
Happy Journey
Question 10
A)
Happy
Journey
B)
No output
C)
D) HappyJourney
//Predict the output
import java.util.*;
class Main
{
public static void main(String args[])
{
int a[];
System.out.println(a[0]);
System.out.println(a[2]);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Compile error
Question 11
A)
a[0]
a[1]
B)
0
C)
D) { }
Compile error
Question 11
A)
a[0]
a[1]
B)
0
C)
D) { }
//Predict the output
class Main
{
public static void main(String args[])
{
int a[]={2,5,6,7};
for(int i=0;i<a.length;i++)
{
if(a[i]%2!=0)
{
System.out.println(a[i]);
}
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2 5 6 7
Question 12
A)
5
7
B)
2
6
C)
D) No output
2 5 6 7
Question 12
A)
5
7
B)
2
6
C)
D) No output
//Predict the output
class Main
{
public static void main(String args[])
{
int b[]={3,4,5,8,9};
for(int i=0;i<b.length;i++)
{
if(b[i]%2==0)
{
System.out.println(b[i]);
}
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Compilation error
Question 13
A)
3
5
9
B)
4
8
C)
D) 3 4 5 8 9
Compilation error
Question 13
A)
3
5
9
B)
4
8
C)
D) 3 4 5 8 9
//Predict the output
class Main
{
public static void main(String args[])
{
int s [] = new int[10];
for (int i = 0; i < 10; ++i)
{
s[i] = i;
System.out.print(s[i] + " ");
i++;
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Compile error
Question 14
A)
0 2 4 6 8
B)
Null
C)
D) 02468
Compile error
Question 14
A)
0 2 4 6 8
B)
Null
C)
D) 02468
//Predict the output
import java.util.Arrays;
class Main
{
public static void main(String[] args)
{
int[] a = new int[]{56, 12, 28, 34, 89, 21};
Arrays.sort(a);
System.out.print(Arrays.toString(a));
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[56, 12, 28, 34, 89, 21]
Question 15
A)
[12, 21, 28, 34, 56, 89]
B)
ArrayindexoutofBoundsException
C)
D) 34
[56, 12, 28, 34, 89, 21]
Question 15
A)
[12, 21, 28, 34, 56, 89]
B)
ArrayindexoutofBoundsException
C)
D) 34
//Predict the output
class main
{
public static void main(String args[])
{
char a [] = new char[5];
for (int i = 0; i < 5; ++i)
{
a[i] = 'i';
System.out.print(a[i] + “ ");
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
0
Question 16
A)
Compilation error
B)
i i i i i
C)
D) 0 1 2 3 4
0
Question 16
A)
Compilation error
B)
i i i i i
C)
D) 0 1 2 3 4
//Predict the output
class Main
{
public static void main(String[] args)
{
double[] val = {1.6, 2.5, 3.7, 4.5};
double sum = 0;
for (int i = 0; i < val.length; i++)
{
sum += val[i];
}
System.out.println(sum);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2.5
Question 17
A)
12.3
B)
4.5
C)
D) 12.7
2.5
Question 17
A)
12.3
B)
4.5
C)
D) 12.7
//Predict the output
import java.util.Arrays;
class Main
{
public static int getSmallest(int[] a, int total)
{
Arrays.sort(a);
return a[0];
}
public static void main(String args[])
{
int a[]={11,15,10,18};
System.out.println(getSmallest(a,5));
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
11
Question 18
A)
15
B)
10
C)
D) 18
11
Question 18
A)
15
B)
10
C)
D) 18
//Predict the output
class Main
{
static void min(int a[])
{
int min=a[0];
for(int i=1;i<a.length;i++)
if(min>a[i])
min=a[i];
System.out.println(min);
}
public static void main(String args[])
{
int a[]={7,3,2,6};
min(a);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
No output
Question 19
A)
7
B)
7 3 2 6
C)
D) 2
No output
Question 19
A)
7
B)
7 3 2 6
C)
D) 2
//Predict the output
class Main
{
public static void main(String[] args)
{
double[] v1 = {2.62, 5.54, 2.7, 3.5};
double max = v1[0];
for (int i = 1; i < v1.length; i++)
{
if (v1[i] > max) max = v1[i];
}
System.out.println(max);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2.7
Question 20
A)
5.54
B)
3.5
C)
D) 2.62
2.7
Question 20
A)
5.54
B)
3.5
C)
D) 2.62
//Predict the output
import java.util.*;
class Main
{
public static void main(String[] args)
{
int[][] a = { {1, 2, 3, 4}, {5, 6, 7} };
for (int i = 0; i < a.length; ++i)
{
for(int j = 0; j < a[i].length; ++j)
{
System.out.print(a[i][j] + " ");
}
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
1 2 3 4
5 6 7
Question 21
A)
No output
B)
1 2 3 4 5 6 7
C)
D) 1234567
1 2 3 4
5 6 7
Question 21
A)
No output
B)
1 2 3 4 5 6 7
C)
D) 1234567
//Predict the output
class Main
{
public static void main(String args[])
{
int arr[][]={{1,2,3},{2,4,5},{4,7,5}};
for(int i=0;i<3;i++)
{
for(int j=0;j<3;j++)
{
System.out.print(arr[i][j]+" ");
}
System.out.println();
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
1 2 3
2 4 5
4 7 5
Question 22
A)
No output
B)
1 2 3 2 4 5 4 7 5
C)
D) 1,2,3
2,4,5
4,7,5
1 2 3
2 4 5
4 7 5
Question 22
A)
No output
B)
1 2 3 2 4 5 4 7 5
C)
D) 1,2,3
2,4,5
4,7,5
//Predict the output
import java.util.*;
class Main
{
public static void main(String args[])
{
int arr[][]={{1,2,0},{2,0,5},{0,7,1}};
for(int i=0;i<4;i++)
{
for(int j=0;j<4;j++)
{
System.out.print(arr[i][j]+" ");
}
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
1 2 0
2 0 5
0 7 1
Question 23
A)
ArrayindexoutofBoundsException
B)
120205071
C)
D) {1,2,0,2,0,5,0,7,1}
1 2 0
2 0 5
0 7 1
Question 23
A)
ArrayindexoutofBoundsException
B)
120205071
C)
D) {1,2,0,2,0,5,0,7,1}
//Predict the output
class Main
{
public static void main(String[] args)
{
int max;
int s[]={35,45,67,23,55};
max = s[0];
for(int i = 0; i < 5; i++)
{
if(max < s[i])
{
max = s[i];
}
}
System.out.println(max);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
67
Question 24
A)
35
B)
23
C)
D) 55
67
Question 24
A)
35
B)
23
C)
D) 55
//Predict the output
class main
{
public static void main(String [] args)
{
int[][] td = { {1, 2, 3, 4}, {5, 6, 7} };
int a = td[1][2];
System.out.println(a);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
Question 25
A)
7
B)
5
C)
D) 4
2
Question 25
A)
7
B)
5
C)
D) 4
//Predict the output
class Main
{
public static void main(String[] args)
{
int[][] a = {{1, 5, 3, 4}, {4, 6, 9}, {2, 7}};
System.out.println(a[0].length);
System.out.println(a[1].length);
System.out.println(a[2].length);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
4
3
2
Question 26
A)
1
4
2
B)
5
6
7
C)
D) 4
6
9
4
3
2
Question 26
A)
1
4
2
B)
5
6
7
C)
D) 4
6
9
//Predict the output
class Main
{
public static void main(String[] args)
{
int[][] a = {{1, 5}, {4, 6}, {2, 7}};
System.out.println(a[0][1]);
System.out.println(a[1][0]);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
4
7
Question 27
A)
5
4
B)
5
7
C)
D) 2
1
4
7
Question 27
A)
5
4
B)
5
7
C)
D) 2
1
//Predict the output
class Main
{
public static void main (String[] args)
{
int[][] a = new int[][3];
for (int i = 0; i < a.length; i++)
{
for (int j = 0; j < a[i].length; j++)
{
a[i][j] = j;
System.out.print(a[i][j] + " ");
}
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
0 1 2
0 1 2
Question 28
A)
0 1 2 0 1 2
B)
Invalid Syntax
C)
D) 0 1 2
0 1 2
0 1 2
Question 28
A)
0 1 2 0 1 2
B)
Invalid Syntax
C)
D) 0 1 2
//Predict the output
class Main
{
public static void main (String[] args)
{
int ar1[] = {2,0,1};
int ar2[] = {2,0,1};
if (ar1 == ar2)
System.out.println("Array 1 and 2 are identical");
else
System.out.println("Both array 1 and array 2 are
different");
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
ArrayindexoutofBoundsException
Question 29
A)
Array 1 and 2 are identical
B)
Compile error
C)
D) Both array1 and array2 are different
ArrayindexoutofBoundsException
Question 29
A)
Array 1 and 2 are identical
B)
Compile error
C)
D) Both array1 and array2 are different
//Predict the output
class Main
{
public static void main (String[] args)
{
int[][] a1 = new int[3][];
for (int i = 0; i < a1.length; i++)
{
for (int j = 0; j < a1[i].length; j++)
{
a1[i][j] = j;
System.out.print(a1[i][j] + " ");
}
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
ArrayindexoutofBoundsException
Question 30
A)
0 1 2
0 1 2
B)
NullPointerException
C)
D) 012012
ArrayindexoutofBoundsException
Question 30
A)
0 1 2
0 1 2
B)
NullPointerException
C)
D) 012012
//Predict the output
import java.util.Arrays;
class Main
{
public static void main (String[] args)
{
int ar1[] = {5, 2, 9};
int ar2[] = {5, 2, 9};
if (Arrays.equals(ar1, ar2))
System.out.println("Array 1 and 2 are same");
else
System.out.println("Both array 1 and 2 are different");
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
ArrayindexoutofBoundsException
Question 31
A)
Array 1 and 2 are same
B)
Compile error
C)
D) Both array1 and array2 are different
ArrayindexoutofBoundsException
Question 31
A)
Array 1 and 2 are same
B)
Compile error
C)
D) Both array1 and array2 are different
//Predict the output
import java.util.Arrays;
class Main
{
public static void main(String[] args)
{
String str = "Nevergiveup";
char c = str.charAt(0);
char[] charArray = str.toCharArray();
System.out.println(Arrays.toString(charArray));
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Never give up
Question 32
A)
[N,e,v,e,r,g,i,v,e,u,p]
B)
Invalid syntax
C)
D) Never
Give
up
Never give up
Question 32
A)
[N,e,v,e,r,g,i,v,e,u,p]
B)
Invalid syntax
C)
D) Never
Give
up
//Predict the output
import java.util.Arrays;
class Main
{
public static void main(String args[])
{
int[] d = {3, 12, 60, 32 };
int temp;
int ar_size = d.length;
for (int i = 0; i < (ar_size / 2); i++)
{
temp = d[i];
d[i] = d[ar_size - (i + 1)];
d[ar_size - (i + 1)] = temp;
}
System.out.println(Arrays.toString(d));
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[3, 12, 60, 32]
Question 33
A)
No output
B)
[32, 60, 12, 3]
C)
D) 0
[3, 12, 60, 32]
Question 33
A)
No output
B)
[32, 60, 12, 3]
C)
D) 0
//Predict the output
class Main
{
public static void main (String[] args)
{
int arr[]={10, 15, 20, 25, 30};
int l1, l2, temp;
l1 = arr[0];
l2 = arr[1];
if (l1 < l2)
{
temp = l1;
l1 = l2;
l2 = temp;
}
for (int i = 2; i < 5; i++)
{
if (arr[i] > l1)
{
l2 = l1;
l1 = arr[i];
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
else if (arr[i] > l2 && arr[i] != l1)
{
l2 = arr[i];
}
}
System.out.println (l1);
System.out.println (l2);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
10
15
Question 34
A)
Compile error
B)
30
25
C)
D) 25 30
10
15
Question 34
A)
Compile error
B)
30
25
C)
D) 25 30
//Predict the output
class Main
{
public static void main(String args[])
{
int b1 = sum(new int[]{2,3,4,5,8});
System.out.print(b1);
}
public static int sum(int a[])
{
int s = 0;
for(int i:a)
{
s = s+i;
}
return s;
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
44
Question 35
A)
22
B)
8
C)
D) 11
44
Question 35
A)
22
B)
8
C)
D) 11
//Predict the output
class Main
{
static int num(int b[], int a, int y)
{
int r = 0;
for (int i=0; i<a; i++)
if (y == b[i])
r++;
return r;
}
public static void main(String args[])
{
int b[] = {5,4,6,4,8,4,9,3};
int a = b.length;
int y = 4;
System.out.println(num(b, a, y));
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
3
Question 36
A)
4
B)
8
C)
D) 5
3
Question 36
A)
4
B)
8
C)
D) 5
//Predict the output
class Main
{
public static void main (String[] args)
{
int b[] = {10, 11, 12, 13};
int a = 50;
call(a,b);
System.out.println(a);
System.out.println(b[0]);
System.out.println(b[1]);
}
public static void call(int a, int b[])
{
a = a + 2;
b[0] = 60;
b[1] = 80;
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
50
60
80
Question 37
A)
52
10
11
B)
52
60
80
C)
D) 50
10
11
50
60
80
Question 37
A)
52
10
11
B)
52
60
80
C)
D) 50
10
11
//Predict the output
class Main
{
public static void main(String args[])
{
int b[][] = {{ 1, 2, 3}, { 4 , 5, 6}, { 7, 8, 9}};
int sum = 0;
for (int i = 0; i < 3; ++i)
for (int j = 0; j < 3 ; ++j)
sum = sum + b[i][j];
System.out.println(sum / 5);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
9
Question 38
A)
1 2 3
4 5 6
7 8 9
B)
0
C)
D) { }
9
Question 38
A)
1 2 3
4 5 6
7 8 9
B)
0
C)
D) { }
//Predict the output
class Main
{
public static void main(String args[])
{
int a[][]={{1,3,4},{3,4,5}};
int b[][]={{1,3,4},{3,4,5}};
int c[][]=new int[2][3];
for(int i=0;i<2;i++)
{
for(int j=0;j<3;j++)
{
c[i][j]=a[i][j]+b[i][j];
System.out.print(c[i][j]+" ");
}
System.out.println()
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Compilation error
Question 39
A)
2 6 8
6 8 10
B)
1 3 4
3 4 5
C)
D) 2 6 8 6 8 10
Compilation error
Question 39
A)
2 6 8
6 8 10
B)
1 3 4
3 4 5
C)
D) 2 6 8 6 8 10
//Predict the output
public class Main
{
public static void main(String args[])
{
int a[][] = new int[3][];
a[0] = new int[1];
a[1] = new int[2];
a[2] = new int[3];
int i, j, k = 0;
for (i = 0; i < 3; i++)
{
for (j = 0; j < i + 1; j++)
{
a[i][j] = k;
k++;
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
for (i = 0; i < 3; i++)
{
for (j = 0; j < i + 1; j++)
{
System.out.print(" " + a[i][j]);
k++;
}
System.out.println();
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Compile error
Question 40
A)
0
1 2
3 4 5
B)
0 1 2 3 4 5
C)
D) 0 1 2
3 4 5
Compile error
Question 40
A)
0
1 2
3 4 5
B)
0 1 2 3 4 5
C)
D) 0 1 2
3 4 5
THANK YOU

More Related Content

Similar to WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_01-Mar-2021_L12-Array_Mcq.pptx

Fnt software solutions placement paper
Fnt software solutions placement paperFnt software solutions placement paper
Fnt software solutions placement paperfntsofttech
 
Final JAVA Practical of BCA SEM-5.
Final JAVA Practical of BCA SEM-5.Final JAVA Practical of BCA SEM-5.
Final JAVA Practical of BCA SEM-5.Nishan Barot
 
Wap to implement bitwise operators
Wap to implement bitwise operatorsWap to implement bitwise operators
Wap to implement bitwise operatorsHarleen Sodhi
 
Java 스터디 강의자료 - 1차시
Java 스터디 강의자료 - 1차시Java 스터디 강의자료 - 1차시
Java 스터디 강의자료 - 1차시Junha Jang
 
Presentation1 computer shaan
Presentation1 computer shaanPresentation1 computer shaan
Presentation1 computer shaanwalia Shaan
 
LDCQ paper Dec21 with answer key_62cb2996afc60f6aedeb248c1d9283e5.pdf
LDCQ paper Dec21 with answer key_62cb2996afc60f6aedeb248c1d9283e5.pdfLDCQ paper Dec21 with answer key_62cb2996afc60f6aedeb248c1d9283e5.pdf
LDCQ paper Dec21 with answer key_62cb2996afc60f6aedeb248c1d9283e5.pdfVedant Gavhane
 
Data structures and algorithms unit i
Data structures and algorithms unit iData structures and algorithms unit i
Data structures and algorithms unit isonalisraisoni
 
Object oriented programming (first)
Object oriented programming (first)Object oriented programming (first)
Object oriented programming (first)Hvatrex Hamam
 
pointer.ppt hfkogfhkigfvjjgdsyhhgfdfghjb
pointer.ppt hfkogfhkigfvjjgdsyhhgfdfghjbpointer.ppt hfkogfhkigfvjjgdsyhhgfdfghjb
pointer.ppt hfkogfhkigfvjjgdsyhhgfdfghjbTUSHARGAURAV11
 
pointer.ppt hfkogfhkigfvjjgdsyhhgfdfghjb
pointer.ppt hfkogfhkigfvjjgdsyhhgfdfghjbpointer.ppt hfkogfhkigfvjjgdsyhhgfdfghjb
pointer.ppt hfkogfhkigfvjjgdsyhhgfdfghjbTUSHARGAURAV11
 
Pattern printing-in-c(Jaydip Kikani)
Pattern printing-in-c(Jaydip Kikani)Pattern printing-in-c(Jaydip Kikani)
Pattern printing-in-c(Jaydip Kikani)Jaydip JK
 

Similar to WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_01-Mar-2021_L12-Array_Mcq.pptx (20)

Java exercise1
Java exercise1Java exercise1
Java exercise1
 
Fnt software solutions placement paper
Fnt software solutions placement paperFnt software solutions placement paper
Fnt software solutions placement paper
 
&Y tgs P kii for
&Y tgs P kii for&Y tgs P kii for
&Y tgs P kii for
 
FSOFT - Test Java Exam
FSOFT - Test Java ExamFSOFT - Test Java Exam
FSOFT - Test Java Exam
 
Final JAVA Practical of BCA SEM-5.
Final JAVA Practical of BCA SEM-5.Final JAVA Practical of BCA SEM-5.
Final JAVA Practical of BCA SEM-5.
 
Wap to implement bitwise operators
Wap to implement bitwise operatorsWap to implement bitwise operators
Wap to implement bitwise operators
 
Java 스터디 강의자료 - 1차시
Java 스터디 강의자료 - 1차시Java 스터디 강의자료 - 1차시
Java 스터디 강의자료 - 1차시
 
C exam
C examC exam
C exam
 
Presentation1 computer shaan
Presentation1 computer shaanPresentation1 computer shaan
Presentation1 computer shaan
 
LDCQ paper Dec21 with answer key_62cb2996afc60f6aedeb248c1d9283e5.pdf
LDCQ paper Dec21 with answer key_62cb2996afc60f6aedeb248c1d9283e5.pdfLDCQ paper Dec21 with answer key_62cb2996afc60f6aedeb248c1d9283e5.pdf
LDCQ paper Dec21 with answer key_62cb2996afc60f6aedeb248c1d9283e5.pdf
 
Data structures and algorithms unit i
Data structures and algorithms unit iData structures and algorithms unit i
Data structures and algorithms unit i
 
Object oriented programming (first)
Object oriented programming (first)Object oriented programming (first)
Object oriented programming (first)
 
pointer.ppt hfkogfhkigfvjjgdsyhhgfdfghjb
pointer.ppt hfkogfhkigfvjjgdsyhhgfdfghjbpointer.ppt hfkogfhkigfvjjgdsyhhgfdfghjb
pointer.ppt hfkogfhkigfvjjgdsyhhgfdfghjb
 
pointer.ppt hfkogfhkigfvjjgdsyhhgfdfghjb
pointer.ppt hfkogfhkigfvjjgdsyhhgfdfghjbpointer.ppt hfkogfhkigfvjjgdsyhhgfdfghjb
pointer.ppt hfkogfhkigfvjjgdsyhhgfdfghjb
 
Pattern printing-in-c(Jaydip Kikani)
Pattern printing-in-c(Jaydip Kikani)Pattern printing-in-c(Jaydip Kikani)
Pattern printing-in-c(Jaydip Kikani)
 
Java file
Java fileJava file
Java file
 
Java file
Java fileJava file
Java file
 
pattern-printing-in-c.pdf
pattern-printing-in-c.pdfpattern-printing-in-c.pdf
pattern-printing-in-c.pdf
 
7
77
7
 
Java Program
Java ProgramJava Program
Java Program
 

More from MaruMengesha

WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_15-Mar-2021_L15...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_15-Mar-2021_L15...WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_15-Mar-2021_L15...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_15-Mar-2021_L15...MaruMengesha
 
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_15-Feb-2021_L6-...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_15-Feb-2021_L6-...WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_15-Feb-2021_L6-...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_15-Feb-2021_L6-...MaruMengesha
 
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_11-Feb-2021_L5-...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_11-Feb-2021_L5-...WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_11-Feb-2021_L5-...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_11-Feb-2021_L5-...MaruMengesha
 
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_10-Feb-2021_L4_...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_10-Feb-2021_L4_...WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_10-Feb-2021_L4_...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_10-Feb-2021_L4_...MaruMengesha
 
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_04-Feb-2021_L2_...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_04-Feb-2021_L2_...WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_04-Feb-2021_L2_...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_04-Feb-2021_L2_...MaruMengesha
 
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_03-Mar-2021_L13...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_03-Mar-2021_L13...WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_03-Mar-2021_L13...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_03-Mar-2021_L13...MaruMengesha
 
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_03-Feb-2021_L1_...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_03-Feb-2021_L1_...WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_03-Feb-2021_L1_...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_03-Feb-2021_L1_...MaruMengesha
 
Chemistry Student G9.pdf chemistry text book
Chemistry Student G9.pdf chemistry text bookChemistry Student G9.pdf chemistry text book
Chemistry Student G9.pdf chemistry text bookMaruMengesha
 
eco ppt.pptx Economics presentation Assignment
eco ppt.pptx Economics presentation Assignmenteco ppt.pptx Economics presentation Assignment
eco ppt.pptx Economics presentation AssignmentMaruMengesha
 
G12-Agriculture-STB-2023-web.pdf Agriculture text book
G12-Agriculture-STB-2023-web.pdf Agriculture text bookG12-Agriculture-STB-2023-web.pdf Agriculture text book
G12-Agriculture-STB-2023-web.pdf Agriculture text bookMaruMengesha
 

More from MaruMengesha (10)

WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_15-Mar-2021_L15...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_15-Mar-2021_L15...WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_15-Mar-2021_L15...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_15-Mar-2021_L15...
 
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_15-Feb-2021_L6-...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_15-Feb-2021_L6-...WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_15-Feb-2021_L6-...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_15-Feb-2021_L6-...
 
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_11-Feb-2021_L5-...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_11-Feb-2021_L5-...WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_11-Feb-2021_L5-...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_11-Feb-2021_L5-...
 
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_10-Feb-2021_L4_...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_10-Feb-2021_L4_...WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_10-Feb-2021_L4_...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_10-Feb-2021_L4_...
 
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_04-Feb-2021_L2_...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_04-Feb-2021_L2_...WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_04-Feb-2021_L2_...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_04-Feb-2021_L2_...
 
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_03-Mar-2021_L13...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_03-Mar-2021_L13...WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_03-Mar-2021_L13...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_03-Mar-2021_L13...
 
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_03-Feb-2021_L1_...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_03-Feb-2021_L1_...WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_03-Feb-2021_L1_...
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_03-Feb-2021_L1_...
 
Chemistry Student G9.pdf chemistry text book
Chemistry Student G9.pdf chemistry text bookChemistry Student G9.pdf chemistry text book
Chemistry Student G9.pdf chemistry text book
 
eco ppt.pptx Economics presentation Assignment
eco ppt.pptx Economics presentation Assignmenteco ppt.pptx Economics presentation Assignment
eco ppt.pptx Economics presentation Assignment
 
G12-Agriculture-STB-2023-web.pdf Agriculture text book
G12-Agriculture-STB-2023-web.pdf Agriculture text bookG12-Agriculture-STB-2023-web.pdf Agriculture text book
G12-Agriculture-STB-2023-web.pdf Agriculture text book
 

Recently uploaded

Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...aditisharan08
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio, Inc.
 
What is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWhat is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWave PLM
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfjoe51371421
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
 
What is Binary Language? Computer Number Systems
What is Binary Language?  Computer Number SystemsWhat is Binary Language?  Computer Number Systems
What is Binary Language? Computer Number SystemsJheuzeDellosa
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackVICTOR MAESTRE RAMIREZ
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
 
Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - InfographicHr365.us smith
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEOrtus Solutions, Corp
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 

Recently uploaded (20)

Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Naraina Delhi 💯Call Us 🔝8264348440🔝
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
 
What is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWhat is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need It
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdf
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
What is Binary Language? Computer Number Systems
What is Binary Language?  Computer Number SystemsWhat is Binary Language?  Computer Number Systems
What is Binary Language? Computer Number Systems
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStack
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
 
Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - Infographic
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 

WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_01-Mar-2021_L12-Array_Mcq.pptx

Editor's Notes

  1. 1st slide (Mandatory)
  2. Output: Total elements in array is: 5
  3. BIG Options
  4. BIG Options
  5. Output: Total elements in array is: 5
  6. BIG Options
  7. BIG Options
  8. Output: Hai Welcome to java Programming
  9. BIG Options
  10. BIG Options
  11. Output: Hai Welcome to java Programming
  12. BIG Options
  13. BIG Options
  14. Output: Total elements in array is: 5
  15. BIG Options
  16. BIG Options
  17. BIG Options
  18. BIG Options
  19. BIG Options
  20. BIG Options
  21. BIG Options
  22. BIG Options
  23. BIG Options
  24. BIG Options
  25. BIG Options
  26. BIG Options
  27. BIG Options
  28. BIG Options
  29. BIG Options
  30. BIG Options
  31. BIG Options
  32. BIG Options
  33. BIG Options
  34. BIG Options
  35. BIG Options
  36. BIG Options
  37. BIG Options
  38. BIG Options
  39. BIG Options
  40. BIG Options
  41. BIG Options
  42. BIG Options
  43. BIG Options
  44. BIG Options
  45. BIG Options
  46. BIG Options
  47. BIG Options
  48. BIG Options
  49. BIG Options
  50. BIG Options
  51. BIG Options
  52. BIG Options
  53. BIG Options
  54. BIG Options
  55. BIG Options
  56. BIG Options
  57. BIG Options
  58. BIG Options
  59. BIG Options
  60. BIG Options
  61. BIG Options
  62. BIG Options
  63. BIG Options
  64. BIG Options
  65. BIG Options
  66. BIG Options
  67. BIG Options
  68. BIG Options
  69. BIG Options
  70. BIG Options
  71. BIG Options
  72. BIG Options
  73. BIG Options
  74. BIG Options
  75. BIG Options
  76. BIG Options
  77. BIG Options
  78. BIG Options
  79. BIG Options
  80. BIG Options
  81. BIG Options
  82. BIG Options
  83. BIG Options
  84. BIG Options
  85. BIG Options
  86. BIG Options
  87. Thank you slide