National Inspection Testing and Certification Corporation (NITC) is a third-party provider of certification services to the Piping Industry. NITC tests and certifies personnel in the Medical Gas, Plumbing, Pipefitting, HVACR, Fire Protection & Safety Systems and related industries. It will be a blank time table and only those slots will be filled where you have chosen the subjects. Since it is a computerized system, no lectures can over lap each other. If you choose some theory slot and then try putting a practical slot at the same time when there is 1 of your theory slots, the system will reject it. Sl.No: Faculty: Subject: CL.Batch: Lab: Slot: Students: Select Teacher for individual time table. Time Table Winter Semester 2017-18 Lab/Seminar/Project Slots Sl.No Faculty Code Name of Faculty 1. AMC Anu Mary Chacko 2. GG Gopakumar G 3. JJ Jimmy Jose 4. JPB Jayaraj P B 5. KAN K Abdul Nazeer 6. MK Muralikrishnan K 8. PC Priya Chandran 9. PNP P N Pournami 10. NS Lab & SS LAB PVK Paleri Vineeth Kumar 11.
Sr. No. | Course Code | Course | Instructor(s) | Slot |
1 | IE 604 | System Dynamics Modeling and Analysis | J. Venkateswaran | 10 |
2 | IE 613 | Online Machine Learning | M. Hanawal | 12 |
3 | IE 614 | Linear Systems | P. Balamurugan | 8 |
4 | IE 616 | Decision Analysis and Game Theory | K.S. Mallikarjuna Rao | 3 |
5 | IE 622 | Probability and Stochastic Processes II | N. Hemachandra | 1 |
6 | IE 630 | Simulation Modeling and Analysis | J. Venkateswaran, V. Kavitha | 5 |
7 | IE 663 | Advanced Topics in Deep Learning | P. Balamurugan | 14 |
8 | IE 683 | Topics in Learning Algorithms | N. Hemachandra | 6 |
9 | IE 714 | Quantitative Models for Supply Chain Management | N. Rangaraj | 6 |
10 | IE 716 | Integer Programming: Theory and Computations | A. Mahajan | 9 |
11 | IE 684 | IEOR Lab. | P. Balamurugan, | LX |
12 | IE 692 | M.Sc.-Ph.D. Project 2 | A.Mahajan | |
13 | IE 694 | M.Tech. Seminar | V. Narayanan | |
14 | IES601 | M.Sc.-Ph.D. Seminar | P. Balamurugan | |
15 | IE S801 | Ph.D. Seminar | K.S. Mallikarjuna Rao | |
16 | IE 798 | M.Tech. II Stage Project | M. Hanawal | |
17 | IE 792 | Communication Skills II | V. Narayanan, S. SenGupta |
Time Table
Timetable for 2nd semester b.tech./ b.arch. – winter semester 2019-20 branch slot a batch b c d e f g p q r s t u/ua tue (g & e) wed (a & f) fri (a & f) ce1 a eclc.
Time | 09.30 - 10.55 | 11.05 - 12.30 | 12.30 - 14.00 | 14.00 - 15.25 | 15.30 - 16.55 | 17 - 17.30 | 17.30 - 18.55 | 19.00 - 20.25 | ||||||||||||||
Time | 8.30 - 9.25 | 9.30 - 10.25 | 10.35 - 11.30 | 11.35 - 12.30 | ||||||||||||||||||
Mon | IE 622 (NH) | IE 616 (MR) | IE 614 (PB) | IE 716 (AM) | IE 613 (MH) | |||||||||||||||||
Tue | IE 622 (NH) | IE 616 (MR) | IE 604 (JV) | IE 792 (VN,SSG) | IE 663 (PB) | |||||||||||||||||
Wed | IE 630 (JV,VK) | IE 683 (NH) IE 714 (NR) | IE 684 (PB, NH) | |||||||||||||||||||
Thu | IE 616 (MR) | IE 622 (NH) | IE 614 (PB) | IE 716 (AM) | IE 613 (MH) | |||||||||||||||||
Fri | IE 630 (JV,VK) | IE 683 (NH) IE 714 (NR) | IE 604 (JV) | IE 792 (VN,SSG) | IE 663 (PB) |
Mon | Tue | Wed | Thu | Fri | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
8:30 | 1A | 4B | 7A | 3C | 7B | ||||||
9:00 | |||||||||||
9:30 | 2A | 1B | 5A | 4C | 5B | ||||||
10:00 | |||||||||||
10:30 | 3A | 2B | 1C | ||||||||
11:00 | 6A | 6B | |||||||||
11:30 | 4A | 3B | 2C | ||||||||
12:00 | |||||||||||
12:30 | |||||||||||
14:00 | L1 | 8A | L2 | 10A | LX | XA | X1 | L3 | 8B | L4 | 10B |
14:30 | |||||||||||
15:00 | X2 | ||||||||||
15:30 | 9A | 11A | XB | 9B | 11B | ||||||
16:00 | X3 | ||||||||||
16:30 | |||||||||||
17:00 | |||||||||||
17:30 | 12A | 14A | XC | 12B | 14B | ||||||
18:00 | |||||||||||
18.30 | |||||||||||
19:00 | 13A | 15A | XD | 13B | 15B | ||||||
19:30 | |||||||||||
20:00 | |||||||||||
20.30 |
EnArBgDeElEsFaFiFrHiHuItJaKnKoMsNlPlPtRuSqThTrUkZh
Using QTableWidget developers can embed tables inside Qt applications. QTableWidget inherits QTableView. Items in a QTableWidget instance are provided by class QTableWidgetItem.
m_pTableWidget->setRowCount(10);m_pTableWidget->setColumnCount(3);
m_TableHeader<<'#'<<'Name'<<'Text';m_pTableWidget->setHorizontalHeaderLabels(m_TableHeader);
The simplest way to insert text into a cell:m_pTableWidget->setItem(0, 1, new QTableWidgetItem('Hello'));
m_pTableWidget->verticalHeader()->setVisible(false);
m_pTableWidget->setShowGrid(false);
m_pTableWidget->setStyleSheet('QTableView {selection-background-color: red;}');
m_pTableWidget->setEditTriggers(QAbstractItemView::NoEditTriggers);
The behavior of the table for selecting rows and cells can be customized using methods setSelectionBehavior and setSelectionMode. The following example allows only single selection of a row:
m_pTableWidget->setSelectionBehavior(QAbstractItemView::SelectRows);m_pTableWidget->setSelectionMode(QAbstractItemView::SingleSelection);
QTableWidget provides appropriate signals for each event such as change of selection, click, double click, etc. Example of handling double click of a cell:
connect( m_pTableWidget, SIGNAL( cellDoubleClicked (int, int) ), this, SLOT( cellSelected( int, int ) ) );
The following code snippet uses QTableWidget and all described cases above. It has been tested on Symbian^3 device.
#include <QTableWidget>
private slots:
void cellSelected(int nRow, int nCol);
private:
QTableWidget* m_pTableWidget;
QStringList m_TableHeader;
MainWindow::MainWindow(QWidget *parent)
{
connect( m_pTableWidget, SIGNAL( cellDoubleClicked (int, int) ),
}
MainWindow::~MainWindow(){}
void MainWindow::cellSelected(int nRow, int nCol){
}