What are the various topologies? Which one is the most secure?
Answers were Sorted based on User's Feedback
Answer / ananth kumar
There are 5 topologies.They are:
1.star topology,
2.bus topology,
3.ring topology,
4.mesh topology,
5.tree topology.
The most secured topology is mesh topology b'cos each and
every system has its interconnection hence it is cost
effective it is not implemented mostly.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / xxxx
totally 5 topologies: star topology, bus topology,ring
topology,mesh topology,tree topology
| Is This Answer Correct ? | 1 Yes | 2 No |
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
Is it possible to run a c program without using main?If yes HOW??
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
What is methods in c?
What are the types of data files?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
Why we use conio h in c?
Why do some versions of toupper act strangely if given an upper-case letter?
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
What is structure padding ?
Stimulate calculator using Switch-case-default statement for two numbers