Call Support +91-85588-96644
TCYonline

Login

Sign Up

Please enter a Username or Email ID
Please enter a password
Keep me logged in
Please enter your name
Please enter your mobile number
You can't leave Captcha Code empty
By submitting this form, you agree to the Terms & Privacy Policy.
OR

Sign Up via Facebook

Sign Up via Google

Sign Up via Twitter

Download Software
Tests given

Download TCY App

App Image

Library and Information science

(48 Posts)

Question should not exceed 100 characters.Use add options for multiple choice questions and "Uploadimage/Add related data" for passage text papers.
Question should be at least 10 characters long.
+
Add Options | Community Guidelines
Cancel
Mani Bhushan Jha
Posted on Mar 08, 2014 1:52 PM

What would be the output of the following C code?

void main()

{

char Rstr[] =TCYonline;

printf( %s,Rstr);

printf( %s,&Rstr);



}

Please type your answer before submitting.
Narenkaushikk
Posted on Feb 25, 2014 7:54 PM

What is the difference between OSI layers and TCP/IP layers?

Please type your answer before submitting.

In OSI model there are 7 layers but in TCP/IP there are 4 layers The application layer in TCP/IP handles the responsibilities of layers 5, 6 and 7 in the OSI model. The transport layer in TCP/IP does not always guarantee reliable delivery of packets at the transport layer, while the OSI model does. TCP/IP also offers an option called UDP that does not guarantee reliable packet delivery. Attempts tests for proper preparation available @ http://www.tcyonline.com/tests/osi-and-tcp

Alex
Posted on Feb 04, 2014 11:28 PM

Can anyone say Full form of Computer ??

Please type your answer before submitting.

There is no full form of computer.its a machine which is used for calculations,technologies,research ,trade,education and research anything..etc..but if you want to know about full form of computer- Comman operating machine particularly used for trade or technology,education and research.

Dipak Varade
Posted on Dec 11, 2013 1:24 PM

Hey frnds i need ur help

I have following create table command with partitions on the table.

CREATE TABLE PARTITION_TEST
(
COUNTRY_KEY NVARCHAR2(3),
COMPANY_KEY NVARCHAR2(5),
SITE_KEY NVARCHAR2(10),
HFM_BU_KEY NVARCHAR2(30),
DAY_DATE DATE,
METRIC_KEY NVARCHAR2(13),
TRANSACTION_VALUE NUMBER
)
PARTITION BY RANGE (DAY_DATE ) (
PARTITION P_1_2013 VALUES LESS THAN(TO_DATE('1/31/2013','MM/DD/YYYY')),
PARTITION P_2_2013 VALUES LESS THAN( TO_DATE('2/28/2013','MM/DD/YYYY')),
PARTITION P_3_2013 VALUES LESS THAN( TO_DATE('3/31/2013','MM/DD/YYYY')),
PARTITION P_4_2013 VALUES LESS THAN( TO_DATE('4/30/2013','MM/DD/YYYY')),
PARTITION P_5_2013 VALUES LESS THAN( TO_DATE ('5/31/2013','MM/DD/YYYY')),
PARTITION P_6_2013 VALUES LESS THAN( TO_DATE('6/30/2013','MM/DD/YYYY')),
PARTITION P_7_2013 VALUES LESS THAN( TO_DATE('7/31/2013','MM/DD/YYYY')),
PARTITION P_8_2013 VALUES LESS THAN( TO_DATE('8/31/2013','MM/DD/YYYY')),
PARTITION P_9_2013 VALUES LESS THAN( TO_DATE('9/30/2013','MM/DD/YYYY')),
PARTITION P_10_2013 VALUES LESS THAN( TO_DATE('10/31/2013','MM/DD/YYYY')),
PARTITION P_11_2013 VALUES LESS THAN( TO_DATE('11/30/2013','MM/DD/YYYY')),
PARTITION P_12_2013 VALUES LESS THAN( TO_DATE('12/31/2013','MM/DD/YYYY'))
);

And I am creating a procedure to add partition(P_12_2014) on the table.
Can you please help.
Problem is in alter table query I am unable to pass date in a variable. This gives error.
Do you know how should I do it?


CREATE OR REPLACE procedure fact_partition_test
AS
TODAY_YEAR number(4) := 0;
TODAY_MONTH number(2) := 0;
PREVIOUS_MONTH number(2) := 0;
TODAY_DAY number(2) := 0;
V_STAT VARCHAR2(300);
V_STAT1 VARCHAR2(300);
V_STAT2 VARCHAR2(300);

PARTITION_NAME_CURRENT VARCHAR2(12);
PARTITION_NAME_PREVIOUS VARCHAR2(12);
RANGE_PARTITION_CURRENT DATE;
RANGE_PARTITION_PREVIOUS DATE;


BEGIN


PARTITION_NAME_CURRENT := ‘P_12_2014’
SELECT TRUNC(LAST_DAY(‘1/JAN/2014’)) INTO RANGE_PARTITION_CURRENT FROM DUAL

V_STAT2 := ‘ALTER TABLE PARTITION_TEST ADD PARTITION ’ || PARTITION_NAME_CURRENT || ‘ VALUES LESS THAN (TO_DATE(' || RANGE_PARTITION_CURRENT || ‘,'MM/DD/YYYY'))’;
EXECUTE IMMEDIATE V_STAT2;

END fact_partition_test;
/

Please type your answer before submitting.
Ashish Khurana
Posted on Dec 04, 2013 10:30 AM

Is inheritance is possible in php ?

Please type your answer before submitting.

Yes its possible