Reviews 161 Page 2 of 2
Filters:
Rating
Language
Sort:
Most recent
M
4 years ago

First of all I would like to thank god to make thi...

First of all I would like to thank god to make this opportunity success in this university and then my parents.
I am very grateful and so proud to be a student of this university, and doing a degree in this university is a great honor.

M
4 years ago

Good..

Good..

......

U
4 years ago

Student life is amazing. They have a lot of societ...

Student life is amazing. They have a lot of societies around campus to meet new people and the campus is nice and modern. However, all it took was one professor to ruin my whole experience, Clare Branigan. She has one of the worst attitudes from a professor I have ever met and her uncaring attitude towards students do not help. Her lectures are unenthusiastic as if she was forced to attend to just pick up her paycheck and embarrasses students when given the chance. To put it simply, I do not appreciate her attitude.

B
4 years ago

I had a great time in UCD. Came from South Africa ...

I had a great time in UCD. Came from South Africa to study Politics. Excellent academic and administrative staff. The International Office provided all the support I needed from immigration documents to opening a bank account. The student societies also play an important part as there is something to do for everyone from video games to volunteering for charity. The campus is well located and has all the amenities required for the best student life. There wasn't much accommodation available on campus in my year but they've built a new residence and another one is planned.

S
4 years ago

Yes

P
4 years ago

Great

S
4 years ago

Super welcome, the staff we integrated right now, ...

Super welcome, the staff we integrated right now, the site is beautiful with everything you need (bookstore, supermarket, post office and a bank) the most, the clubhouse, a super pub with themed party and guiness of course

I
4 years ago

Hi all..

Hi all..
I am looking for accomodation either personal or room sharing (male) urgently from August 29 2019 . Anyone has infomation to share would be appreciated. Thank you in advance

D
4 years ago

Very large with loads of things to do all the time...

Very large with loads of things to do all the time. Interesting debates, talks and lectures. The gym is free and the pool.is massive and cheap. You can use your student card to pay for things so you don't have to carry around cash. The place seems to like to be modern and embrace new directions.

M
4 years ago

Yours

n
4 years ago

I was the only person from my school to go to UCD....

I was the only person from my school to go to UCD. I chose to study Chemical Engineering, and, given my location (Northern Ireland) my two closest options were Queen's University Belfast and UCD. I chose UCD as although Queens is a lovely college, I'm not a huge fan of Belfast city.
I'm now 3 years into my course and my experience studying in UCD has been very positive. The campus is absolutely beautiful and very big, you feel like you're in a small town rather than a college. This is one of the advantages of being located outside the city, more room for a more open campus.

This coupled with the friendly, open feel of the campus makes life there very enjoyable.

import os
import time
import random

board = [' ',' ',' ',' ',' ',' ',' ',' ',' ',' ']
player = 1

########win Flags##########
Win = 1
Draw = -1
Running = 0
Stop = 1
###########################
Game = Running
Mark = 'X'

#This Function Draws Game Board
def DrawBoard():
print(" %c | %c | %c " % (board[1],board[2],board[3]))
print("___|___|___")
print(" %c | %c | %c " % (board[4],board[5],board[6]))
print("___|___|___")
print(" %c | %c | %c " % (board[7],board[8],board[9]))
print(" | | ")

#This Function Checks position is empty or not
def CheckPosition(x):
if(board[x] == ' '):
return True
else:
return False

#This Function Checks player has won or not
def CheckWin():
global Game
#Horizontal winning condition
if(board[1] == board[2] and board[2] == board[3] and board[1] != ' '):
Game = Win
elif(board[4] == board[5] and board[5] == board[6] and board[4] != ' '):
Game = Win
elif(board[7] == board[8] and board[8] == board[9] and board[7] != ' '):
Game = Win
#Vertical Winning Condition
elif(board[1] == board[4] and board[4] == board[7] and board[1] != ' '):
Game = Win
elif(board[2] == board[5] and board[5] == board[8] and board[2] != ' '):
Game = Win
elif(board[3] == board[6] and board[6] == board[9] and board[3] != ' '):
Game=Win
#Diagonal Winning Condition
elif(board[1] == board[5] and board[5] == board[9] and board[5] != ' '):
Game = Win
elif(board[3] == board[5] and board[5] == board[7] and board[5] != ' '):
Game=Win
#Match Tie or Draw Condition
elif(board[1]!=' ' and board[2]!=' ' and board[3]!=' ' and board[4]!=' ' and board[5]!=' ' and board[6]!=' ' and board[7]!=' ' and board[8]!=' ' and board[9]!=' '):
Game=Draw
else:
Game=Running

print("Player 1 [X] --- Player 2 [O]\n")
print()
print()
print("Please Wait...")
time.sleep(3)
while(Game == Running):
os.system('cls')

DrawBoard()
if(player % 2 != 0):
print("Player 1's chance")
Mark = 'X'

else:
print("Player 2's chance")
Mark = 'O'

choice = int(input("Enter the position between [1-9] where you want to mark : "))
if(CheckPosition(choice)):
board[choice] = Mark
player+=1
CheckWin()

os.system('cls')
DrawBoard()
if(Game==Draw):
print("Game Draw")
elif(Game==Win):
player-=1
if(player%2!=0):
print("Player 1 Won")
else:
print("Player 2 Won")

Tower of Hanoi

def moveTower(height,fromPole, toPole, withPole):
if height >= 1:
moveTower(height-1,fromPole,withPole,toPole)
moveDisk(fromPole,toPole)
moveTower(height-1,withPole,toPole,fromPole)

def moveDisk(fp,tp):
print("moving disk from",fp,"to",tp)

num=int(input("Enter the number of disks you wanna play with "))
moveTower(num,"A","B","C")

M
4 years ago

Okay

About University College Dublin

University College Dublin (UCD) is a world-renowned research-intensive university located in Dublin, Ireland. With a rich history dating back to 1854, UCD has established itself as one of the top universities in Europe and is known for its commitment to excellence in teaching, research, innovation and community engagement.

At UCD, undergraduate education is just the beginning. The university offers a wide range of postgraduate programs including masters and PhD training across various disciplines such as business, engineering, science, law and medicine. The faculty at UCD comprises some of the most distinguished scholars from around the world who are committed to providing students with an exceptional learning experience.

UCD's research output is impressive with over 3,000 researchers working on cutting-edge projects that have global impact. The university has been awarded numerous prestigious grants for its research work which includes areas such as agriculture and food science; energy; environment; health; information technology; materials science; social sciences and humanities.

Innovation is at the heart of everything that UCD does. The university has established several innovation centers that provide support to startups and entrepreneurs by offering access to funding opportunities, mentorship programs and state-of-the-art facilities. These centers also collaborate with industry partners on research projects which help drive economic growth in Ireland.

Community engagement is another key aspect of UCD's mission. The university works closely with local communities through various outreach programs aimed at promoting education and social inclusion. Additionally, UCD hosts several public events throughout the year including lectures by renowned scholars from around the world which are open to all members of the public.

Overall, University College Dublin offers an unparalleled educational experience for students looking to pursue their academic goals while also making a positive impact on society through their work in research or community engagement initiatives. With its commitment to excellence across all areas of activity - teaching ,research ,innovation & community engagement- it's no wonder why it continues being one of Europe's leading universities today!

University College Dublin

University College Dublin

4.5