Home > Community > Webnode Projects > vlsiquestions.webnode.com

vlsiquestions.webnode.com

VLSI Interview Questions with Answers.All the VLSI interview questions and answers asked in all the major IT companies (VERILOG, DIGITAL, PERL, C, STATIC TIMING ANALYSIS, etc) you were…

vlsiquestions.webnode.com

User:Saurabh Dayal
Tags:, , , , , , , , , , , , ,
vlsiquestions.webnode.com

Recent posts

Contact Us

Contact Us For any queries or suggestions please feel free to contact me: vlsiquestions.webnode@gmail.com… More info

C

C Q: Write the code to sort an array of integers. A: /* BEGIN C SNIPET */ void bubblesort (int x[ ], int lim) { int i, j, temp; for (i = 0; i < lim; i+) { for (j = 0; j < lim-1-i; j+) { if (x[j] > x[j+1]) { temp = x[j]; x[j] = x[j+1]; x[j+1] = temp; } /* end if */ } /* end for j */ } /* end… More info

Perl

Perl Q: Write the code for finding the factorial of a passed integer. Use a recursive subroutine. A: // BEGIN PERL SNIPET sub factorial { my $y = shift; if ( $y > 1 ) { return $y * &factorial( $y - 1 ); } else { return 1; } } // END PERL SNIPET Q: Given $a = "5,-3,7,0,-5,12"; Write… More info

Static Timing Analysis

Static Timing Analysis (STA) Q: What are the types of Timing Verification A: 1. Dynamic timing: The design is simulated in full timing mode. Not all possibilities tested as it is dependent on the input test vectors. Simulations in full timing mode are slow and require a lot of memory. Best method to… More info

1 | 2 | 3 > >>

Create your free website!

  • 100% Free
  • No ads
  • Customize your site
  • Free subdomain
  • No download
Sign Up Now!

Create Free Website

Start here