UVA - 401 - Palindromes

8:49 PM | , , , , ,



There is a problem on UVA online judge which called Palindrome. A palindrome is a word, phrase, number, or other sequence of units that may be read the same way in either direction, with general allowances for adjustments to punctuation and word dividers.Composing literature in palindromes is an example of constrained writing

A regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string "ABCDEDCBA" is a palindrome because it is the same when the string is read from left to right as when the string is read from right to left.


A mirrored string is a string for which when each of the elements of the string is changed to its reverse (if it has a reverse) and the string is read backwards the result is the same as the original string. For example, the string "3AIAE" is a mirrored string because "A" and "I" are their own reverses, and "3" and "E" are each others' reverses.


A mirrored palindrome is a string that meets the criteria of a regular palindrome and the criteria of a mirrored string. The string "ATOYOTA" is a mirrored palindrome because if the string is read backwards, the string is the same as the original and because if each of the characters is replaced by its reverse and the result is read backwards, the result is the same as the original string. Of course, "A""T""O", and "Y" are all their own reverses.


A list of all valid characters and their reverses is as follows.


CharacterReverseCharacterReverseCharacterReverse
AAMMYY
BNZ5
COO11
DP2S
E3Q3E
FR4
GS25Z
HHTT6
IIUU7
JLVV88
KWW9
LJXX



Note that O (zero) and 0 (the letter) are considered the same character and therefore ONLY the letter "0" is a valid character.

Input 

Input consists of strings (one per line) each of which will consist of one to twenty valid characters. There will be no invalid characters in any of the strings. Your program should read to the end of file.

Output 

For each input string, you should print the string starting in column 1 immediately followed by exactly one of the following strings.

STRINGCRITERIA
" -- is not a palindrome."if the string is not a palindrome and is not a mirrored string
" -- is a regular palindrome."if the string is a palindrome and is not a mirrored string
" -- is a mirrored string."if the string is not a palindrome and is a mirrored string
" -- is a mirrored palindrome."if the string is a palindrome and is a mirrored string

Note that the output line is to include the -'s and spacing exactly as shown in the table above and demonstrated in the Sample Output below.
In addition, after each output line, you must print an empty line.

Sample Input 

NOTAPALINDROME 
ISAPALINILAPASI 
2A3MEAS 
ATOYOTA

Sample Output 

NOTAPALINDROME -- is not a palindrome.
 
ISAPALINILAPASI -- is a regular palindrome.
 
2A3MEAS -- is a mirrored string.
 
ATOYOTA -- is a mirrored palindrome.



Source Code with java



import java.util.Scanner;
class Palindrome {
    public static void main(String[] args) {
        Scanner s=new Scanner(System.in);
        String mir1="AEHIJLMOSTUVWXYZ12358";
        String mir2="A3HILJMO2TUVWXY51SEZ8";
        boolean NP,RP,MP,MS; //NP=Not Poly RP=Regular Poly
        //MP=Mirror Poly  MS=Mirror String
        String hasil;
        while(s.hasNext()){
            //if(s.hasNextLine()) System.out.println("Pindah baris");
            String asli=s.nextLine();          
            String kata=asli;
            kata.replaceAll("0", "O");
            int i=0,k,N=kata.length();
            k=N/2;
            int l=-1,m=-1;
            if(N%2==0) k++;
            MP=true;
            RP=true;
            NP=true;
            MS=true;
            while((i<=k)){
                l=mir1.indexOf(kata.charAt(i));
                m=mir2.indexOf(kata.charAt(N-i-1));
                if(((kata.charAt(i)==kata.charAt(N-i-1)))&&((MP==true)||(RP==true))){                  
                    MP=false;
                    RP=true;
                    if((l>=0)&&(m>=0)){
                        if(mir1.charAt(l)==mir2.charAt(m)){
                            MP=true;                      
                        }
                    }                      
                }else{
                    MP=false;
                    RP=false;
                    if((l>=0)&&(m>=0)){
                        if((mir1.charAt(l)==mir2.charAt(m))&&(MS==true)){
                            MS=true;                      
                        }
                    }else{
                        MS=false;
                    }
                }
                i++;
            }
            System.out.print(asli+" -- ");
            if(MP==true){
                System.out.println("is a mirrored palindrome");
            }else if(RP==true){
                System.out.println("is a regular palindrome");
            }else if(MS==true){
                System.out.println("is a mirrored string");
            }else{
                System.out.println("is not a palindrome");
            }
        }
    }
}






