1,073 Recommended Topics

Remove Filter
Member Avatar for
Member Avatar for Mohan_1845

I couldn't install the tensorflow framework in my laptop.can anyone help me out in installing tensorflow for doing my project on deep learning techniques.

Computer Science python tensorflow
Member Avatar for rproffitt
0
326
Member Avatar for jjsulzer

Hi all, I am working on a project that should take all the data from file redirect and write them to a new file. Here is what I have: #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include "node.h" #include "tree.h" #define TRUE 0 #define FALSE 1 #define stdin stdin …

Computer Science file-system
Member Avatar for Reverend Jim
1
3K
Member Avatar for overwraith

Hello all, I was wondering if I could get some questions answered about how cupons work in the work place. I have an idea which involves creating a very flexible cupon service, but would require knowing the rudiments of how cupons work. The main question I have is how is …

Computer Science c# python vb.net
Member Avatar for Schol-R-LEA
0
3K
Member Avatar for JasperLydia

International Journal of Computer Science & Information Technology (IJCSIT) ISSN: 0975-3826(online); 0975-4660 (Print) http://airccse.org/journal/ijcsit.html Scope & Topics The AIRCC’s International Journal of Computer Science and Information Technology (IJCSIT) is devoted to fields of Computer Science and Information Systems. The IJCSIT is a peer-reviewed scientific journal published in electronic form as …

0
334
Member Avatar for Aziz_6

why we used return0 in C++? shell we use retrun1 or retrun -1 in C++?

Computer Science c++
Member Avatar for Aziz_6
0
273
Member Avatar for dukoolsharma

In Java, is it possible to have Interface in Inner class?

Computer Science java
Member Avatar for JamesCherrill
0
294
Member Avatar for misstj555

I am currently studying for an "Associates in Computer Science" with the intention of tranfering to a four year collage to get either a "Bachelors of Computer Science" or a "Bachelor of Applied Computer Science" hopefully this spring. Before I can make a decision on which Bachelors I would like, …

Computer Science career
Member Avatar for misstj555
0
4K
Member Avatar for dukoolsharma

Why much time is needed to access an applet having swing components the first time?

Computer Science java java-swing
Member Avatar for HimaniBansal
-1
310
Member Avatar for HimaniBansal

How can I locally save an image using its URL address?

Computer Science image python
Member Avatar for vegaseat
2
2K
Member Avatar for Jibin_1

So, I have created a text file containing the following: 10001 General Electronics 500 20001 fACEBOOK 700 10002 Twitter 400 The records are stored in a struct containing an integer id, string company and integer number of shares variables. I want the user to enter a Id, say 20001, and …

Computer Science c++
0
283
Member Avatar for Sheetal_1

What is the difference between the term Shallow copy and Deep?

Computer Science python
Member Avatar for sritaa
0
348
Member Avatar for Allu peddinti

1. Ask user’s name and welcome them to the Christmas Gift Shop “Welcome to the Christmas Gift Shop! What is your name?” 2. Ask the user for how many people he/she wants to purchase Christmas gifts. “Hello <name>! How many people are you buying Christmas presents for?” 3. Ask the …

Computer Science
Member Avatar for Reverend Jim
0
2K
Member Avatar for n00b321

In this examle in writer.c I am trying to generate symbols from a to z and then print them in uppercase in reader.c. **writer.c:** // C Program for Message Queue (Writer Process) #include <stdio.h> #include <sys/ipc.h> #include <sys/msg.h> #include <string.h> // structure for message queue struct mesg_buffer { long mesg_type; …

Computer Science data-structure queue
Member Avatar for rproffitt
0
749
Member Avatar for Sheetal_1
Member Avatar for HimaniBansal
0
503
Member Avatar for HimaniBansal

Is it appropriate to say that a function not having a return statement is valid?

Computer Science python
Member Avatar for JamesCherrill
0
410
Member Avatar for dukoolsharma
Member Avatar for Sheetal_1
0
393
Member Avatar for Ashish Kumar_1

Create a text file (w/o using any C++ program) containing the names of students and their marks in the following format: **Ajay 350 Vijay 340** where name and marks are separated by either a space or a tab and end of line is a record separator. Write a program to …

Computer Science c++
Member Avatar for AS@daniweb.com
-2
702
Member Avatar for dukoolsharma

Why the part will not have add() and remove() ways whereas Jcomponent Have add() And Remove() ways?

Computer Science java python
Member Avatar for JamesCherrill
0
357
Member Avatar for sony007

