Please select a subject first
Advertisements
Advertisements
Draw structures of the following:
XeF4
Concept: undefined >> undefined
Draw the structure of XeF4.
Concept: undefined >> undefined
Advertisements
Which of the following fluorides does not exist?
Concept: undefined >> undefined
Partial hydrolysis of XeF4 gives ____________.
Concept: undefined >> undefined
Helium is preferred to be used in balloons instead of hydrogen because it is ____________.
Concept: undefined >> undefined
In which of the following pairs, the two species are isostructural:
Concept: undefined >> undefined
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
Substance having the lowest boiling point ______.
Concept: undefined >> undefined
On partial hydrolysis, XeF6 gives ______.
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
