Please select a subject first
Advertisements
Advertisements
Which of the following reactions is an example of redox reaction?
Concept: undefined >> undefined
Match the compounds given in Column I with the hybridisation and shape given in Column II and mark the correct option.
| Column I | Column II |
| (A) XeF6 | (1) sp3d3 – distorted octahedral |
| (B) XeO3 | (2) sp3d2 – square planar |
| (C) XeOF4 | (3) sp3 – pyramidal |
| (D) XeF4 | (4) sp3d2 – square pyramidal |
Concept: undefined >> undefined
Advertisements
Substance having the lowest boiling point ______.
Concept: undefined >> undefined
On partial hydrolysis, XeF6 gives ______.
Concept: undefined >> undefined
Which type of biomolecules have some structural similarity with synthetic polyamides? What is this similarity?
Concept: undefined >> undefined
Account for the following :
Although Fluorine has less negative electron gain enthalpy yet F2 is a strong oxidizing agent.
Concept: undefined >> undefined
What is the basicity of H3PO4 ?
Concept: undefined >> undefined
Write the type of C++ token (keywords) and the User-defined identifier from the following.
1) else
2) Long
3) 4Queue
4) _count
Concept: undefined >> undefined
Rewrite the following C++ code after removing any/all syntactical error with each correction underline
Note: Assume all required header files are already included in the program.
Typedef Count(int);
void main()
(
Count C;
cout<<"Enter the count:";
cin>>C;
for (K = 1 ; K<=C;K++)
cout<< C "*" K <<end1;
}Concept: undefined >> undefined
Write the type of C++ tokens (keywords and user-defined identifiers) from the following:
1) new
2) While
3) case
4) Num_2
Concept: undefined >> undefined
Rewrite the following C++ code after removing any/all syntactical errors with each correction underlined.
Note: Assume all required header files are already being included in the program.
void main()
{
cout<<"Enter an Alphabet:" ;
cin>>CB ;
switch(CH)
case 'A' · cout<<"Ant"; Break ;
case 'B' · cout<<"Bear"; Break;
}Concept: undefined >> undefined
Find the correct identifiers out of the following, which can be used for naming Variable, Constants or Functions in a C++ program.
For, while, INT, NeW, delete, lstName, Add+Subtract, namel
Concept: undefined >> undefined
Observe the following C++ code very carefully and rewrite it after removing any/all syntactical errors with each correction underlined.
Note: Assume all required header files are already being included in the program
#Define float MaxSpeed=60.5;
void main()
{
int MySpeed
char Alert='N';
cin>>MySpeed;
if MySpeed>MaxSpeed
Alert='Y';
cout<<A1ert<<endline;
}
Concept: undefined >> undefined
Write the output of the following C++ program code :
Note: Assume all required header files are already being included in the program.
void Location(int &X,int Y=4)
{
Y+=2;
X+=Y;
}
void main()
{
int PX=l0,PY=2;
Location(PY);
cout<<PX<<","<<PY<<endl;
Location(PX,PY);
cout<<PX<<", "<<PY<<endl;
}Concept: undefined >> undefined
Write the output of the following C++ program code:
Note: Assume all required header files are already being included in the program.
class Eval
{
char Level;
int Point;
public:
Eval(){Level='E'; Point=O;}
void Sink(int L)
{
Level~=L;
}
void Float(int L)
{
Level+=L;
Point++;
}
void Show()
{
cout<<Level<<"#"<<Point<<endl;
}
};
void main ()
{
Eval E;
E.Sink(3);
E.Show();
E.Float(7);
E.Show();
E.Sink(2);
E.Show();
}Concept: undefined >> undefined
Study the following program and select the possible output(s) from the options (i) to (iv) following it. Also; write the maximum and the minimum values that, can be ·assigned to the variable VAL
Note:
-Assume all required header files are already being included in the program.
- random(n) function generates all integer 6, and n-1.
void main ()
{
randomize();
int VAL;
VAL=random(3)+2;
char GUESS[] ="ABCDEFGHIJK";
for(int I = 1, I = 1;I <= VAL; I++)
{
for (int J=VAL; J<= 7; J++)
cout<<GUESS[J];
cout<<endl;
}
}
1)

2)

3)

4)

Concept: undefined >> undefined
Observe the following table carefully and· write the names of the most appropriate columns, which can be considered as (i) candidate keys and. (ii) primary key:
| Code | Item | Qty | Price | Transaction Date |
| 1001 | Plastic Folder 14" | 100 | 3400 | 2014-12-14 |
| 1004 | Pen Stand Standard | 200 | 4500 | 2015-01-31 |
| 1005 | Stapler Mini | 250 | 1200 | 2015-02-28 |
| 1009 | Punching Machine Small | 200 | 1400 | 2015-03-12 |
| 1003 | Stapler Big | 100 | 1500 | 2015-02-02 |
Concept: undefined >> undefined
Write the definition of a function SumEO(int VALUES[], int N) in C++, which should display the 4 sum of even value and sum of odd values of the array separately.
Example: If the array VALUES contains
| 25 | 20 | 22 | 21 | 53 |
Then the functions should display the output as:
Sum of even values = 42 (i.e., 20+22)
Sum of odd values= 99 (i.e., 25+21+53)
Concept: undefined >> undefined
Write a definition for a function UpperHalf(int Mat[4][4]) in C++ which displays the elements in the same way as per the example is shown below.
For example, if the content of the array Mat is as follows:
| 25 | 24 | 23 | 22 |
| 20 | 19 | 18 | 17 |
| 15 | 14 | 13 | 12 |
| 10 | 9 | 8 | 7 |
Thew function should display the content in the following format:

Concept: undefined >> undefined
Let us assume Data[20][15] is a two-dimensional array, which is stored in the memory along the row with each of its elements occupying 2 bytes. Find the address of the element Data(10][5], if the element Data[10][l5] is stored at the memory location 15000.
Concept: undefined >> undefined
