This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Please write your full name and university roll number in the comments like this | |
Divyansh Bhardwaj, 191500123 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Arrays; | |
import java.util.HashMap; | |
import java.util.Map; | |
import java.util.Scanner; | |
public class Runnersup { | |
public static void main(String[] args) { | |
Scanner sc=new Scanner(System.in); | |
int zz=sc.nextInt(); | |
sc.nextLine(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Created by IntelliJ IDEA Ultimate, 2020 | |
* User: dbc2201 | |
* Date: 16/01/20 | |
* Time: 8:52 AM | |
*/ | |
package recursion; | |
import java.math.BigInteger; |
- Introduction and need for Mobile Application Development
- Mobility Concept
- Mobile Structure and characteristics
- Mobility Landscape
- Mobile Platforms
- Mobile Application Development (Principles & Uses)
- Overview of Android Platform
- UI in Android
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package list; | |
import java.util.Arrays; | |
public class ListADT | |
{ | |
int[] list = new int[10]; | |
int bottom = -1; | |
void insert(int value) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package faltoo; | |
import java.util.Arrays; | |
public class Faltoo | |
{ | |
int[] list = new int[10]; | |
public static void main(String[] args) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package stack; | |
import java.util.Arrays; | |
public class Stack | |
{ | |
int topOfStack = -1; | |
int[] stack = new int[10]; | |
int size = stack.length; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package list; | |
import java.util.Arrays; | |
public class DemoList | |
{ | |
int[] list = new int[10]; | |
public static void main(String[] args) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package list; | |
public class DemoList | |
{ | |
int[] list = new int[10]; | |
public static void main(String[] args) | |
{ | |
DemoList list1 = new DemoList(); |
NewerOlder