<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.10.0"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>HDF5: Learning the basics QUIZ</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript" src="cookie.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */ $(function() { init_search(); }); /* @license-end */ </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> <link href="hdf5doxy.css" rel="stylesheet" type="text/css"> <!-- <link href="hdf5doxy.css" rel="stylesheet" type="text/css"/> --> <script type="text/javascript" src="hdf5_navtree_hacks.js"></script> </head> <body> <div style="background:#FFDDDD;font-size:120%;text-align:center;margin:0;padding:5px">Please, help us to better serve our user community by answering the following short survey: <a href="https://www.hdfgroup.org/website-survey/">https://www.hdfgroup.org/website-survey/</a></div> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="HDFG-logo.png"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname"><a href="https://www.hdfgroup.org">HDF5</a>  <span id="projectnumber">1.15.0.2908dd1</span> </div> <div id="projectbrief">API Reference</div> </td> <td> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <span id="MSearchSelect" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()"> </span> <input type="text" id="MSearchField" value="" placeholder="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.svg" alt=""/></a> </span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.10.0 --> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */ var searchBox = new SearchBox("searchBox", "search/",'.html'); /* @license-end */ </script> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */ $(function(){initNavTree('_l_b_quiz.html',''); initResizable(); }); /* @license-end */ </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <div id="MSearchResults"> <div class="SRPage"> <div id="SRIndex"> <div id="SRResults"></div> <div class="SRStatus" id="Loading">Loading...</div> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> </div> </div> </div> </div> <div><div class="header"> <div class="headertitle"><div class="title">Learning the basics QUIZ</div></div> </div><!--header--> <div class="contents"> <div class="textblock"><p>Navigate back: <a class="el" href="index.html">Main</a> / <a class="el" href="_getting_started.html">Getting Started with HDF5</a> / <a class="el" href="_learn_basics.html">Learning the Basics</a> </p><hr /> <p><a class="el" href="_l_b_file_org.html">HDF5 File Organization</a> </p><ol> <li> Name and describe the two primary objects that can be stored in an HDF5 file. </li> <li> What is an attribute? </li> <li> Give the path name for an object called <code style="background-color:whitesmoke;">harry</code> that is a member of a group called <code style="background-color:whitesmoke;">dick</code>, which, in turn, is a member of the root group. </li> </ol> <p><a class="el" href="_l_b_a_p_i.html">The HDF5 API</a> </p><ol> <li> Describe the purpose of each of the following HDF5 APIs: <div class="fragment"><div class="line">H5A, H5D, H5E, H5F, H5G, H5T, H5Z </div> </div><!-- fragment --> </li> </ol> <p><a class="el" href="_l_b_file_create.html">Creating an HDF5 File</a> </p><ol> <li> What two HDF5 routines must be called to create an HDF5 file? </li> <li> What include file must be included in any file that uses the HDF5 library? </li> <li> An HDF5 file is never completely empty because as soon as it is created, it automatically contains a certain primary object. What is that object? </li> </ol> <p><a class="el" href="_l_b_dset_create.html">Creating a Dataset</a> </p><ol> <li> Name and describe two major datatype categories. </li> <li> List the HDF5 atomic datatypes. Give an example of a predefined datatype. How would you create a string dataset? </li> <li> What does the dataspace describe? What are the major characteristics of the simple dataspace? </li> <li> What information needs to be passed to the <a class="el" href="group___h5_d.html#ga0647ba4bbd26d5230cc07f3a5685b2cf">H5Dcreate</a> function, i.e., what information is needed to describe a dataset at creation time? </li> </ol> <p><a class="el" href="_l_b_dset_r_w.html">Reading From and Writing To a Dataset</a> </p><ol> <li> What are six pieces of information which need to be specified for reading and writing a dataset? </li> <li> Why are both the memory dataspace and file dataspace needed for read/write operations, while only the memory datatype is required? </li> <li> In Figure 6.1, what does this line mean? <div class="fragment"><div class="line">DATASPACE { SIMPLE (4 , 6 ) / ( 4 , 6 ) }</div> </div><!-- fragment --> </li> </ol> <p><a class="el" href="_l_b_attr_create.html">Creating an Attribute</a> </p><ol> <li> What is an attribute? </li> <li> Can partial I/O operations be performed on attributes? </li> </ol> <p><a class="el" href="_l_b_grp_create.html">Creating an Group</a> </p><ol> <li> What are the two primary objects that can be included in a group? </li> </ol> <p><a class="el" href="_l_b_grp_create_names.html">Creating Groups using Absolute and Relative Names</a> </p><ol> <li> Group names can be specified in two ways. What are these two types of group names? </li> <li> You have a dataset named <code style="background-color:whitesmoke;">moo</code> in the group <code style="background-color:whitesmoke;">boo</code>, which is in the group <code style="background-color:whitesmoke;">foo</code>, which, in turn, is in the <code style="background-color:whitesmoke;">root</code> group. How would you specify an absolute name to access this dataset? </li> </ol> <p><a class="el" href="_l_b_grp_dset.html">Creating Datasets in Groups</a> </p><ol> <li> Describe a way to access the dataset moo described in the previous section (question 2) using a relative name. Describe a way to access the same dataset using an absolute name. </li> </ol> <hr /> <p> Navigate back: <a class="el" href="index.html">Main</a> / <a class="el" href="_getting_started.html">Getting Started with HDF5</a> / <a class="el" href="_learn_basics.html">Learning the Basics</a> </p> </div></div><!-- contents --> </div><!-- PageDoc --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.10.0 </li> </ul> </div> </body> </html>