Read More

UVA – 575 – Skew Binary Code

8:29 PM | , , , , , , ,



There is a problem on UVA online judge which called Skew Binary Code Problem. When a number is expressed in decimal, the k-th digit represents a multiple of 10k. (Digits are numbered from right to left, where the least significant digit is number 0.) For example,

\begin{displaymath}81307_{10} = 8 \times 10^4 + 1 \times 10^3 + 3 \times 10^2 + ...
...mes 10^1 +
7 \times 10 0 = 80000 + 1000 + 300 + 0 + 7
= 81307.
\end{displaymath}


When a number is expressed in binary, the k-th digit represents a multiple of 2k. For example,

\begin{displaymath}10011_2 = 1 \times 2^4 + 0 \times 2^3 + 0 \times 2^2 + 1 \times 2^1 +
1 \times 2^0 = 16 + 0 + 0 + 2 + 1 = 19.
\end{displaymath}


In skew binary, the k-th digit represents a multiple of 2k+1 - 1. The only possible digits are 0 and 1, except that the least-significant nonzero digit can be a 2. For example,

\begin{displaymath}10120_{skew} = 1 \times (2^5 - 1) + 0 \times (2^4-1) + 1 \tim...
...2 \times (2^2-1) + 0 \times (2^1-1)
= 31 + 0 + 7 + 6 + 0 = 44.
\end{displaymath}


The first 10 numbers in skew binary are 0, 1, 2, 10, 11, 12, 20, 100, 101, and 102. (Skew binary is useful in some applications because it is possible to add 1 with at most one carry. However, this has nothing to do with the current problem.)

Input 

The input file contains one or more lines, each of which contains an integer n. If n = 0 it signals the end of the input, and otherwise n is a nonnegative integer in skew binary.

Output 

For each number, output the decimal equivalent. The decimal value of n will be at most 231 - 1 = 2147483647.

Sample Input 

10120
200000000000000000000000000000
10
1000000000000000000000000000000
11
100
11111000001110000101101102000
0

Sample Output 

44
2147483646
3
2147483647
4
7
1041110737



Code with java programming


import java.util.Scanner;
public class BinarySkew {
    public static void main(String[] args) {
        Scanner s=new Scanner(System.in);
        String bil="";
        while(!(bil.equalsIgnoreCase("0"))){
            bil=s.next();
            int hasil=0;
            for (int i = 0; i < bil.length(); i++) {
                hasil+=(Integer.parseInt(bil.substring(i, i+1))*(Math.pow(2, bil.length()-i)-1));
            }
            System.out.println(hasil);
        }
    }
}



Output

















Read More

Master Scholarships for International Students, University of Skövde, Sweden

9:59 PM | , ,

The University of Skövde offers scholarships to students attending a Master’s programme at our university. The scholarships are tuition fee waivers of SEK 60 000 / year (50% of the tuition fee), and the amount will be deducted from the tuition fee when you receive the invoice. The scholarship granting criterion is academic merits. The scholarship can only be awarded to tuition paying students. Please note that you have to be able to finance the rest of the tuition fee yourself and to cover all the living expenses during your stay in Sweden.
If you want to apply for a scholarship at the University of Skövde please fill in the Scholarship Application Form. Please read the information below with the list of countries (categories 1 and 2) before you apply for a scholarship.
The scholarship applications for the academic year 2012-2013 will be analysed in two batches according to the following dates:
  1. Scholarship applications received until March 1st, 2012
  2. Scholarship applications received from March 2nd until May 15th, 2012
We will not accept scholarship applications for the academic year 2012-2013 after May 15th, 2012.
The results of the first batch of applications will be announced on March 20th, 2012 and the second one on May 31st, 2012.
The students who apply until March 1st and are not awarded a scholarship in the first batch will have their applications reanalysed in the second batch.
Please note: students from Category 1 (see list below) can only apply for the Swedish Institute Study Scholarship, while students from Category 2 (see list below) can apply to both the scholarships from the University of Skövde and the Swedish Institute Study Scholarship.
Category 1: Bangladesh, Bolivia, Burkina FasoCambodiaEthiopia, Kenya, Mali, Mozambique, Rwanda,Tanzania, Uganda and Zambia.
Category 2: Candidates with citizenship from countries on the DAC list of ODA recipients, except the ones listed on Category 1 and the other following exceptions: Albania, Belarus, Bosnia-Herzegovina, Former Yugoslav Republic of Macedonia, Georgia, Kosovo, Moldova, Russia, Serbia, Turkey and Ukraine.
For more information, please visit official website: www.his.se
--==ooOOOoo==--

