C++ or verilog or random process ?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 2K views
zaman999
Messages
5
Reaction score
0
C++ or verilog or random process ??

I'm currently in 3rd year of my undergrad in Electronics & Communication engg. For my 6th semester, I'm required to take 1 elective from the following-
-Data Structures with C++
-Random Process
-Digital System Design using Verilog
-Analog & Mixed mode VLSI design
-Satellite Communication

I don't know if Random process would be a good choice or not, from the rest, I'm interested equally in Digital design using Verilog, Data Structures using C++ but I need to make one choice.

I've had experience with Visual Basic in my high school which got me interested in programming but since then I've never got enough time to learn C++(or other lang) as I had to concentrate on 6 courses every semester.

I've taken a course on Intro to VHDL/Verilog in my 2nd yr.

I'm in a dilemma as to which one to go for from the first 3 choices as I get mixed opinions from my seniors. So could you give me a comparison of the 1st three in terms of how much they'll help me if I go for an MS in EE or an MS in EECS in the future?
Any suggestions to clear my confusion are welcome!

Regards,
Zaman
 
Last edited:
Physics news on Phys.org


zaman999 said:
I'm currently in 3rd year of my undergrad in Electronics & Communication engg. For my 6th semester, I'm required to take 1 elective from the following-
-Data Structures with C++
-Random Process
-Digital System Design using Verilog
-Analog & Mixed mode VLSI design
-Satellite Communication

I don't know if Random process would be a good choice or not, from the rest, I'm interested equally in Digital design using Verilog, Data Structures using C++ but I need to make one choice.

I've had experience with Visual Basic in my high school which got me interested in programming but since then I've never got enough time to learn C++(or other lang) as I had to concentrate on 6 courses every semester.

I've taken a course on Intro to VHDL/Verilog in my 2nd yr.

I'm in a dilemma as to which one to go for from the first 3 choices as I get mixed opinions from my seniors. So could you give me a comparison of the 1st three in terms of how much they'll help me if I go for an MS in EE or an MS in EECS in the future?
Any suggestions to clear my confusion are welcome!

Regards,
Zaman

Is the C++ course an introduction to elementary data structures (classes, stacks, queues, linked-lists), or does it focus on some of the more advanced data structures for searching1, sorting2, graphs3?

You mentioned not having any time to learn C++. Does this mean you haven't had any exposure to it at all? If you cannot take an introductory course, you should spend some time on your own becoming familiar with it.

1Range Trees, kD-Trees, Quadtree, Hashing
2Selection Sort, Bubble Sort, Insertion Sort, Heapsort, Mergesort, Quicksort, Linear Time Sorts
3Searching (i.e., DFS and BFS), Shortest Paths (i.e., Dijkstra.s and Bellman-Ford algorithms)
 


Dembadon said:
Is the C++ course an introduction to elementary data structures (classes, stacks, queues, linked-lists), or does it focus on some of the more advanced data structures for searching1, sorting2, graphs3?
My university scheme shows the units having stacks, queues, priority queues, skip lists & hashing, binary & search trees. We don't have the advanced data structures you mentioned.

You mentioned not having any time to learn C++. Does this mean you haven't had any exposure to it at all?
Oh, not really, we took an intro course on C in the first yr, what I meant was the system here doesn't really allow you to explore outside the curriculum.