How to insert values in hive table when we have struct, array map complex data types

i have created a table in my database as below

use sh10march;
create table student(
id int,
name string,
marks array,
result map<int,int>,
address struct<plotno:int, street:string, city:string, pin:int>
)
row format delimited fields terminated by ‘\t’ collection items terminated by ‘,’
map keys terminated by ‘,’;

now how we can insert values into table when we have complex data types.