Search Tips

UTTC Criminal Justice Students Observe Supreme Court Arguments Monday, April 22, 2024

Instructor Mark Turner and students from the Criminal Justice class at the United Tribes Technical College, Bismarck, N.D. observed a live Supreme Court oral argument followed by a question and answer session with Justice Douglas Bahr.  Students were able to observe how attorneys for appellants and appellees argue before the court and understand why parties may choose to have oral arguments versus waiving oral arguments. Students asked questions related to the process of writing court opinions, what it takes to become a lawyer, and the preparation justices take prior to oral arguments.

The visit this year follows visits in prior years to the supreme court by the Criminal Justice class from UTTC.

Justice Bahr answers a question from UTTC students about how justices write the opinion of the court for cases.

Justice Bahr discusses the number of cases the North Dakota Supreme Court hears on an annual basis.

Justice Bahr (center in the black suit) with instructor Mark Turner (center with red tie) and students from UTTC, and, at right, attorney Stephenie Davis.

 


Runtime Error

Server Error in '/' Application.

Runtime Error

Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>

Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>