Skip to main content

Posts

Natural language processing previous year question paper(2009)

                    CS/B.Tech/(CSE)/SEM-8-April/CS-802B/2009                                               2009                     NATURAL LANGUAGE PROCESSING Time Allotted : 3 Hours                                                                    Full Marks : 70                                The figures in the margin indicate full marks.                Candidates are required to give their answers in their own words                ...
Recent posts

Natural language processing previous year question paper(2011)

                    CS/B.Tech/(CSE)/SEM-8/CS-802B/2011                                               2011                     NATURAL LANGUAGE PROCESSING Time Allotted : 3 Hours                                                                    Full Marks : 70                                The figures in the margin indicate full marks.                Candidates are required to give their answers in their own words                  ...

Natural language processing previous year question paper (2012)

                    CS/B.Tech/(CSE)/SEM-8/CS-802B/2012                                               2012                     NATURAL LANGUAGE PROCESSING Time Allotted : 3 Hours                                                                    Full Marks : 70                                The figures in the margin indicate full marks.                Candidates are required to give their answers in their own words                  ...

Natural language processing Previous Year Question paper(2010)

                    CS/B.Tech/CSE/SEM-8/CS-802B/2010                                               2010                     NATURAL LANGUAGE PROCESSING Time Allotted : 3 Hours                                                                        Full Marks : 70                                         The figures in the margin indicate full marks.                       Candidates are required to give their answers in their own wor...

Natural language processing Previous year question paper(2013)

                    CS/B.Tech/CSE/SEM-8/CS-802F/2013                                               2013                     NATURAL LANGUAGE PROCESSING Time Allotted : 3 Hours                                                                                   Full Marks : 70                                          The figures in the margin indicate full marks.                            Candi...

How to insert multiple entry or row in SQL

insert multiple row in SQL is very easy. don't worry about it. mysql> create table orders(orderid varchar(10), customerid varchar(10), orderdate varchar(10)); Query OK, 0 rows affected (0.02 sec) mysql> desc orders; +------------+-------------+------+-----+---------+-------+ | Field      | Type        | Null | Key | Default | Extra | +------------+-------------+------+-----+---------+-------+ | orderid    | varchar(10) | YES  |     | NULL    |       | | customerid | varchar(10) | YES  |     | NULL    |       | | orderdate  | varchar(10) | YES  |     | NULL    |       | +------------+-------------+------+-----+---------+-------+ 3 rows in set (0.01 sec) mysql> insert into o...

SQL INSERT INTO SELECT Statement with Example

SQL INSERT INTO SELECT Statement INSERT INTO SELECT copies data from one table to another table. INSERT INTO SELECT requires that data types in source and target tables match The SQL INSERT INTO SELECT syntax The general syntax is: INSERT INTO table-name ( column-names ) SELECT column-names FROM table-name WHERE condition SQL INSERT SELECT INTO Example