Implement an abstract class Shape with methods: getType() returns a string denoting type of a shape (point, line, polygon ..) area() returns area of the object, or -1 if the shape is concave, intersecting, or does not have an area circumreference() returns circumreference of the object position() returns center coordinates …

Computer Science
Member Avatar for Phil N DeBlanc
-3
503
Member Avatar for HimaniBansal

Can anyone help me with the process of making an executable python script in Unix?

Computer Science python unix
Member Avatar for woooee
0
468
Member Avatar for Sheetal_1

What function should I use to convert JSON into Python data?

Computer Science json python
Member Avatar for rproffitt
0
333
Member Avatar for Leem_1

java language (ArrayList) The Registrar Office at the university has asked you to help them write a Student Information System (SIS). The system can be used to store information about students, courses, and students' transcripts (courses already taken by a student). · Define a class called StudentType that holds information …

Computer Science java
Member Avatar for rproffitt
0
716
Member Avatar for teddy

Write a program to read 50 students’ marks, calculate and print the number of students who succeed and the number of students who failed (any marks below 40 should be considered failed).

Computer Science java
Member Avatar for jwenting
0
388
Member Avatar for peregrinepair

Hello, this is my first post. I need help with this assignment here, dont know where to begin! maybe I should use strstr()? The output needs to be what is shown at the bottom. I cant use the string class, only c-style functions. Any hints would be welcome thank you! …

Computer Science c c# c++
Member Avatar for Reverend Jim
0
351
Member Avatar for creeperdetonater

