|
1Q: Write a short code using C++
to print out all odd number from 1 to
100 using a for loop(Asked by
Intacct.com people)
Ans for( unsigned int i = 1; i <
= 100; i++ )
if( i & 0x00000001 )
cout << i<<\",\";
2Q.In OSI layers ,what layer is
the IP operated from?( Asked by Cisco
system people)
Ans Among the seven layers IP is
operated in the Network layer.
3.Q: Write a program that ask for
user input from 5 to 9 then calculate
the average( Asked by Cisco system
people)
Ans.int main()
{
int MAX=4;
int total =0;
int average=0;
int numb;
cout<<"Please enter your input from 5 to
9";
cin>>numb;
if((numb <5)&&(numb>9))
cout<<"please re type your input";
else
for(i=0;i<=MAX; i++)
{
total = total + numb;
average= total /MAX;
}
cout<<"The average number is"<<average<<endl;
return 0;
}
4.Q: Can you be bale to identify
between Straight- through and Cross-
over cable wiring? and in what case do
you use Straight- through and
Cross-over? (Asked by Cisco system
people)
Ans. Straight-through is type of
wiring that is one to to one connection
Cross- over is type of wiring which
those wires are got switched
We use Straight-through cable when we
connect between NIC Adapter and Hub.
Using Cross-over cable when connect
between two NIC Adapters or sometime
between two hubs.
5.Q: If you hear the CPU fan is
running and the monitor power is still
on, but you did not see any thing show
up in the monitor screen. What would you
do to find out what is going wrong?
(Asked by WNI people)
Ans. I would use the ping command
to check whether the machine is still
alive(connect to the network) or it is
dead.
|