This file contains hidden or 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <resources> | |
| <color name="colorPrimary">#3F51B5</color> | |
| <color name="colorPrimaryDark">#303F9F</color> | |
| <color name="colorAccent">#FF4081</color> | |
| <color name="white">#FFFFFF</color> | |
| <color name="silver">#C0C0C0</color> | |
| <color name="gray">#808080</color> | |
| <color name="black">#000000</color> | |
| <color name="red">#FF0000</color> |
This file contains hidden or 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
| Android Version | |
| Android 1.1 | |
| Android 1.5 (Cupcake) | |
| Android 1.6 (Donut) | |
| Android 2.0 (Eclair) | |
| Android 2.0.1 (Eclair) | |
| Android 2.1 (Eclair) | |
| Android 2.2 (Froyo) | |
| Android 2.3 (Gingerbread) |
This file contains hidden or 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.Scanner; | |
| class CaseChange { | |
| public static void main(String args[] ) throws Exception | |
| { | |
| int i; | |
| Scanner s = new Scanner(System.in); | |
| String str; | |
| System.out.println("Enter String : "); | |
| str = s.next(); | |
| char arr[] = str.toCharArray(); |
This file contains hidden or 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
| #include<stdio.h> | |
| int main() | |
| { | |
| int i,n,key; | |
| printf("Enter total no of element : "); | |
| scanf("%d",&n); | |
| int arr[n]; | |
| for( i=0;i<n;i++) | |
| { |
This file contains hidden or 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.awt.event.ActionEvent; | |
| import java.awt.event.ActionListener; | |
| import javax.swing.JButton; | |
| import javax.swing.JFrame; | |
| public class SessionBase extends JFrame | |
| { | |
| public SessionBase() |
This file contains hidden or 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.awt.event.ActionEvent; | |
| import java.util.Random; | |
| import javax.swing.JButton; | |
| import javax.swing.JFrame; | |
| import javax.swing.JLabel; | |
| public class RandomPIN extends JFrame | |
| { |
This file contains hidden or 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.math.BigInteger; | |
| import java.security.MessageDigest; | |
| import java.security.NoSuchAlgorithmException; | |
| import java.util.Scanner; | |
| public class EncryptedText | |
| { | |
| public EncryptedText() throws NoSuchAlgorithmException |
This file contains hidden or 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
| #include<stdio.h> | |
| #include<stdlib.h> | |
| int jr(); | |
| int sr(); | |
| int clg(); | |
| int bigclg(); | |
| int first(); | |
| int second(); | |
| int third(); | |
| int fourth(); |
This file contains hidden or 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
| #include<stdio.h> | |
| #include<string.h> | |
| #include<conio.h> | |
| #include<stdlib.h> | |
| char news(); | |
| char reverce(); | |
| char copy(); | |
| char comp(); | |
| char lwr(); | |
| char upper(); |
This file contains hidden or 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
| #include<stdio.h> | |
| #include<conio.h> | |
| int main() | |
| { | |
| double discount; | |
| float paid; | |
| int amt; | |
| char ans='y'; | |
| char sex='m'; |
NewerOlder