Read More

Master Scholarships in Mathematics and Computer Science, Netherlands

9:57 PM | , , ,

Eindhoven University of Technology
Faculty of Mathematics and Computer Science
P.O. Box 513, 5600 MB Eindhoven, The Netherlands
Phone: 31 – (0)40-2474747 Fax: 31 – (0)40-2441692
E-mail: io@tue.nl Internet: w3.bwk.tue.nl/en/
Business Information Systems
  • Leading to: MSc
  • Course duration: 2 years
  • Next course begins: 1 September 2012; 1 February 2013
  • Academic application deadlines: 31 January 2012; 24 April 2012
  • Fellowship application deadline: 7 February 2012; 1 May 2012
  • Educational requirements: BSc in computer science or technology management (or equivalent).
  • Other requirements: Written request: Letter of motivation. Grade average: For admission a minimum of 75% CGPA. For entry to Talent Scholarship Program a minimum of 80% CGPA. gradelist: languagetest:
  • Gender category: 4. Subject is not gender-oriented
Computer Science and Engineering
  • Leading to: MSc
  • Course duration: 2 years
  • Next course begins: 1 September 2012
  • Academic application deadlines: 31 January 2012
  • Fellowship application deadline: 7 February 2012
  • Educational requirements: BSc in computer science – with sufficient mathematics, logic computer programming, computer science.
  • Other requirements: Written request: Letter of motivation grade average: For admission a minimum of 75% CGPA. For entry to Talent Scholarship Program a minimum of 80% CGPA. Gradelist: Languagetest:
  • Gender category: 4. Subject is not gender-oriented
Industrial and Applied Mathematics
  • Leading to: MSc
  • Course duration: 2 years
  • Next course begins: 1 September 2012
  • Academic application deadlines: 31 January 2012
  • Fellowship application deadline: 7 February 2012
  • Educational requirements: BSc in mathematics, stochastics or in engineering with a mathematicallyoriented programme.
  • Other requirements: Written request: Letter of motivation grade average: For admission a minimum of 75% CGPA. For entry to Talent Scholarship Program a minimum of 80% CGPA. Gradelist: Languagetest:
  • Gender category: 4. Subject is not gender-oriented
Leiden University
P.O. Box 9500, 2300 RA Leiden, The Netherlands
Phone: 31 – (0)71-527 1111
E-mail: study@leidenuniv.nl Internet: www.leiden.edu
Computer Science
  • Leading to: MSc
  • Course duration: 2 years
  • Next course begins: 1 September 2012; 1 February 2013
  • Academic application deadlines: 1 December 2011; 24 April 2012
  • Fellowship application deadline: 7 February 2012; 1 May 2012
  • Educational requirements: BSc degree in Computer Science or a relevant field
  • Gender category: 4. Subject is not gender-oriented
ICT in Business
  • Leading to: MSc
  • Course duration: 2 years
  • Next course begins: 1 September 2012; 1 February 2013
  • Academic application deadlines: 1 December 2011; 24 April 2012
  • Fellowship application deadline: 7 February 2012; 1 May 2012
  • Educational requirements: BSc degree in Computer Science, ICT in Business or a relevant field.
  • Gender category: 4. Subject is not gender-oriented
Mathematics
  • Leading to: MSc
  • Course duration: 2 years
  • Next course begins: 1 September 2012; 1 February 2013
  • Academic application deadlines: 1 December 2011; 24 April 2012
  • Fellowship application deadline: 7 February 2012; 1 May 2012
  • Educational requirements: BSc degree in Mathematics or with a BSc major in Mathematics, or a relevant field.
  • Gender category: 4. Subject is not gender-oriented
Media Technology
  • Leading to: MSc
  • Course duration: 2 years
  • Next course begins: 1 September 2012; 1 February 2013
  • Academic application deadlines: 1 December 2011; 24 April 2012
  • Fellowship application deadline: 7 February 2012; 1 May 2012
  • Educational requirements: BSc degree in Computer Science or any other relevant field.
  • Gender category: 4. Subject is not gender-oriented
