Echo taxonomy slug
<?php foreach (get_the_terms(get_the_ID(), 'your_taxonomy') as $cat) {
echo $cat->slug;
}
?>
Echo taxonomy name
<?php foreach (get_the_terms(get_the_ID(), 'your_taxonomy') as $cat_name) {
echo $cat_name->name;
}
?>