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.*; | |
class ReadingPractice | |
{ | |
/* What is the return value of |mystery("hi")|? | |
* | |
* (A) hi | |
* (B) hi5 | |
* (C) hi55 | |
* (D) mn |
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 android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import android.view.MenuItem; | |
import android.view.View; | |
import android.widget.PopupMenu; | |
import android.widget.Toast; | |
public class MainActivity extends AppCompatActivity { | |
@Override |
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
<?php | |
function phone_format( $phone ) | |
{ | |
$retVal = $phone; | |
//telefon ile ilgili islemler | |
if (0 === strlen($retVal)) {//telefon numarasi yoksa hic ugrasma | |
return $retVal; | |
} | |
OlderNewer