Maastricht University
Bouillonstraat 8-10, 6211 LH Maastricht, The Netherlands
Phone: 31 – (0)43-388 3455
E-mail: info-dke@maastrichtuniversity.nl Internet:
http://www.maastrichtuniversity.nl/web/show/id=521206/langid=42
Artificial Intelligence
  • Leading to: MSc
  • Course duration: 1 year
  • Next course begins: 1 September 2012
  • Academic application deadlines: 31 January 2012
  • Fellowship application deadline: 7 February 2012
  • Educational requirements: Applicants to DKE master’s programmes must have a Bachelor of Science degree in Knowledge Engineering or a field related to Knowledge Engineering (e.g. Mathematics, Computer Science, Artificial Intelligence).
  • Other requirements: Proof of English proficiency in the form of an IELTS test or TOEFL unless the student is a native English speaker or the student’s secondary education was in an EU/EEA country or the student’s secondary education in a non-EU/EEA country was taught in English; Proof of analytical writing and quantitative reasoning abilities; A motivation essay of 2 pages a request for credit transfer in the event that applicants have already followed a course in higher education.
  • Gender category: 4. Subject is not gender-oriented
Operations Research
  • Leading to: MSc
  • Course duration: 2 years
  • Next course begins: 1 September 2012
  • Academic application deadlines: 31 January 2012
  • Fellowship application deadline: 7 February 2012
  • Educational requirements: Applicants to DKE master’s programmes must have a Bachelor of Science degree in Knowledge Engineering or a field related to Knowledge Engineering (e.g. Mathematics, Computer Science, Artificial Intelligence).
  • Other requirements: Proof of English proficiency in the form of an IELTS test or TOEFL ; Proof of analytical writing and quantitative reasoning abilities. A motivation essay of 2 pages a request for credit transfer in the event that applicants have already followed a course in higher education
  • Gender category: 4. Subject is not gender-oriented
NHTV Breda University of Applied Sciences
Academy for Digital Entertainment
P.O. Box 3917, 4800 DX Breda, The Netherlands
Phone: 31 – (0)76-5302203 Fax: 31 – (0)76-5302205
E-mail: international.office@nhtv.nl Internet: www.nhtv.nl
Master in Media Innovation
  • Leading to: Master’s degree
  • Course duration: 1 year
  • Next course begins: 1 September 2012
  • Academic application deadlines: 31 January 2012
  • Fellowship application deadline: 7 February 2012
  • Educational requirements: Bachelor’s Degree in the field of Business Administration, Media Studies, Communication Studies, ICT, or another media-related field.
  • Gender category: 4. Subject is not gender-oriented
Radboud University Nijmegen
Faculty of Science
P.O. Box 9010, 6500 GL Nijmegen, The Netherlands
Phone: 31 – (0)24-3653342 Fax: 31 – (0)24-3652888
E-mail: h.nijssen@science.ru.nl
Internet: www.ru.nl/english/education/programmes/
Computing Science
  • Leading to: MSc
  • Course duration: 2 years
  • Next course begins: 1 September 2012
  • Academic application deadlines: 31 January 2012
  • Fellowship application deadline: 7 February 2012
  • Educational requirements: Bachelor degree in computing science or equivalent.
  • Other requirements: Grade list
  • Gender category: 4. Subject is not gender-oriented
Information Science
  • Leading to: MSc
  • Course duration: 1 year
  • Next course begins: 1 September 2012
  • Academic application deadlines: 31 January 2012
  • Fellowship application deadline: 7 February 2012
  • Educational requirements: Bachelor degree in information science or in computing science or equivalent.
  • Other requirements: Grade list
  • Gender category: 4. Subject is not gender-oriented