I am creating a program in python for a artificial intelligence for chinese checkers, but i cant even get the board to be portrayed! I am using this code: `Code` from tkinter import * root = Tk() board = PhotoImage(file="board.ppm") root.mainloop() I get the error as follows: Traceback (most recent …

Computer Science python tkinter
Member Avatar for rproffitt
0
650
Member Avatar for overwraith

I would like to be able to open a port on windows programatically. I don't care whether is power shell, or something else, but I would like it to be a script that I can simply run as I install a software program. I have no experience in this area, …

Member Avatar for rproffitt
0
958
Member Avatar for Mike_62

I am trying to implement a MIPS code that preforms unsigned integer divide but i couldn't figure out how. if D == 0, report an error and terminate. Q = 0 # Q is the quotient, initialized to zero R = 0 # R is the remainder, also initialized to …

Computer Science
Member Avatar for rproffitt
0
1K
Member Avatar for Ati_1

Algorithm 1) Choose the time quantum and assign it for each process. 2) Allocate the CPU to the process according to the FCFS scheduling. 3) If (burst time of the process < time quantum).{Allocate the CPU to that process till it terminates.}Else {The process will occupy the CPU till the …

Computer Science algorithm c++ queue
Member Avatar for rproffitt
0
323
Member Avatar for mikeandike22
Member Avatar for VEGETA_DTX
1
2K
Member Avatar for V3N0M

Hi Guys, I am looking for career advice. I am currently pursuing my associate's degree in computer science here in Texas. And I wanted to know if you guys know how people with associate's degrees get a job. As an international student, I would like one year of work before …

Computer Science career engineering java
Member Avatar for rproffitt
0
437
Member Avatar for samaru

Just curious. Hehe, I was thinking about this the other day and now I'm wondering what all you fellow coders out there have done. So what's the HARDEST most complicated program you've written? It doesn't have to be efficient, heck, it can all be spaghetti code. The hardest thing I've …

Computer Science assembly flash pascal
Member Avatar for Fest3er
0
3K
Member Avatar for Mayank Singh

Hi all, Here is the code in c++ and i am new to coding world hence i need little help in converting this code into R #include <iostream> #include <cmath> #include <fstream> #include <string> using namespace std; int main(int argc, char *argv[]) { std::string protein; ifstream aa; aa.open("aa.txt"); //we are …

Computer Science c++
Member Avatar for rproffitt
0
332
Member Avatar for Toni_7

i have 2 sperate projects which i am trying to run together as a shared project but i am failing hard……. Basically, first project does infix to postfix notation and the second projects does postfix evaluation. tried to run all that in 1 project but i keep getting all sorts …

Computer Science c++
Member Avatar for Toni_7
0
705
Member Avatar for Toni_7

Hello, I am building a calculator in c++ windows application form, i want the calculator to handle multiple operator precedence (for example, 2+4*5/3). but i am not sure how to write the following code on my windows form project. Any suggestions would appreciated . #include <iostream> #include <conio.h> using namespace …

Computer Science c++ web-design
Member Avatar for rproffitt
0
2K
Member Avatar for Ojelabi

Please i need your suggestions on how to design a system that will diagnose malaria or typhoid by accessing a number of symptoms.

Computer Science c++
Member Avatar for Ojelabi
0
791
Member Avatar for shameen_1

I am trying to understand leader clustering algorithm and overlapping clustering algorithm , but not able to get proper documents and explanations. Can someone please help me understand these clustering algorithms that what are the key differences between both (leader clustering and overlapping clustering) algorithms, and if applicable, which algorithm …

Computer Science
Member Avatar for JamesCherrill
0
412
Member Avatar for rahulrajcse

How to solve monkey and banana problem using best-first search algorithm? Anyone having ideas? I know we have to choose a heuristic function 'h(n)' for performing distance related calculations. But can anyone elaborate this problem ? (algorithm and complexity analysis much appreciated)

Computer Science
Member Avatar for Adarsh_4
0
6K
Member Avatar for Mar. Na.

https://stackoverflow.com/questions/49183518/independent-paths-of-power-number

Computer Science
Member Avatar for Mar. Na.
-3
342
Member Avatar for Blank_1

Hello, I'm trying to create a character array that would find the absolute value of each value. Ex. Candadite: 111111 / Target: 444444. abs(1-4)(1-4)(1-4)(1-4)(1-4)(1-4) answer: 333333. I have the code running, but I get a consistant answer of 700, even when I move to a new Target set. If anyone …

Computer Science c++
Member Avatar for kes166
0
658
Member Avatar for mat_2

Hello. I got one question, when i want to streamplot this, i got eror: "raise ValueError("The columns of 'y' must be equal")", i can't figure it out. :/ Thank you for your time. this is entire code: import matplotlib.pyplot as plt import numpy as np # discretization of domain x_start, …

Computer Science python
Member Avatar for rproffitt
0
426
Member Avatar for Ashanti_1

Im not really familiar with this kind stuff I really need help with this: develop an algorithm pseudo-code that will accept the names of each sales staff members and their total sales for the month. The algorithm must calculate the commission at 4 % of their total sales amount. It …

Computer Science
Member Avatar for john_111
0
374
Member Avatar for RafaelNinja13

I am supposed to write a program that takes a person's whole name and returns the name's numerical value. The numerical value is found by the values of the letters in the name (with a=1, b=2...z=26). This is what I have so far: def main (): name = input("What is …

Computer Science python
Member Avatar for woooee
0
2K
Member Avatar for sahilmohile15

Hello, I am confused when we have array in python why should we use set or lists they work almost similarly right? and array are bit faster that lists. I am using numpy arrays but a friend of mine uses sets and lists. I am confused please explain what to …

Computer Science python
Member Avatar for JasonHippy
0
311
Member Avatar for Ashwini_6

Want to clear how to write a program to store the given telephone details in dictionary and print all the number whose name starts with e. Data =('Einstein':1234567896),('newton':2478965782),('Alexander':9876543216)

Computer Science python
Member Avatar for sahilmohile15
0
209
Member Avatar for dpaula

i am doing a project, its a database system and i need to use fingerprint scanner.i am using php and i am new to it. is ther a way that i can use fingerprint scanner?

Computer Science php
Member Avatar for Sunil_24
0
8K
Member Avatar for Rose Aashii

Plz tell me how I would calculate time complexity of the program: int i = N; while (i > 0) { int Sum = 0; int j; for (j = 0; j < i; j++) Sum++; cout << Sum << endl; i--; } thnx in advance

Computer Science algorithm
Member Avatar for Ali_84
0
2K
Member Avatar for Usama_9

I declare an integer and input value from user when i check this program i give the value 40,000 its a overflow but program generate no any type of error why?

Computer Science c++
Member Avatar for JamesCherrill
0
211
Member Avatar for Jack_30

I need a function that will create and store usernames and passwords for different students. Their programme should ask the user for their name and age and a username should be created, consisted of their name and age eg. Jack16. They then can make up their own password which then …

Computer Science python web-design
Member Avatar for benanamen
0
566
Member Avatar for send_1

Hi everyone! Please help me to find a thesis title that should be related in computer science about the theory. Your suggestion is very helpful for me since I will be graduating in senior highschool PS: any suggestions would do :)

Computer Science
Member Avatar for Reverend Jim
-2
257
Member Avatar for KING_9

The End.