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.

  1. Nitc Slot Time Table 2020
  2. Nitc Slot Time Table Calculator
  3. Nitc Slot Timetable
  4. Nitc Slot Time Table 2019

Nitc Slot Time Table 2020

Note: Please check pre-requisites provided in course-pages before registering for a course.
Time table for Spring 2021
Sr. No.Course CodeCourseInstructor(s)Slot
1IE 604System Dynamics Modeling and Analysis J. Venkateswaran10
2IE 613Online Machine LearningM. Hanawal12
3IE 614Linear SystemsP. Balamurugan8
4IE 616Decision Analysis and Game TheoryK.S. Mallikarjuna Rao3
5IE 622Probability and Stochastic Processes IIN. Hemachandra1
6IE 630Simulation Modeling and AnalysisJ. Venkateswaran, V. Kavitha5
7IE 663Advanced Topics in Deep LearningP. Balamurugan14
8IE 683Topics in Learning AlgorithmsN. Hemachandra6
9IE 714Quantitative Models for Supply Chain ManagementN. Rangaraj6
10IE 716Integer Programming: Theory and ComputationsA. Mahajan9
11IE 684IEOR Lab.

P. Balamurugan,

LX
12IE 692M.Sc.-Ph.D. Project 2A.Mahajan
13IE 694M.Tech. SeminarV. Narayanan
14IES601M.Sc.-Ph.D. SeminarP. Balamurugan
15IE S801Ph.D. SeminarK.S. Mallikarjuna Rao
16IE 798M.Tech. II Stage ProjectM. Hanawal
17IE 792Communication Skills IIV. Narayanan, S. SenGupta

Time Table

Tables

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.

Time09.30 - 10.5511.05 - 12.3012.30 - 14.0014.00 - 15.2515.30 - 16.5517 - 17.3017.30 - 18.5519.00 - 20.25
Time8.30 - 9.259.30 - 10.2510.35 - 11.3011.35 - 12.30
MonIE 622 (NH)IE 616 (MR)IE 614 (PB)IE 716 (AM)IE 613 (MH)
TueIE 622 (NH)IE 616 (MR)IE 604 (JV)IE 792 (VN,SSG)IE 663 (PB)
WedIE 630 (JV,VK)IE 683 (NH)
IE 714 (NR)
IE 684 (PB, NH)
ThuIE 616 (MR)IE 622 (NH)IE 614 (PB)IE 716 (AM) IE 613 (MH)
FriIE 630 (JV,VK)IE 683 (NH)
IE 714 (NR)
IE 604 (JV)IE 792 (VN,SSG)IE 663 (PB)
MonTueWedThuFri
8:301A4B7A3C7B
9:00
9:302A1B5A4C5B
10:00
10:303A2B1C
11:006A6B
11:304A3B2C
12:00
12:30
14:00L18AL210ALXXAX1L38BL410B
14:30
15:00X2
15:309A11AXB9B11B
16:00X3
16:30
17:00
17:3012A14AXC12B14B
18:00
18.30
19:0013A15AXD13B15B
19:30
20:00
20.30
Previous Time Tables;

EnArBgDeElEsFaFiFrHiHuItJaKnKoMsNlPlPtRuSqThTrUkZh

Using QTableWidget developers can embed tables inside Qt applications. QTableWidget inherits QTableView. Items in a QTableWidget instance are provided by class QTableWidgetItem.

Basic Usage

Nitc slot time table calculator

Set number of rows and columns

m_pTableWidget->setRowCount(10);m_pTableWidget->setColumnCount(3);

Insert labels into the horizontal header

m_TableHeader<<'#'<<'Name'<<'Text';m_pTableWidget->setHorizontalHeaderLabels(m_TableHeader);

Insert data

The simplest way to insert text into a cell:m_pTableWidget->setItem(0, 1, new QTableWidgetItem('Hello'));

Hide vertical header aka the line counter

m_pTableWidget->verticalHeader()->setVisible(false);

Hide grid

m_pTableWidget->setShowGrid(false);

Set background of the selected items

m_pTableWidget->setStyleSheet('QTableView {selection-background-color: red;}');

Disable editing

Nitc Slot Time Table Calculator

m_pTableWidget->setEditTriggers(QAbstractItemView::NoEditTriggers);

Selection mode and behavior

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);

Handling signals

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 ) ) );

Example

The following code snippet uses QTableWidget and all described cases above. It has been tested on Symbian^3 device.

  • mainwindow.h

#include <QTableWidget>

private slots:

void cellSelected(int nRow, int nCol);

Nitc Slot Timetable

private:

Nitc slot time table calculator

QTableWidget* m_pTableWidget;

QStringList m_TableHeader;

  • mainwindow.cpp
  1. include 'mainwindow.h'
Nitc
  1. include <QApplication>
  2. include <QDesktopWidget>
  3. include <QCoreApplication>
  4. include <QHeaderView>
  5. include <QMessageBox>

MainWindow::MainWindow(QWidget *parent)

Nitc Slot Time Table 2019

{

connect( m_pTableWidget, SIGNAL( cellDoubleClicked (int, int) ),

}

MainWindow::~MainWindow(){}

void MainWindow::cellSelected(int nRow, int nCol){

}

Retrieved from 'https://wiki.qt.io/index.php?title=How_to_Use_QTableWidget&oldid=18180'
Coments are closed
Scroll to top