University of Twente
P.O. Box 217, 7500 AE Enschede, The Netherlands
Phone: 31 – (0)53-4893836 Fax: 31 – (0)53-4891104
E-mail: master@utwente.nl
Internet: http://www.universiteittwente.nl/education/ewi
Applied Mathematics
  • Leading to: MSc
  • Course duration: 24 months
  • Next course begins: 24 August 2012
  • Academic application deadlines: 31 January 2012
  • Fellowship application deadline: 7 February 2012
  • Educational requirements: BSc in Mathematics or related field
  • Gender category: 4. Subject is not gender-oriented
  • Leading to: MSc
  • Course duration: 2 years
  • Next course begins: 24 August 2012; 1 February 2013
  • Academic application deadlines: 31 January 2012; 24 April 2012
  • Fellowship application deadline: 7 February 2012; 1 May 2012
  • Educational requirements: BSc degree, computer science, information management, industrial engineering, business information technology.
  • Other requirements: CGPA of at least 70-75%. Letter of motivation, resume, proof of your skills in mathematics and statistics, proof of your skills in scientific research knowledge, proof of your skills in computer science and in business administration
  • Gender category: 4. Subject is not gender-oriented
Computer Science
  • Leading to: MSc
  • Course duration: 24 months
  • Next course begins: 24 August 2012
  • Academic application deadlines: 31 January 2012
  • Fellowship application deadline: 7 February 2012
  • Educational requirements: BSc in Computer Science or related field
  • Gender category: 4. Subject is not gender-oriented
Embedded Systems
  • Leading to: MSc
  • Course duration: 24 months
  • Next course begins: 24 August 2012
  • Academic application deadlines: 31 January 2012
  • Fellowship application deadline: 7 February 2012
  • Educational requirements: BSc in Computer Science or Electrical Engineering or related fields
  • Gender category: 4. Subject is not gender-oriented
Human Media Interaction
  • Leading to: MSc
  • Course duration: 24 months
  • Next course begins: 24 August 2012
  • Academic application deadlines: 31 January 2012
  • Fellowship application deadline: 7 February 2012
  • Educational requirements: BSc in Computer Science, or BSc in Artificial Intelligence, or BSc in Creative Technology or related fields
  • Gender category: 4. Subject is not gender-oriented
Systems and Control
  • Leading to: MSc
  • Course duration: 24 months
  • Next course begins: 24 August 2012
  • Academic application deadlines: 31 January 2012
  • Fellowship application deadline: 7 February 2012
  • Educational requirements: BSc in Applied Mathematics, Electrical Engineering, Computer Science or related fields
  • Gender category: 4. Subject is not gender-oriented
Telematics
  • Leading to: MSc
  • Course duration: 24 months
  • Next course begins: 24 August 2012
  • Academic application deadlines: 31 January 2012
  • Fellowship application deadline: 7 February 2012
  • Educational requirements: BSc in Computer Science or Electrical Engineering, or related fields
  • Gender category: 4. Subject is not gender-oriented
--==ooOOOoo==--

Read More

Undergraduate Scholarships, International Hotel Management, Stenden University Bali, Indonesia

9:53 PM | ,

After a successful first year, we continue our scholarship program for the coming academic year 2012/2013. Outstanding Indonesian students can be granted full or partial academic scholarship that can help reduce the financial burden. This scholarship gives you a chance to join ourInternational Hotel Management program with a Double Bachelor degree upon graduation. Our program is recognized internationally for its high educational standards, which gives our graduates excellent job opportunities worldwide. If you have first-rate study results, if you are highly motivated to study International Hotel Management in Baliand if your level of English is sufficient, you can apply for our scholarship. The scholarship can last for the entire period of your study, depending on your study results.
Scholarships offer
Stenden University Bali offers two types of scholarships for the academic year 2012/2013:
Full scholarship
A scholarship that covers the complete tuition fee (of USD 4,900 per year) and all other study related costs, such as books, uniforms and other learning materials, equating up to USD 20,000 in savings over four years. This scholarship will be rewarded only to the very best student(s). You should be highly talented and have outstanding study results.
Partial scholarship
A scholarship that consists of a discount of USD 1,000 per year on the tuition fee.
Both scholarships are for at least one academic year. However, if your study results at Stenden University Bali are excellent (full scholarship) or above average (partial scholarship), the scholarship will be extended to the following academic years as well.
Selection criteria
Stenden University Bali has strict admission requirements for studying International Hotel Management. Apart from these admissions criteria, you should meet the following criteria in order to receive one of our scholarships:
Full Scholarship
  • Indonesian citizen
  • Belong to the top 10% of your class
  • Ambitious and highly motivated individual
  • Showcasing a strong commitment to furthering a career in International Hotel Management
Partial Scholarship
  • Indonesian citizen
  • Belong to the top 25% of your class
  • Ambitious and highly motivated individual
  • Showcasing a strong commitment to furthering a career in International Hotel Management
The above characteristics should be demonstrated in the documents that you send with your application and in the interview we will have with selected candidates.
Admission requirements
The admission process for the International Hospitality Management programme requires the fulfillment of the following parts:
  1. Academic requirements
  2. Language requirements
Academic Requirements for the IHM Programme (BBA)
  • High school graduation diploma from an accredited institution of secondary education;
  • Associate degrees, Diplomas, BA / MA degrees in economic and non-economic fields.
Each application will be evaluated and considered for approval on an individual base by the Admission Committee of Stenden University Bali. They will have a look at the grading sheet of your previous education and go through the scores subject by subject. If the Committee finds it necessary it will require you to undergo a personal or telephonic interview.
As the International Hotel Management program at Stenden University Bali is identical to that of our parent campuses in The Netherlands all applications will be cross referenced by our central admissions committee in Leeuwarden.
High school curriculum profile
The IHM course offered is a business management programme in the economic field. Although for international students the secondary school subjects requirements are evaluated in a flexible manner, the following subjects are generally considered as pre-requisites subjects for a business management education:
Language Requirements for the IHM Programme (BBA)
  • An Academic IELTS-test with Band score 6.0 and no sub scores under 5; visit www.ielts.org for more information.
  • A TOEFL-test of 550 (paper-based) or 213 (computer-based). The TOEFL is only accepted when the IELTS-test is not offered in the applicants’ country of residence. Stenden University’s TOEFL code is 9215; visit www.toefl.org for more information.
  • Applicants who are native speakers of English or who have successfully undertaken secondary or post-secondary courses -for a minimum of two years- where English was the language of instruction are not required to submit an IELTS of TOEFL test score.
How to apply
Application for the scholarship program should be completed together with the application for the program International Hotel Management.
  • Prepare the standard documents for application for International Hotel Management program as follows:
    • A completed and signed Application Form
    • Original copy of IELTS or TOEFL results from attesting your knowledge of English
    • Certified copy of your diploma (in English) of your school/college/university education
    • Certified copy of grades-sheet (in English)
    • Curriculum Vitae (in English)
    • Four recent passport-type colour photos
    • Two full sized photographs (formal dress code)
    • Two copies of your KTP
    • Copy of academic awards of honours, if available
  • Fill in the Scholarship Application Form
  • Add your motivation letter explaining why you think you should earn a partial or full scholarship. The motivation letter can be up to 1500 words. We will judge the content of the letter, but also your level of English, your writing style, structure of the letter and argumentation. Make sure your motivation letter is a true representation of your best writing
  • Add all documents that proof your excellence, talent and motivation. Examples of documents are:
    • A statement of the school that you belong to the top 10% or top 25% of your class;
    • One academic reference of a teacher, principle or company demonstrating your academic competence;
    • One personal reference of a teacher, principle or company demonstrating your good character and motivation;
    • Certificates of extra courses you attended, contests you won, etc;
Please keep in mind that we will look at the content and quality of the documents, NOT at the quantity. So only hand in documents that are useful and to the point.
Only students that hand in all four types of documents will be considered candidates for the scholarship program.
Please send all documents via e-mail to stendenbali@stenden.com.
Selection procedure
Stenden University Bali has four intakes a year for the International Hotel Management program. The selection procedure for the scholarships for students starting in September (first intake) and November (second intake) will be as follows:
  • Application closes June 22nd 2012
  • All applicants will receive a notification if they are shortlisted or not, on the July 6th 2012
  • Interviews with shortlisted candidates are held between July 9th and July 20th 2012. The interview will be held with the General Manager of Stenden University Bali, one member of the academic staff and a manager of a hotel in Indonesia. If you come from outside Bali (within Indonesia) your travel expenses will be covered.
  • The final decision will be announced on July 27th 2012.
Both the full and partial scholarships are intended for applicants entering during primary and secondary intakes in September and November. Depending on the quality and number of the applicants that are selected for a scholarship, Stenden University Bali reserves the right to conduct subsequent rounds of scholarship selection for the intake in February (third intake) and April (fourth intake).
For more information, please visit official website: www.stenden.com
--==ooOOOoo==--

Read More